        :root {
            --black: #0f0f0f;
            --dark: #1a1a1a;
            --gold: #d4af37;
            --white: #ffffff;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--black);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 3px;
        }

        /* ============ NAVBAR ============ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.2rem 4rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(15, 15, 15, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.8rem 4rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }

        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 3px;
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-logo:hover {
            color: var(--gold);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            padding: 0.4rem 0;
            transition: color 0.3s ease;
        }

        .nav-links a i {
            display: none;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--gold);
            transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.nav-cta {
            background: transparent;
            border: 1.5px solid var(--gold);
            color: var(--gold);
            padding: 0.6rem 1.6rem;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.35s ease;
            border-radius: 2px;
            font-family: 'Inter', sans-serif;
        }

        .nav-links a.nav-cta:hover {
            background: var(--gold);
            color: var(--black);
            box-shadow: 0 0 35px rgba(212, 175, 55, 0.35);
        }

        .nav-links a.nav-cta::after {
            display: none;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        /* ============ HERO SECTION ============ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            position: relative;
            padding: 6rem 4rem 4rem;
            overflow: hidden;
            background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 100%),
                url('../images/watches-banner.png') center/cover no-repeat;
        }

        .hero-bg-pattern {
            display: none;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
            max-width: 1300px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            animation: fadeInUp 1s ease forwards;
            max-width: 700px;
        }

        .hero-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--black);
            padding: 0.45rem 1.2rem;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -1px;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .hero-text h1 .gold-text {
            color: var(--gold);
            font-style: italic;
            font-weight: 500;
            display: block;
        }

        .hero-text .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 2.5rem;
            max-width: 550px;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--black);
            border: none;
            padding: 1rem 2.4rem;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 2px;
            transition: all 0.35s ease;
            font-family: 'Inter', sans-serif;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #c5a02e;
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
            transform: translateY(-3px);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            padding: 1rem 2.4rem;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 2px;
            transition: all 0.35s ease;
            font-family: 'Inter', sans-serif;
            text-decoration: none;
            display: inline-block;
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
        }

        .hero-image-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: fadeIn 1.3s ease forwards;
        }

        .hero-image-container {
            position: relative;
            width: 420px;
            height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-glow {
            position: absolute;
            width: 340px;
            height: 340px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
            animation: pulseGlow 3s ease-in-out infinite;
            pointer-events: none;
        }

        .hero-watch-img {
            width: 300px;
            height: auto;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
            animation: floatWatch 5s ease-in-out infinite;
        }

        /* Floating particles */
        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--gold);
            border-radius: 50%;
            pointer-events: none;
            animation: floatUp 4s ease-in infinite;
            opacity: 0;
        }

        @keyframes floatUp {
            0% {
                opacity: 0;
                transform: translateY(0) scale(0);
            }

            30% {
                opacity: 0.8;
            }

            100% {
                opacity: 0;
                transform: translateY(-300px) scale(1.5);
            }
        }

        @keyframes pulseGlow {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.8;
            }

            50% {
                transform: scale(1.25);
                opacity: 1;
            }
        }

        @keyframes floatWatch {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-18px);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* ============ SECTION HEADERS ============ */
        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-tag {
            display: inline-block;
            color: var(--gold);
            font-size: 0.7rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: -0.5px;
        }

        .section-header .divider {
            width: 60px;
            height: 2px;
            background: var(--gold);
            margin: 1rem auto 0;
        }

        /* ============ COLLECTION SECTION ============ */
        .collection-section {
            padding: 6rem 4rem;
            background: var(--black);
            position: relative;
        }

        .filter-bar {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 3rem;
        }

        /* ============ BRAND FILTER CONTAINER ============ */
        .filter-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin: 1rem auto 3.5rem;
            flex-wrap: wrap;
            max-width: 900px;
            padding: 0 1rem;
        }

        .filter-btn {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.6);
            padding: 0.6rem 1.4rem;
            font-size: 0.72rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            font-family: 'Inter', sans-serif;
            font-weight: 500;
        }

        .filter-btn:hover {
            color: var(--white);
            border-color: rgba(212, 175, 55, 0.4);
            background: rgba(212, 175, 55, 0.03);
        }

        .filter-btn.active {
            background: var(--gold);
            color: var(--black);
            border-color: var(--gold);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
            font-weight: 600;
        }

        /* ============ WATCHES GRID ============ */
        .watches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ============ UNIQUE GLASSMORPHIC CARD ============ */
        .watch-card {
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(8px);
        }

        /* Ambient Glow behind image on hover */
        .watch-card::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .watch-card:hover::before {
            opacity: 1;
        }

        .watch-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(212, 175, 55, 0.15) inset;
        }

        .watch-card img {
            width: 100%;
            height: 270px;
            object-fit: cover;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            z-index: 1;
        }

        .watch-card:hover img {
            transform: scale(1.06);
        }

        .watch-card-details {
            padding: 1.5rem;
            text-align: left;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            background: rgba(10, 10, 10, 0.3);
        }

        .watch-card-details p {
            color: var(--gold);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.4rem;
        }

        .watch-card-details h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: var(--white);
            margin-bottom: 0.8rem;
            font-weight: 500;
            line-height: 1.3;
            transition: color 0.3s;
        }

        .watch-card:hover .watch-card-details h3 {
            color: var(--gold);
        }

        .watch-card-details .desc {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.80rem;
            line-height: 1.5;
            font-weight: 300;
            margin-bottom: 0;
            height: 3.8rem;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        /* ============ FEATURED BANNER ============ */
        .featured-banner {
            margin: 6rem auto;
            max-width: 1200px;
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(134, 133, 133, 0.445) 100%);
            border-radius: 12px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
            box-shadow: 0 40px 80px rgba(0,0,0,0.8);
            position: relative;
        }

        .featured-banner-image {
            background:linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(134, 133, 133, 0.445) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem;
            position: relative;
            border-right: 1px solid rgba(255,255,255,0.05);
        }

        .featured-watch-wrapper {
            animation: floatWatch 5s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .featured-banner-image img {
            max-width: 320px;
            width: 100%;
            height: auto;
            border-radius: 12px;
            filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.7));
            transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .featured-banner:hover .featured-banner-image img {
            transform: scale(1.04) rotate(1deg);
        }

        @keyframes floatWatch {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        .featured-banner-text {
            padding: 5rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-banner-text .tag {
            color: var(--gold);
            letter-spacing: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 1.2rem;
            display: inline-block;
        }

        .featured-banner-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.15;
        }

        .featured-banner-text p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            font-weight: 300;
        }

        /* Tech Specs Grid */
        .specs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin-bottom: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.5rem;
        }

        .spec-item {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .spec-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.4);
        }

        .spec-value {
            font-size: 0.85rem;
            color: var(--white);
            font-weight: 500;
        }

        /* ============ BRANDS STRIP ============ */
        .brands-strip {
            overflow: hidden;
            width: 100%;
            padding: 3.5rem 0;
            background: rgba(10, 10, 10, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .brands-track {
            display: flex;
            width: max-content;
            gap: 6rem;
            animation: scrollMarquee 25s linear infinite;
        }

        .brands-track span {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            letter-spacing: 3px;
            color: var(--white);
            text-transform: uppercase;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0.5;
            transition: all 0.3s;
        }

        .brands-track span:hover {
            opacity: 0.9;
            color: var(--gold);
        }

        @keyframes scrollMarquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ============ NEWSLETTER ============ */
        .newsletter {
            background: var(--dark);
            padding: 5rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(212, 175, 55, 0.12);
            border-bottom: 1px solid rgba(212, 175, 55, 0.12);
            margin-top: 3rem;
        }

        .newsletter h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 0.8rem;
        }

        .newsletter p {
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }

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

        .newsletter-form input {
            flex: 1;
            padding: 1rem 1.4rem;
            background: var(--black);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            border-radius: 2px 0 0 2px;
            outline: none;
            transition: border-color 0.3s;
        }

        .newsletter-form input:focus {
            border-color: var(--gold);
        }

        .newsletter-form button {
            background: var(--gold);
            color: var(--black);
            border: none;
            padding: 1rem 2rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            font-size: 0.8rem;
            border-radius: 0 2px 2px 0;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .newsletter-form button:hover {
            background: #c5a02e;
        }

        /* ============ FOOTER ============ */
        footer {
            background: var(--black);
            padding: 4rem 4rem 2rem;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 2rem 0;
            list-style: none;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            color: rgba(255, 255, 255, 0.35);
            font-size: 0.7rem;
            letter-spacing: 2px;
            margin-top: 2rem;
        }

        /* ============ TOAST ============ */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--dark);
            border: 1px solid var(--gold);
            color: var(--white);
            padding: 1rem 1.6rem;
            border-radius: 4px;
            z-index: 9999;
            font-size: 0.8rem;
            letter-spacing: 1px;
            transform: translateX(120%);
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .toast.show {
            transform: translateX(0);
        }

        .toast-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
        }

        /* ============ QUICK VIEW MODAL ============ */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-container {
            width: 90%;
            max-width: 900px;
            background: rgba(20, 20, 20, 0.95);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            overflow: hidden;
            box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
        }

        .modal-overlay.active .modal-container {
            transform: scale(1);
        }

        .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }

        .modal-close-btn:hover {
            background: var(--gold);
            color: var(--black);
            border-color: var(--gold);
            transform: rotate(90deg);
        }

        .modal-left {
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%), var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
        }

        .modal-left img {
            max-width: 100%;
            max-height: 350px;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 20px 45px rgba(0,0,0,0.8));
            animation: floatWatch 5s ease-in-out infinite;
        }

        .modal-right {
            padding: 4rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .modal-brand {
            color: var(--gold);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--white);
            margin-bottom: 1.2rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .modal-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .modal-container {
                grid-template-columns: 1fr;
                max-height: 90vh;
                overflow-y: auto;
            }

            .modal-left {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                padding: 2rem;
            }

            .modal-left img {
                max-height: 250px;
            }

            .modal-right {
                padding: 2.5rem 2rem;
            }
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-text .hero-subtitle {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image-container {
                width: 300px;
                height: 300px;
            }

            .hero-watch-img {
                width: 220px;
            }

            .hero-glow {
                width: 240px;
                height: 240px;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .featured-banner {
                grid-template-columns: 1fr 1fr;
            }

            .featured-banner-text {
                padding: 2rem;
            }

            .featured-banner-image {
                padding: 2rem;
            }

            .featured-banner-image img {
                width: 240px;
            }

            .navbar {
                padding: 1rem 2rem;
            }

            .navbar.scrolled {
                padding: 0.7rem 2rem;
            }

            .collection-section {
                padding: 4rem 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-logo {
                font-size: 1.3rem;
                letter-spacing: 2px;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                right: -100%;
                left: auto;
                width: 250px;
                height: 100vh;
                background: rgba(15, 15, 15, 0.97);
                flex-direction: column;
                align-items: flex-start;
                padding: 2rem;
                gap: 1.5rem;
                transition: right 0.4s ease;
                backdrop-filter: blur(20px);
                border: none;
            }

            .nav-links a {
                display: flex;
                align-items: center;
                gap: 10px;
                width: 100%;
            }

            .nav-links a i {
                display: inline-block;
                color: var(--gold);
                font-size: 0.95rem;
                width: 20px;
                text-align: center;
            }

            .nav-links.active {
                right: 0;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 5rem 1.5rem 3rem;
                min-height: auto;
            }

            .hero-text h1 {
                font-size: 2.4rem;
            }

            .hero-image-container {
                width: 240px;
                height: 240px;
            }

            .hero-watch-img {
                width: 170px;
            }

            .collection-section {
                padding: 3rem 1.2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .featured-banner-text {
                padding: 2rem 1.5rem;
            }

            .featured-banner-text h3 {
                font-size: 1.6rem;
            }

            footer {
                padding: 3rem 1.5rem 1.5rem;
            }

            .brands-strip {
                gap: 1.5rem;
            }

            .brands-strip span {
                font-size: 1rem;
                letter-spacing: 2px;
            }

            .newsletter-form {
                flex-direction: column;
                gap: 0.6rem;
            }

            .newsletter-form input,
            .newsletter-form button {
                border-radius: 2px;
                width: 100%;
            }
        }

        @media (max-width: 600px) {
            .featured-banner {
                grid-template-columns: 1fr;
            }

            .featured-banner-text {
                text-align: center;
                align-items: center;
            }

            .featured-banner-image img {
                width: 220px;
            }
        }