
        :root {
            --primary: #000000;
            --secondary: #ffffff;
            --accent: #d4af37;
            --light-bg: #f8f8f8;
            --dark-bg: #121212;
            --gray: #777777;
            --light-gray: #e5e5e5;
            --success: #28a745;
            --danger: #dc3545;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Montserrat', sans-serif;
        }

        .dark-mode {
            --primary: #ffffff;
            --secondary: #121212;
            --light-bg: #1a1a1a;
            --dark-bg: #f8f8f8;
            --gray: #aaaaaa;
            --light-gray: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--primary);
            background-color: var(--secondary);
            transition: all 0.3s ease;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--secondary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .top-bar {
            background-color: var(--primary);
            color: var(--secondary);
            padding: 8px 0;
            font-size: 0.8rem;
            text-align: center;
        }

        .header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--accent);
        }

        .header-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .search-box {
            position: relative;
        }

        .search-input {
            padding: 8px 15px;
            border: 1px solid var(--light-gray);
            border-radius: 20px;
            font-size: 0.9rem;
            width: 200px;
        }

        .icon-btn {
            background: none;
            border: none;
            color: var(--primary);
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .icon-btn:hover {
            color: var(--accent);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 80vh;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-content {
            max-width: 600px;
            margin-left: 10%;
            color: var(--secondary);
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent);
            color: var(--secondary);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        /* Featured Categories */
        .section-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            text-align: center;
            margin: 60px 0 40px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .categories {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 60px;
        }

        .category-card {
            position: relative;
            height: 300px;
            overflow: hidden;
            border-radius: 10px;
        }

        .category-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .category-card:hover .category-img {
            transform: scale(1.1);
        }

        .category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
        }

        .category-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 60px;
        }

        .product-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 10;
        }

        .badge-new {
            background-color: var(--accent);
            color: var(--secondary);
        }

        .badge-sale {
            background-color: var(--danger);
            color: white;
        }

        .product-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-actions {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 10px;
            background-color: rgba(255, 255, 255, 0.9);
            transition: bottom 0.3s;
        }

        .product-card:hover .product-actions {
            bottom: 0;
        }

        .action-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--secondary);
            color: var(--primary);
            border: 1px solid var(--light-gray);
            cursor: pointer;
            transition: all 0.3s;
        }

        .action-btn:hover {
            background-color: var(--primary);
            color: var(--secondary);
        }

        .product-info {
            padding: 15px;
        }

        .product-name {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .product-price {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .current-price {
            font-weight: 700;
        }

        .old-price {
            text-decoration: line-through;
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* New Sections */
        /* Limited Edition Section */
        .limited-section {
            background-color: var(--dark-bg);
            color: var(--secondary);
            padding: 80px 0;
            text-align: center;
            margin-bottom: 60px;
        }

        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }

        .countdown-item {
            background-color: var(--secondary);
            color: var(--primary);
            border-radius: 10px;
            padding: 20px;
            min-width: 100px;
        }

        .countdown-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
        }

        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        /* Brand Story Section */
        .brand-story {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
        }

        .brand-content {
            flex: 1;
        }

        .brand-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
        }

        .brand-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Lookbook Section */
        .lookbook {
            margin-bottom: 80px;
        }

        .lookbook-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 300px);
            gap: 20px;
        }

        .lookbook-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .lookbook-item:first-child {
            grid-column: 1 / 2;
            grid-row: 1 / 3;
        }

        .lookbook-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .lookbook-item:hover img {
            transform: scale(1.05);
        }

        .lookbook-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .lookbook-item:hover .lookbook-overlay {
            opacity: 1;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--light-bg);
            padding: 80px 0;
            margin-bottom: 60px;
        }

        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-slide {
            text-align: center;
            padding: 0 50px;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--accent);
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
        }

        .testimonial-role {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Instagram Feed Section */
        .instagram-feed {
            margin-bottom: 80px;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
        }

        .instagram-item {
            position: relative;
            aspect-ratio: 1/1;
            overflow: hidden;
        }

        .instagram-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .instagram-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .instagram-item:hover .instagram-overlay {
            opacity: 1;
        }

        .instagram-icon {
            color: white;
            font-size: 1.5rem;
        }

        /* Services Section */
        .services {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 80px;
        }

        .service-item {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            background-color: var(--light-bg);
            transition: transform 0.3s;
        }

        .service-item:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .service-title {
            font-weight: 600;
            margin-bottom: 15px;
        }

        .service-desc {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Newsletter */
        .newsletter {
            background-color: var(--light-bg);
            padding: 80px 0;
            text-align: center;
            margin-bottom: 60px;
        }

        .newsletter-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .newsletter-text {
            max-width: 600px;
            margin: 0 auto 30px;
            color: var(--gray);
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: 1px solid var(--light-gray);
            border-radius: 30px 0 0 30px;
            font-family: inherit;
        }

        .newsletter-btn {
            padding: 0 30px;
            background-color: var(--primary);
            color: var(--secondary);
            border: none;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: 600;
        }

        /* Footer */
        footer {
            background-color: var(--dark-bg);
            color: var(--secondary);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-link {
            color: var(--gray);
            transition: color 0.3s;
        }

        .footer-link:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            transition: background-color 0.3s;
        }

        .social-link:hover {
            background-color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* Theme Switcher */
        .theme-switcher {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 100;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {

            .products-grid,
            .categories,
            .services {
                grid-template-columns: repeat(3, 1fr);
            }

            .instagram-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {

            .products-grid,
            .categories,
            .services {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .brand-story {
                flex-direction: column;
            }

            .lookbook-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }

            .lookbook-item:first-child {
                grid-column: auto;
                grid-row: auto;
            }

            .instagram-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .services,
            .instagram-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {

            .products-grid,
            .categories,
            .services {
                grid-template-columns: 1fr;
            }

            .search-box {
                display: none;
            }

            .hero-title {
                font-size: 2rem;
            }

            .countdown {
                flex-wrap: wrap;
            }

            .instagram-grid {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
                gap: 10px;
            }

            .newsletter-input,
            .newsletter-btn {
                border-radius: 30px;
                width: 100%;
            }
        }
   