/* ===========================
   HEADER STYLES (continued)
   =========================== */

   @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
   /* ===========================
   GLOBAL FONT IMPORT & BASE
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.top-bar {
            background: rgba(0,0,0,0.2);
            padding: 0.5rem 0;
            text-align: center;
            font-size: 0.9rem;
        }

header {
    background: linear-gradient(135deg, #151c3b 0%, #090211 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===========================
   SEARCH BAR
   =========================== */
.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 0.8rem 3rem 0.8rem 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #667eea;
    cursor: pointer;
    font-size: 1.2rem;
}

/* ===========================
   HEADER ICONS
   =========================== */
.header-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icon-btn {
    position: relative;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.icon-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================
   MENU BAR & NAVIGATION
   =========================== */
.menu-bar {
    background: rgba(0,0,0,0.1);
    padding: 0;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.menu-item {
    position: relative;
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

.menu-item:hover {
    background: rgba(255,255,255,0.1);
    border-bottom-color: white;
}

.menu-item.active {
    background: rgba(255,255,255,0.15);
    border-bottom-color: white;
}

/* ===========================
   DROPDOWN MENU
   =========================== */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 1001;
    border-radius: 0 0 10px 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-item {
    color: #333;
    padding: 1rem 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.dropdown-item:hover {
    background: #f8f9fa;
    padding-left: 2rem;
    color: #667eea;
}

.dropdown-item i {
    font-size: 1.2rem;
    color: #667eea;
}

/* ===========================
   MOBILE MENU
   =========================== */
.mobile-menu-toggle {
    display: none;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.3);
}

/* ===========================
   HERO SLIDER
   =========================== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.4);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* ===========================
   BUTTONS
   =========================== */
.cta-btn {
    background: linear-gradient(135deg, #ff2600ff, #c87500ff);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* ===========================
   SLIDER NAVIGATION
   =========================== */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: white;
    width: 30px;
    border-radius: 10px;
}

/* ===========================
   CATEGORIES SECTION
   =========================== */
.categories {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3436;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.category-card i {
    font-size: 3rem;
    color: linear-gradient(135deg, #ff2600ff, #c87500ff);
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #2d3436;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services {
    padding: 70px 20px;
    text-align: center;
    background: #fff;
}

.services .section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #222;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
    font-size: 2.5rem;
    color: linear-gradient(135deg, #ff2600ff, #c87500ff);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #111;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* ===========================
   PRODUCTS SECTION
   =========================== */
.products {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn.active i {
    color: #ff4757;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

.product-price {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
    margin: 1rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.rating {
    color: #ffd700;
    margin: 0.5rem 0;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.add-to-cart, .view-product {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: bold;
    transition: all 0.3s;
}

.view-product {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.add-to-cart:hover, .view-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ===========================
   NEW ARRIVALS SECTION
   =========================== */
.new-arrivals {
    background: #f9fafc;
    padding: 60px 20px;
    border-radius: 16px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.new-arrivals .section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    color: #111;
    position: relative;
}



.premium-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.product-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.premium-card:hover .product-img {
    transform: scale(1.05);
}

.new-badge { background: #28a745; color: #fff; }
.hot-badge { background: #ff4d4d; color: #fff; }
.sale-badge { background: #ff9900; color: #fff; }

/* ===========================
   SINGLE PRODUCT PAGE
   =========================== */
.product-page {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3500;
    overflow-y: auto;
    padding: 2rem 0;
}

.product-page.active {
    display: block;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.close-product {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff4757;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.close-product:hover {
    transform: scale(1.1);
    background: #e84118;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.product-details-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-title {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.product-rating-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffd700;
    font-size: 1.2rem;
}

.reviews-count {
    color: #666;
    font-size: 1rem;
}

.product-price-detail {
    font-size: 2.5rem;
    color: #667eea;
    font-weight: bold;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
    margin-left: 1rem;
}

.discount-badge {
    display: inline-block;
    background: #ff4757;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    margin-left: 1rem;
}

.product-description {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: #667eea;
    color: white;
}

.qty-input {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
}

.product-actions-detail {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-add-cart, .btn-buy-now {
    flex: 1;
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-buy-now {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.btn-add-cart:hover, .btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ===========================
   CART SIDEBAR
   =========================== */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-remove {
    background: #ff4757;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ===========================
   MODAL
   =========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.modal-content h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* ===========================
   CLIENTS/BRANDS SECTION
   =========================== */
.clients {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

.clients .section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #222;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.logo-card {
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.logo-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

footer {
    background: linear-gradient(145deg, #0a0a0a 0%, #1e1e1e 100%);
    color: #eaeaea;
    font-family: 'Poppins', sans-serif;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2.5rem;
}

.footer-column h3, 
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1.3rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bbb;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-column.contact li i {
    margin-right: 10px;
    color: linear-gradient(135deg, #ff2600ff, #c87500ff)
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.social-icons a:hover {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2.5rem;
    padding-top: 1.2rem;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom span {
    color: linear-gradient(135deg, #ff2600ff, #c87500ff);
    font-weight: 600;
}

.footer-bottom i {
    color: #ef4444;
    margin: 0 5px;
}

/* Subtle hover glow for links */
.footer-column ul li a:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}


/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 968px) {
    nav {
        padding: 1rem;
    }

    .search-bar {
        margin: 0.5rem 0;
    }

    .mobile-menu-toggle {
        display: block;
        margin: 0 auto;
    }

    .menu-container {
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .menu-container.active {
        max-height: 500px;
    }

    .menu-item {
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1rem;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        display: none;
    }

    .dropdown-content.active {
        display: block;
    }

    .dropdown-item {
        color: white;
        border-color: rgba(255,255,255,0.1);
    }

    .dropdown-item:hover {
        background: rgba(255,255,255,0.1);
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 400px;
    }

    .product-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .search-bar {
        margin: 1rem 0;
        max-width: 100%;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .cart-sidebar {
        width: 100%;
    }
}