
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background: #1E3A5F;
            color: white;
            text-align: center;
            padding: 10px 0;
            font-size: 13px;
            font-weight: 500;
        }

        .top-bar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .top-bar span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 36px;
            font-weight: 800;
            color: #1E3A5F;
            text-decoration: none;
            letter-spacing: -1px;
        }

        .logo span {
            color: #C25A6A;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: #C25A6A;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #C25A6A;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .header-icons {
            display: flex;
            gap: 22px;
            align-items: center;
        }

        .header-icons a {
            color: #1E3A5F;
            font-size: 22px;
            position: relative;
            transition: transform 0.3s;
        }

        .header-icons a:hover {
            transform: scale(1.1);
            color: #C25A6A;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #C25A6A;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
        }

        /* FULL WIDTH HERO SLIDER - NO GAPS */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 700px;
            overflow: hidden;
            margin: 0;
            padding: 0;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            left: 0;
            right: 0;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(30,58,95,0.85) 0%, rgba(30,58,95,0.5) 40%, rgba(30,58,95,0.2) 100%);
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            width: 100%;
            color: white;
        }

        .slide-content h2 {
            font-size: 64px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
            letter-spacing: -2px;
        }

        .slide-content p {
            font-size: 22px;
            margin-bottom: 35px;
            font-weight: 400;
            max-width: 600px;
        }

        .btn-primary {
            display: inline-block;
            background: #C25A6A;
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s;
            border: 2px solid #C25A6A;
            box-shadow: 0 5px 20px rgba(194, 90, 106, 0.4);
        }

        .btn-primary:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(194, 90, 106, 0.6);
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s;
            border: 2px solid white;
            margin-left: 15px;
        }

        .btn-secondary:hover {
            background: white;
            color: #1E3A5F;
            transform: translateY(-3px);
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .slider-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.3);
            border-color: #C25A6A;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.95);
            color: #1E3A5F;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            transition: all 0.3s;
            z-index: 10;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .slider-arrow:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        .slider-arrow.prev {
            left: 30px;
        }

        .slider-arrow.next {
            right: 30px;
        }

        /* Section Styling */
        section {
            padding: 100px 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            color: #1E3A5F;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 17px;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Collections Grid - UPDATED CATEGORIES */
        .collections-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 100px;
        }

        .collection-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 500px;
            cursor: pointer;
            transition: transform 0.4s, box-shadow 0.4s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .collection-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(30,58,95,0.2);
        }

        .collection-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .collection-card:hover img {
            transform: scale(1.1);
        }

        .collection-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(30,58,95,0.95), transparent);
            padding: 40px 30px;
            color: white;
        }

        .collection-overlay h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .collection-overlay p {
            font-size: 15px;
            opacity: 0.95;
            line-height: 1.6;
        }

        /* Age Navigation - Circular */
        .age-section {
            background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
            padding: 100px 30px;
        }

        .age-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 35px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .age-card {
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .age-card:hover {
            transform: translateY(-8px);
        }

        .age-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 25px;
            border: 5px solid white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            transition: all 0.4s;
        }

        .age-card:hover .age-image {
            transform: scale(1.08);
            box-shadow: 0 15px 40px rgba(30,58,95,0.25);
        }

        .age-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .age-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: #1E3A5F;
            margin-bottom: 10px;
        }

        .age-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        /* Campaign Banner */
        .campaign-banner {
            background: linear-gradient(135deg, #1E3A5F 0%, #2C5282 100%);
            border-radius: 0;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            margin: 0;
            width: 100%;
            color: white;
            overflow: hidden;
        }

        .campaign-content {
            padding: 80px 60px;
        }

        .campaign-content h3 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .campaign-content p {
            font-size: 19px;
            margin-bottom: 35px;
            opacity: 0.95;
            line-height: 1.7;
        }

        .campaign-image {
            height: 500px;
            overflow: hidden;
        }

        .campaign-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 35px;
        }

        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.4s;
            position: relative;
        }

        .product-card:hover {
            box-shadow: 0 15px 45px rgba(30,58,95,0.2);
            transform: translateY(-8px);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #C25A6A;
            color: white;
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 700;
            z-index: 2;
            text-transform: uppercase;
        }

        .product-image {
            height: 300px;
            overflow: hidden;
            background: #F8F9FA;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-actions {
            position: absolute;
            bottom: -60px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            padding: 20px;
            background: rgba(255,255,255,0.98);
            transition: bottom 0.4s;
        }

        .product-card:hover .product-actions {
            bottom: 0;
        }

        .product-actions button {
            background: #1E3A5F;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .product-actions button:hover {
            background: #C25A6A;
            transform: translateY(-2px);
        }

        .product-info {
            padding: 25px;
        }

        .product-info h4 {
            font-size: 17px;
            font-weight: 600;
            color: #1E3A5F;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .product-info p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .current-price {
            font-size: 22px;
            font-weight: 700;
            color: #C25A6A;
        }

        .original-price {
            font-size: 17px;
            color: #999;
            text-decoration: line-through;
        }

        /* About Section */
        .about-section {
            background: linear-gradient(135deg, #1E3A5F 0%, #2C5282 100%);
            padding: 100px 30px;
            color: white;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-content h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }

        .about-content .since {
            font-size: 24px;
            color: #C25A6A;
            font-weight: 600;
            margin-bottom: 30px;
            display: block;
        }

        .about-content p {
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 20px;
            opacity: 0.95;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Features Section */
        .features {
            background: #F8F9FA;
            padding: 100px 30px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-item {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s;
        }

        .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(30,58,95,0.15);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #1E3A5F 0%, #2C5282 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: white;
            box-shadow: 0 8px 25px rgba(30,58,95,0.3);
        }

        .feature-item h4 {
            font-size: 20px;
            font-weight: 700;
            color: #1E3A5F;
            margin-bottom: 12px;
        }

        .feature-item p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: #1E3A5F;
            color: white;
            padding: 80px 30px 30px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-section h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
        }

        .footer-section p {
            font-size: 14px;
            line-height: 1.9;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 14px;
        }

        .footer-section a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-section a:hover {
            color: #C25A6A;
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: rgba(255,255,255,0.7);
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .collections-grid,
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .age-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .collections-grid,
            .products-grid,
            .age-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .hero-slider {
                height: 550px;
            }

            .slide-content h2 {
                font-size: 36px;
            }

            .slide-content p {
                font-size: 16px;
            }

            .btn-primary,
            .btn-secondary {
                display: block;
                margin: 10px 0;
                text-align: center;
            }

            .campaign-banner {
                grid-template-columns: 1fr;
            }

            .campaign-image {
                height: 350px;
            }

            .about-container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
    


    @media (max-width: 968px) {
        div[style*="grid-template-columns: 1fr 1fr"] {
            grid-template-columns: 1fr !important;
        }
        div[style*="height: 550px"] {
            height: 400px !important;
        }
    }



    @media (max-width: 968px) {
        section[id="about"] > div > div {
            grid-template-columns: 1fr !important;
        }
    }



/* WordPress theme metadata lives in style.css; this file carries the visual CSS. */
.site-main { overflow: hidden; }
.logo img, .custom-logo { max-height: 120px; width: auto; display: block; }
.logo { display: inline-flex; align-items: center; }
.primary-navigation .demo-dropdown a {
    display: block;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}
.primary-navigation .demo-dropdown a:hover {
    color: #C25A6A;
    background: #fff5f7;
}
.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #1E3A5F;
    margin: 5px 0;
    border-radius: 20px;
}
@media (max-width: 1100px) {
    .header-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    .menu-toggle {
        display: block;
        order: 2;
    }
    .primary-navigation {
        width: 100%;
        display: none;
        order: 4;
    }
    .primary-navigation.is-open {
        display: block;
    }
    .primary-navigation ul {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .primary-navigation li {
        width: 100%;
    }
    .primary-navigation .demo-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        margin-top: 10px !important;
        border: 1px solid #eee;
    }
    .footer-feature-banner,
    .footer-main-grid {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 640px) {
    .top-bar-container {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    .header-container {
        padding: 16px 18px;
    }
    .logo {
        font-size: 28px;
    }
    .header-icons {
        gap: 14px;
    }
    .header-icons a {
        font-size: 18px;
    }
}
/* CSS Document */

