        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Allura&family=Great+Vibes&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f8f8;
            color: #333;
        }
        /* Top bar container */
        .imperial-nova-topbar {
            background-color: #b8941f;
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e0e0e0;
            display: none;
        }
        
        /* Tagline styling */
        .imperial-nova-tagline {
            font-size: 14px;
            letter-spacing: 0.5px;
            color: #555;
            font-weight: 300;
            
        }
        
        /* Social icons container */
        .imperial-nova-socials {
            display: flex;
            gap: 18px;
        }
        
        /* Social icon styling */
        
        .imperial-nova-social-icon {
            color: #777;
            background-color: #b8941f;
            border-radius: 50%;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .imperial-nova-social-icon:hover {
            color: #333;
            transform: translateY(-1px);
        }
        .imperial-nova-social-icon i {
            line-height: 36px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            text-align: center;
        }
        /* Mobile styles */
        @media (max-width: 768px) {
            .imperial-nova-topbar {
                display: none;
            }
            
            .imperial-nova-tagline {
                text-align: center;
                font-size: 13px;
            }
        }

        /* Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background-color:#0a0a0a;      
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            z-index: 1000;
            top: 0;
            width: 100%;
        }

        /* Logo Styles */
        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon {
            width: 150px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            
        }

        .logo-icon img{
            width: 150px;
            height: 100%;
        }

        /* Navigation Links */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #d4af37ef;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: #d4af37;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: #d4af37;
        }

        .nav-links a.active::after {
            width: 100%;
        }

        /* Icons */
        .nav-icons {
            display: flex;
            gap: 1.5rem;
        }

        .nav-icons a {
            color: #f0f0f0;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .nav-icons a:hover {
            color: #d4af37;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #fff;
            margin-right: 2em;
            position: absolute;
            right: 5px;
            top: 1.2em;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: #ffffff;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.4s ease;
            z-index: 1000;
            padding: 80px 30px 30px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-links a {
            text-decoration: none;
            color: #333;
            font-size: 1.1rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 8px 0;
            display: block;
            transition: color 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-links a:hover {
            color: #d4af37;
        }

        .mobile-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .mobile-icons a {
            color: #333;
            font-size: 1.3rem;
            transition: color 0.3s ease;
        }

        .mobile-icons a:hover {
            color: #d4af37;
        }

        .close-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            z-index: 998;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-links {
                gap: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-icons {
                display: none;
            }

            .hamburger {
                display: block;
            }
            .logo-container{
                gap: 4px;
                justify-content: space-between;
                width: 120px;
            }
            .logo-text{
                font-size: 1.5rem;
            }
            .logo-container .logo-icon {
                width: 50px;
                height: 50px;
                font-size: 16px;
                margin-bottom: 8px;
            }
            .nova{
                font-size: 1rem;
            }
        }

        /* Hero Section */
        .hero {
            height: 75vh;
            min-height: 800px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-bg.active {
            opacity: 1;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(10, 10, 15, 0.75), rgba(10, 10, 15, 0.8));
        }

        /* Background Images */
        .bg-1 {
            background-image: url('https://images.unsplash.com/photo-1553926835-e75b15338ffb?q=80&w=953&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
        }

        .bg-2 {
            background-image: url('https://images.unsplash.com/photo-1612817159949-195b6eb9e31a?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
        }

        .bg-3 {
            background-image: url('https://images.unsplash.com/photo-1551816230-ef5deaed4a26?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1970&q=80');
        }

        .hero-content {
            max-width: 1200px;
            width: 100%;
            z-index: 2;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUpFade 1.2s ease-out 0.5s forwards;
        }

        @keyframes slideUpFade {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .brand-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            letter-spacing: 3px;
            color: #d4af37;
            margin-bottom: 1.5rem;
            font-weight: 600;
            opacity: 0;
            transform: translateY(20px);
            animation: slideUpFade 0.8s ease-out 0.8s forwards;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            font-weight: 500;
            line-height: 1.1;
            opacity: 0;
            color: #fff;
            transform: translateY(20px);
            animation: slideUpFade 0.8s ease-out 1s forwards;
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 3rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 300;
            opacity: 0;
            transform: translateY(20px);
            animation: slideUpFade 0.8s ease-out 1.2s forwards;
        }

        /* Modern Search Bar */
        .search-container {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(20, 20, 25, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.15);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px) scale(0.98);
            animation: slideUpScale 1s ease-out 1.4s forwards;
        }

        @keyframes slideUpScale {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .search-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
        }

        .search-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #fff;
            font-weight: 500;
        }

        .search-bar {
            display: flex;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .search-input {
            flex: 1;
            padding: 18px 24px;
            border: none;
            border-radius: 12px 0 0 12px;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-right: none;
            transition: all 0.3s ease;
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .search-input:focus {
            outline: none;
            border-color: rgba(212, 175, 55, 0.5);
            background: rgba(255, 255, 255, 0.08);
        }

        .search-btn {
            padding: 0 32px;
            background: linear-gradient(135deg, #d4af37, #b8941f);
            color: #0a0a0f;
            border: none;
            border-radius: 0 12px 12px 0;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-btn:hover {
            background: linear-gradient(135deg, #e6c158, #c9a326);
            transform: translateY(-1px);
        }

        .search-btn i {
            margin-right: 8px;
        }

        /* Filter Options */
        .filter-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin-top: 2rem;
        }

        .filter-group {
            flex: 1;
            min-width: 180px;
        }

        .filter-label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .filter-select {
            width: 100%;
            padding: 14px 16px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: #b8941f;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: poppins, sans-serif;
        }

        .filter-select:focus {
            outline: none;
            border-color: rgba(212, 175, 55, 0.5);
            background: rgba(255, 255, 255, 0.08);
        }

        .price-range {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .price-input {
            width: 100%;
            padding: 14px 16px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            font-size: 1rem;
        }

        .price-input:focus {
            outline: none;
            border-color: rgba(212, 175, 55, 0.5);
        }

        .price-separator {
            color: rgba(255, 255, 255, 0.5);
        }

        .advanced-toggle {
            display: inline-flex;
            align-items: center;
            margin-top: 1.5rem;
            color: #d4af37;
            cursor: pointer;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .advanced-toggle:hover {
            color: #e6c158;
        }

        .advanced-toggle i {
            margin-left: 6px;
            transition: transform 0.3s ease;
        }

        .advanced-filters {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: none;
        }

        .advanced-filters.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: transparent;
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.5);
            border-radius: 8px;
            margin-top: 2.5rem;
            opacity: 0;
            transform: translateY(20px);
            animation: slideUpFade 0.8s ease-out 1.6s forwards;
        }

        .btn:hover {
            background-color: rgba(212, 175, 55, 0.1);
            border-color: #d4af37;
            transform: translateY(-2px);
        }

        /* Luxury Badge */
        .luxury-badge {
            display: inline-flex;
            align-items: center;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            opacity: 0;
            transform: translateY(20px);
            animation: slideUpFade 0.8s ease-out 1.8s forwards;
        }

        .luxury-badge i {
            color: #d4af37;
            margin-right: 8px;
        }

        /* Background Indicator Dots */
        .bg-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .bg-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .bg-indicator.active {
            background: #d4af37;
            transform: scale(1.3);
        }

        .bg-indicator:hover {
            background: rgba(212, 175, 55, 0.7);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .search-container {
                padding: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                height: auto;
                min-height: 100vh;
                padding: 100px 20px;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
                margin-bottom: 2.5rem;
            }
            
            .search-bar {
                flex-direction: column;
            }
            
            .search-input {
                border-radius: 12px;
                margin-bottom: 12px;
                border-right: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .search-btn {
                border-radius: 12px;
                padding: 16px;
            }
            
            .filter-container {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .brand-logo {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .search-container {
                padding: 1.5rem;
            }
            
            .search-title {
                font-size: 1.5rem;
            }
            
            .hero-content h1 {
                font-size: 1.9rem;
            }
        }

        /* Luxury Badge */
        .luxury-badge {
            display: inline-flex;
            align-items: center;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            opacity: 0;
            transform: translateY(20px);
            animation: slideUpFade 0.8s ease-out 1.8s forwards;
        }

        .luxury-badge i {
            color: #d4af37;
            margin-right: 8px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .search-container {
                padding: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                height: auto;
                min-height: 100vh;
                padding: 100px 20px;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
                margin-bottom: 2.5rem;
            }
            
            .search-bar {
                flex-direction: column;
            }
            
            .search-input {
                border-radius: 12px;
                margin-bottom: 12px;
                border-right: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .search-btn {
                border-radius: 12px;
                padding: 16px;
            }
            
            .filter-container {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .brand-logo {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .search-container {
                padding: 1.5rem;
            }
            
            .search-title {
                font-size: 1.5rem;
            }
            
            .hero-content h1 {
                font-size: 1.9rem;
            }
        }
    /* Brands Section */
        .brands-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 20px;
            background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .brands-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
        }

        .section-heading {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .section-heading h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 500;
            color: #1a1a1a;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .accent-line {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #b8941f);
            margin: 0 auto;
        }

        /* Continuous Slider Container */
        .slider-container {
            position: relative;
            overflow: hidden;
            padding: 40px 0;
        }

        /* Gradient Overlays */
        .slider-overlay-left, .slider-overlay-right {
            position: absolute;
            top: 0;
            height: 100%;
            width: 150px;
            z-index: 2;
            pointer-events: none;
        }

        .slider-overlay-left {
            left: 0;
            background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
        }

        .slider-overlay-right {
            right: 0;
            background: linear-gradient(90deg, transparent 0%, #ffffff 100%);
        }

        /* Continuous Slider Track */
        .slider-track {
            display: flex;
            width: fit-content;
            animation: slideContinuous 40s linear infinite;
        }

        /* Slider Item */
        .slider-item {
            flex: 0 0 auto;
            width: 250px;
            height: 160px;
            margin: 0 25px;
            background-color: #ffffff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 35px 25px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(212, 175, 55, 0.05),
                inset 0 0 0 1px rgba(212, 175, 55, 0.05);
            position: relative;
            overflow: hidden;
        }

        /* Shine Effect */
        .slider-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: skewX(-15deg);
            transition: left 0.8s ease;
        }

        .slider-item:hover::before {
            left: 150%;
        }

        .slider-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .slider-item:hover::after {
            opacity: 1;
        }

        .brand-logo {
            max-width: 100%;
            max-height: 70px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
        }

        /* Hover Effects */
        .slider-item:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(212, 175, 55, 0.1),
                inset 0 0 20px rgba(212, 175, 55, 0.05);
        }

        .slider-item:hover .brand-logo {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Pause animation on hover */
        .slider-track:hover {
            animation-play-state: paused;
        }

        /* Continuous sliding animation */
        @keyframes slideContinuous {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Brand Counter */
        .brand-counter {
            text-align: center;
            margin-top: 40px;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: #666;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
        }

        .brand-counter i {
            color: #d4af37;
            margin-right: 8px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .slider-item {
                width: 220px;
                height: 150px;
                margin: 0 20px;
            }
            
            .slider-overlay-left, .slider-overlay-right {
                width: 100px;
            }
        }

        @media (max-width: 992px) {
            .brands-section {
                padding: 100px 20px;
            }
            
            .section-heading h2 {
                font-size: 2.8rem;
            }
            
            .slider-item {
                width: 200px;
                height: 140px;
                margin: 0 15px;
            }
            
            .slider-track {
                animation-duration: 35s;
            }
        }

        @media (max-width: 768px) {
            .brands-section {
                padding: 80px 20px;
            }
            
            .section-heading h2 {
                font-size: 2.4rem;
            }
            
            .slider-item {
                width: 180px;
                height: 130px;
                margin: 0 12px;
                padding: 25px 20px;
            }
            
            .slider-overlay-left, .slider-overlay-right {
                width: 60px;
            }
            
            .brand-logo {
                max-height: 60px;
            }
            
            .slider-track {
                animation-duration: 30s;
            }
        }

        @media (max-width: 576px) {
            .brands-section {
                padding: 60px 15px;
            }
            
            .section-heading h2 {
                font-size: 2.1rem;
            }
            
            .slider-item {
                width: 160px;
                height: 120px;
                margin: 0 10px;
                padding: 20px 15px;
            }
            
            .slider-overlay-left, .slider-overlay-right {
                width: 40px;
            }
            
            .brand-logo {
                max-height: 50px;
            }
            
            .slider-track {
                animation-duration: 25s;
            }
        }

        @media (max-width: 400px) {
            .slider-item {
                width: 140px;
                height: 110px;
                margin: 0 8px;
            }
            
            .slider-overlay-left, .slider-overlay-right {
                width: 30px;
            }
        }

        /* Products Section */
        .container-products {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .section-title-products {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 50px;
            color: #222;
            position: relative;
        }

        .section-title-products::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background-color: #d4af37;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
        }

        .all-btn{
            text-align: center;
            margin-top: 30px;
        }

        @media (min-width: 768px) {
            .collections-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .collections-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            padding: 10px;
            width: 100%;
            height: 280px;
            object-fit: contain;
            display: block;
        }

        .divider {
            height: 1px;
            background-color: #d4af37;
            width: 100%;
            margin: 0;
        }

        .product-info {
            padding: 20px;
        }

        .product-name {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: #222;
        }

        .product-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: #d4af37;
        }

        .overlay-products {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.7);
            overflow: hidden;
            width: 100%;
            height: 0;
            transition: height 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        /* Show overlay when hovering on product card */
            .product-card:hover .overlay-products {
                height: 100%;
            }


        .view-details-btn {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            padding: 12px 25px;
            font-size: 0.9rem;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            font-weight: 500;
            text-decoration: none;
        }

        .view-details-btn:hover {
            background-color: white;
            color: #222;
            transform: scale(1.05);
        }

        .cart-icon {
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-icon:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #222;
            color: white;
            padding: 15px 25px;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateX(150%);
            transition: transform 0.4s ease;
            z-index: 1000;
        }

        .notification.show {
            transform: translateX(0);
        }
        /* Why Choose Us Section */
         .why-choose-us-section {
            display: flex;
            min-height: 100vh;
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .image-container {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }

        .watch-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.1));
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-container:hover .image-overlay {
            opacity: 1;
        }

        .image-container:hover .watch-image {
            transform: scale(1.03);
        }

        .content-container {
            flex: 1;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .accent-line {
            width: 80px;
            height: 2px;
            background-color: #d4af37;
            margin-bottom: 50px;
        }

        .benefits-list {
            list-style: none;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .benefit-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .benefit-icon {
            width: 24px;
            height: 24px;
            background-color: #d4af37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .benefit-icon svg {
            width: 12px;
            height: 12px;
            fill: #f8f8f8;
        }

        .benefit-text {
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .why-choose-us-section {
                flex-direction: column;
                padding: 60px 20px;
            }

            .image-container {
                height: 500px;
                margin-bottom: 40px;
            }

            .content-container {
                padding: 0 20px;
            }

            .section-heading {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .section-heading {
                font-size: 2.4rem;
            }

            .content-container {
                padding: 0 10px;
            }

            .benefit-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .section-heading {
                font-size: 2rem;
            }

            .accent-line {
                margin-bottom: 30px;
            }

            .benefit-item {
                margin-bottom: 20px;
            }
        }

        /* Testimonials Section */
        .testimonials-section {
        padding: 80px 20px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        }
        .testimonials-container {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
        }

        .testimonial-card {
        background-color: #fff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        flex: 0 0 calc(33.333% - 20px);
        min-width: 280px;
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(20px);
        }

        .testimonial-card.visible {
        opacity: 1;
        transform: translateY(0);
        }

        .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
        }

        .quote-icon {
        color: #d4af37;
        font-size: 24px;
        margin-bottom: 15px;
        display: block;
        }

        .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 25px;
        position: relative;
        padding-left: 10px;
        }

        .client-info {
        display: flex;
        align-items: center;
        }

        .client-photo {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
        border: 2px solid #d4af37;
        }

        .client-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        }

        .client-details h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
        }

        .client-details p {
        font-size: 14px;
        color: #777;
        }

        @media (max-width: 992px) {
        .testimonial-card {
            flex: 0 0 calc(50% - 15px);
        }
        }

        @media (max-width: 768px) {
        .testimonial-card {
            flex: 0 0 100%;
        }

        .section-heading h2 {
            font-size: 36px;
        }
        }

        @media (max-width: 576px) {
        .testimonials-section {
            padding: 60px 15px;
        }

        .section-heading h2 {
            font-size: 32px;
        }
        }

        /*FAQ Section*/
        .faq-container {
        max-width: 1200px;
        margin: 0 auto;
        background: #fff;
        padding: 60px 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-radius: 2px;
        }

        .faq-heading {
        text-align: center;
        font-variant: small-caps;
        font-size: 28px;
        letter-spacing: 3px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
        }

        .faq-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 1px;
        background-color: #c9a96e;
        }

        .faq-item {
        border-top: 1px solid #eee;
        overflow: hidden;
        }

        .faq-item:last-child {
        border-bottom: 1px solid #eee;
        }

        .faq-question {
        padding: 20px 40px 20px 0;
        cursor: pointer;
        position: relative;
        font-weight: 600;
        font-size: 18px;
        transition: color 0.3s ease;
        }

        .faq-question:hover {
        color: #c9a96e;
        }

        .faq-question::after {
        content: '+';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%) rotate(0);
        font-size: 22px;
        color: #c9a96e;
        transition: transform 0.4s ease-in-out, color 0.3s ease;
        }

        .faq-item.active .faq-question::after {
        transform: translateY(-50%) rotate(45deg);
        color: #a88956;
        }

        .faq-answer {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition:
            max-height 0.5s ease-in-out,
            padding 0.4s ease,
            opacity 0.5s ease;
        font-weight: 300;
        font-size: 16px;
        line-height: 1.7;
        color: #666;
        padding: 0 0;
        }

        .faq-item.active .faq-answer {
        max-height: 500px;
        opacity: 1;
        padding: 10px 0 20px;
        }

        @media (max-width: 768px) {
        .faq-container {
            padding: 40px 20px;
            width: 100%;
        }

        .faq-question {
            padding: 15px 30px 15px 0;
            font-size: 16px;
        }
        }

        /* Footer Styles */
        .luxury-footer {
            background-color: #0a0a0a;
            color: #f5f5f5;
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 30px;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 20px;
            letter-spacing: 1px;
            color: #d4af37;
        }

        .brand-column .brand-name {
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 10px;
            color: #f5f5f5;
        }

        .brand-column .tagline {
            font-style: italic;
            margin-bottom: 15px;
            color: #b0b0b0;
        }

        .accent-line {
            width: 50px;
            height: 2px;
            background-color: #d4af37;
            margin: 15px 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }

        .footer-links a:hover {
            color: #d4af37;
            padding-left: 8px;
        }

        .footer-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: #d4af37;
            transition: width 0.3s ease;
        }

        .footer-links a:hover:after {
            width: 100%;
        }

        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #f5f5f5;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #d4af37;
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-btn {
            padding: 12px 20px;
            background: #d4af37;
            color: #0a0a0a;
            border: none;
            font-family: inherit;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #e6c44a;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #f5f5f5;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #d4af37;
            color: #0a0a0a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            margin: 40px 0 20px;
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .footer-columns {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 30px;
            }
        }

        @media (max-width: 576px) {
            .footer-columns {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                margin-bottom: 10px;
            }
        }