

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: white;
        }
    
        /* let's clear default wp header */
        header {
            display: none;
        }
    
        footer {
            display: none;
        }
    
        .vogue-luxury-header {
            width: 100%;
            position: relative;
            z-index: 1000;
            position: fixed;
            top: 0;
        }
    
        /* Announcement Bar */
        .announcement-bar {
            background-color: #d63384;
            color: #fff;
            text-align: center;
            padding: 8px 0;
            font-size: 14px;
            font-weight: 500;
            position: relative;
            z-index: 1002;
        }
    
        /* Main Header */
        .main-header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1001;
            backdrop-filter: blur(8px);
            
        }
    
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
    
        .logo-container {
            flex: 1;
            max-width: fit-content;
        }
    
        /* Single logo for both desktop and mobile */
        .logo {
            height: auto;
            width: auto;
            max-height: 35vh;
            transition: all 0.3s ease;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
    
    
    
        /* Temporary debug style */
        .logo-container a {
            /* background-color: rgba(255,0,0,0.3); Red background to see clickable area */
            display: inline-block;
            width: 160px;
            /* Visible logo width */
            height: 70px;
            /* Visible logo height */
            overflow: hidden;
    
    
        }
    
        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }
    
        .nav-links {
            display: flex;
            gap: 20px;
        }
    
        .nav-link {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
            position: relative;
            text-transform: capitalize;
            padding: 5px 0;
        }
    
        .nav-link:hover {
            color: #d63384;
        }
    
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #d63384;
            transition: width 0.3s ease;
        }
    
        .nav-link:hover:after {
            width: 100%;
        }
    
        .header-icons {
            display: flex;
            gap: 20px;
            margin-left: 30px;
        }
    
        .icon-link {
            color: #333;
            font-size: 18px;
            transition: color 0.3s ease;
            position: relative;
        }
    
        .icon-link:hover {
            color: #d63384;
        }
    
        .cart-icon {
            position: relative;
        }
    
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #d63384;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: bold;
        }
    
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #333;
            cursor: pointer;
            margin-left: 15px;
            z-index: 1003;
        }
    
        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background-color: #fff;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1002;
            transition: left 0.3s ease;
            display: flex;
            flex-direction: column;
        }
    
        .mobile-nav.active {
            left: 0;
        }
    
        .mobile-nav-header {
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
            height: 70px;
        }
    
        .mobile-nav-logo {
            max-height: 40px;
            width: auto;
        }
    
        .close-mobile-nav {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #333;
        }
    
        .mobile-nav-links {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            flex: 1;
            overflow-y: auto;
        }
    
        .mobile-nav-link {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            display: block;
            transition: color 0.3s ease;
        }
    
        .mobile-nav-link:hover {
            color: #d63384;
        }
    
        .mobile-nav-footer {
            padding: 20px;
            border-top: 1px solid #f0f0f0;
        }
    
        .mobile-account-link {
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            transition: color 0.3s ease;
        }
    
        .mobile-account-link:hover {
            color: #d63384;
        }
    
        /* Overlay */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            display: none;
        }
    
        .mobile-nav-overlay.active {
            display: block;
        }
    
        /* Responsive Styles */
        @media (max-width: 768px) {
            .desktop-nav .nav-links {
                display: none;
            }
    
            .mobile-menu-btn {
                display: block;
            }
    
            .header-icons {
                margin-left: auto;
            }
    
            /* Slightly smaller logo on mobile */
            .logo {
                max-height: 30vh;
            }
        }
    
        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }
    
        .cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            font-size: 24px;
            transition: all 0.3s ease;
        }
    
        .cta-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }
    
        /* Marquee */
        .marquee-container {
            width: 100%;
            overflow: hidden;
            background: linear-gradient(90deg, #d63384, #f8bbd0);
            color: white;
            padding: 10px 0;
            margin-top: 120px;
        }
    
        .marquee-text {
            white-space: nowrap;
            animation: marquee 20s linear infinite;
        }
    
        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }
    
            100% {
                transform: translateX(-100%);
            }
        }
    
        /* Hero Section */
        .hero-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 100px auto 40px;
            /* Added top margin to push hero down */
            padding: 20px;
        }
    
        .hero-text {
            flex: 1;
            padding-right: 40px;
        }
    
        .hero-heading {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }
    
        .hero-description {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }
    
        .hero-description .i {
            color: #d63384;
            font-weight: 600;
        }
    
        .hero-cta {
            display: inline-block;
            padding: 12px 30px;
            background: #d63384;
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid #d63384;
        }
    
        .hero-cta:hover {
            background: transparent;
            color: #d63384;
        }
    
        .hero-image {
            flex: 1;
            text-align: center;
        }
    
        .hero-img {
            max-width: 100%;
            height: auto;
            /* Removed border-radius and shadow */
        }
    
        /* Product Section - NOW FULL WIDTH */
        .product-section-prod {
            width: 100%; /* Changed from max-width to full width */
            margin: 60px auto;
            padding: 0 20px; /* Keep some side padding */
        }
    
        .text-title-vogue-prod {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }
    
        /* Product grid container - FULL WIDTH */
        .grid-vogue-prod {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px; /* Reduced from 20px */
            margin-bottom: 40px;
            width: 100%;
        }
    
        /* Product card - ensure equal width */
        .card-vogue-prod {
            background: white;
            overflow: hidden;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            /* Make all cards same height */
            width: 100%;
            /* Ensure full width within grid cell */
            /* Removed box-shadow from card */
        }
    
        .image-vogue-prod {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
    
        /* Content area - flex grow to push button to bottom */
        .content-vogue-prod {
            padding: 15px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            /* Allow content area to grow */
        }
    
        /* Product title - handle overflow with ellipsis */
        .title-vogue-prod {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.4;
            /* Handle long product names */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            /* Limit to 2 lines */
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 3em;
            /* Ensure consistent height even with 1 line */
        }
    
        /* Price containers - ensure consistent spacing */
        .price-regular-vogue-prod,
        .price-sale-vogue-prod,
        .price-normal-vogue-prod {
            margin-bottom: 15px;
            min-height: 1.5em;
            /* Maintain consistent spacing */
        }
    
        .price-regular-vogue-prod {
            font-size: 0.9rem;
            color: #999;
            text-decoration: line-through;
        }
    
        .price-sale-vogue-prod {
            font-size: 1.2rem;
            font-weight: 700;
            color: #d63384;
        }
    
        .price-normal-vogue-prod {
            font-size: 1.2rem;
            font-weight: 700;
            color: #333;
        }
    
        /* Button container - push to bottom */
        .button-vogue-prod {
            display: block;
            text-align: center;
            padding: 10px 15px;
            background: #d63384;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-top: auto;
            /* Push button to bottom of card */
        }
    
        .button-vogue-prod:hover {
            background: #c22573;
        }
    
        .text-center-vogue-prod {
            text-align: center;
        }
    
        .more-btn-vogue-prod {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: #d63384;
            border: 2px solid #d63384;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
    
        .more-btn-vogue-prod:hover {
            background: #d63384;
            color: white;
        }
    
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
                margin-top: 100px;
                /* Added more top margin on tablet */
            }
    
            .hero-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
    
            .hero-heading {
                font-size: 2rem;
            }
        }
    
        @media (max-width: 768px) {
            .marquee-container {
                margin-top: 90px;
            }
    
            .hero-section {
                margin-top: 120px;
                /* Even more top margin on mobile */
            }
    
            .hero-heading {
                font-size: 1.8rem;
            }
    
            .text-title-vogue-prod {
                font-size: 1.6rem;
            }
    
            /* 2 columns on mobile with REDUCED GAP */
            .grid-vogue-prod {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px; /* Reduced from 15px */
            }
        }
    
        @media (max-width: 576px) {
            .hero-section {
                margin-top: 100px;
                /* Adjusted for smaller mobile */
                padding: 15px;
            }
    
            /* Ensure 2 columns even on very small screens with MINIMAL GAP */
            .grid-vogue-prod {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px; /* Reduced from 12px */
                max-width: 100%;
            }
    
            .card-vogue-prod {
                max-width: 100%;
            }
    
            .content-vogue-prod {
                padding: 10px;
            }
    
            .title-vogue-prod {
                font-size: 1rem;
            }
    
            .button-vogue-prod {
                padding: 8px 10px;
                font-size: 0.9rem;
            }
        }