/* ==========================================================================
   NEPTUNE TIMES - ULTRA-PREMIUM LUXURY WATCH SHOWCASE STYLESHEET
   Light Theme Luxury Aesthetic | Fraunces Serif + Plus Jakarta Sans UI
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & SYSTEM VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Theme Colors - Light Theme Palette */
    --bg-primary: #F7F9FC;
    --bg-surface: #FFFFFF;
    --bg-cloud: #EEF3F8;
    --bg-glass: rgba(255, 255, 255, 0.65);
    --bg-glass-strong: rgba(255, 255, 255, 0.88);
    --bg-glass-subtle: rgba(238, 243, 248, 0.5);

    /* Text & Accents - Deep Navy & Silver Spectrum */
    --color-primary-navy: #071A33;
    --color-secondary-navy: #102B4C;
    --color-navy-muted: #244168;
    --color-silver: #C8D1DC;
    --color-blue-gray: #8EA0B5;
    --color-light-gray: #E2E8F0;
    --color-white: #FFFFFF;

    /* Status Colors */
    --badge-stock: #0E7490;
    --badge-vault: #4338CA;
    --badge-limited: #B45309;
    --badge-request: #64748B;

    /* Glassmorphism & Shadow Tokens */
    --glass-border: 1px solid rgba(7, 26, 51, 0.08);
    --glass-border-light: 1px solid rgba(255, 255, 255, 0.8);
    --glass-border-active: 1px solid rgba(7, 26, 51, 0.25);
    --glass-blur: blur(20px);
    --glass-blur-heavy: blur(32px);
    --shadow-soft: 0 12px 32px -8px rgba(7, 26, 51, 0.06);
    --shadow-hover: 0 24px 48px -12px rgba(7, 26, 51, 0.12);
    --shadow-glow: 0 0 40px rgba(142, 160, 181, 0.25);

    /* Typography System - Fraunces Serif + Plus Jakarta Sans */
    --font-serif: 'Fraunces', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions & Easing */
    --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout Spacing */
    --container-max: 1440px;
    --nav-height: 84px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--color-primary-navy);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    cursor: default;
}

/* Hide native cursor ONLY when custom cursor is active on hover-capable fine pointers */
@media (hover: hover) and (pointer: fine) {

    body.custom-cursor-enabled,
    body.custom-cursor-enabled * {
        cursor: none !important;
    }
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container Utility - Prevents Edge Collision */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.5rem);
}

/* Section Header Utility */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(2rem, 5vw, 3.5rem) auto;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-blue-gray);
    margin-bottom: 0.65rem;
    display: inline-block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3.5vw, 3.25rem);
    font-weight: 600;
    font-variation-settings: "SOFT" 50, "WONK" 1;
    color: var(--color-primary-navy);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
    text-wrap: balance;
}

.section-subtitle {
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    color: var(--color-navy-muted);
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   3. CUSTOM CURSOR SYSTEM (DESKTOP FINE-POINTER ONLY)
   -------------------------------------------------------------------------- */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 99999;
}

.cursor-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary-navy);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cursor-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(7, 26, 51, 0.4);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s var(--ease-apple), height 0.3s var(--ease-apple), border-color 0.3s ease, background-color 0.3s ease;
}

.cursor-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary-navy);
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

/* Cursor Hover States */
.cursor-ring.is-hovering {
    width: 72px;
    height: 72px;
    border-color: var(--color-primary-navy);
    background-color: rgba(255, 255, 255, 0.85);
}

.cursor-ring.is-hovering .cursor-text {
    opacity: 1;
}

.cursor-dot.is-hovering {
    opacity: 0;
}

/* Strictly Disable Custom Cursor on Coarse Pointer / Touch Devices */
@media (hover: none),
(pointer: coarse) {
    #custom-cursor {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   4. CINEMATIC PRELOADER
   -------------------------------------------------------------------------- */
#preloader {
    position: fixed;
    inset: 0;
    background-color: #F7F9FC;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-apple), filter 0.8s var(--ease-apple), visibility 0.8s ease;
    padding: 1.5rem;
}

#preloader.fade-out {
    opacity: 0;
    filter: blur(20px);
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    width: 100%;
}

.preloader-emblem {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-light-gray);
    border-top-color: var(--color-primary-navy);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.preloader-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 4px 14px rgba(7, 26, 51, 0.18));
}

.preloader-brand {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 4vw, 1.75rem);
    letter-spacing: 0.25em;
    font-weight: 600;
    font-variation-settings: "SOFT" 40, "WONK" 1;
    color: var(--color-primary-navy);
    margin-bottom: 0.4rem;
}

.preloader-brand span {
    font-style: italic;
    font-weight: 400;
    color: var(--color-navy-muted);
}

.preloader-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-blue-gray);
    margin-bottom: 2rem;
}

.preloader-progress-bar {
    width: 100%;
    max-width: 220px;
    height: 3px;
    background-color: var(--color-light-gray);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.preloader-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-blue-gray), var(--color-primary-navy));
    transition: width 0.1s linear;
}

.preloader-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary-navy);
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   5. NAVIGATION BAR & MOBILE MENU
   -------------------------------------------------------------------------- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease, height 0.4s ease;
}

#navbar.scrolled {
    background-color: var(--bg-glass-strong);
    backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    height: 72px;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.brand-symbol {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(7, 26, 51, 0.1);
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.35s var(--ease-apple);
}

.nav-brand:hover .brand-logo-img {
    transform: scale(1.1) rotate(6deg);
}

.brand-name {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    font-weight: 600;
    font-variation-settings: "SOFT" 40, "WONK" 1;
    letter-spacing: 0.18em;
    color: var(--color-primary-navy);
    white-space: nowrap;
}

.brand-name span {
    font-style: italic;
    font-weight: 400;
    color: var(--color-navy-muted);
}

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

.nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-navy-muted);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary-navy);
    transition: width 0.3s var(--ease-apple);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary-navy);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: background-color 0.3s ease, transform 0.3s var(--ease-apple), box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(7, 26, 51, 0.15);
    white-space: nowrap;
}

.btn-whatsapp-nav:hover {
    background-color: var(--color-secondary-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 26, 51, 0.22);
}

.wa-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.wa-icon-img,
img.wa-icon-img,
.btn-whatsapp-nav img,
.btn-whatsapp-modal img,
.whatsapp-pill-btn img,
.mobile-drawer img.wa-icon-img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.btn-whatsapp-nav img,
.btn-whatsapp-nav img.wa-icon-img {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
}

.btn-whatsapp-modal img,
.btn-whatsapp-modal img.wa-icon-img {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
}

.whatsapp-pill-btn img,
.whatsapp-pill-btn img.wa-icon-img {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1002;
    padding: 2px 0;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-navy);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Fullscreen Glass Mobile Menu Drawer */
.mobile-drawer {
    position: fixed;
    inset: 0;
    background-color: rgba(247, 249, 252, 0.97);
    backdrop-filter: var(--glass-blur-heavy);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-apple), visibility 0.4s ease;
    overflow-y: auto;
}

.mobile-drawer.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    color: var(--color-primary-navy);
    font-weight: 500;
    transition: color 0.25s ease;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION (RESPONSIVE DESKTOP, TABLET & MOBILE)
   -------------------------------------------------------------------------- */
#hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 1.5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 65% 40%, rgba(238, 243, 248, 0.85) 0%, rgba(247, 249, 252, 1) 70%);
}

#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.hero-backdrop-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: min(550px, 80vw);
    height: min(550px, 80vw);
    background: radial-gradient(circle, rgba(200, 209, 220, 0.45) 0%, rgba(247, 249, 252, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-content {
    max-width: 640px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.3rem, 5.2vw, 4.5rem);
    font-weight: 600;
    font-variation-settings: "SOFT" 40, "WONK" 1;
    line-height: 1.08;
    color: var(--color-primary-navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.hero-headline span {
    font-style: italic;
    font-weight: 400;
    color: var(--color-navy-muted);
}

.hero-description {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--color-navy-muted);
    line-height: 1.65;
    margin-bottom: 2.25rem;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button System */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1rem 2rem;
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    font-size: 0.825rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.35s var(--ease-apple);
    box-shadow: 0 10px 28px rgba(7, 26, 51, 0.16);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--color-secondary-navy);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(7, 26, 51, 0.24);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 2rem;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    border: 1.5px solid var(--color-primary-navy);
    color: var(--color-primary-navy);
    font-size: 0.825rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.35s var(--ease-apple);
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(7, 26, 51, 0.14);
}

/* Hero 3D Watch Stage */
.hero-visual-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    width: 100%;
}

.hero-watch-stage {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: clamp(340px, 45vh, 520px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

.hero-watch-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(7, 26, 51, 0.16);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    transform: translateZ(20px);
    animation: floatWatch 6s ease-in-out infinite;
    overflow: hidden;
}

@keyframes floatWatch {

    0%,
    100% {
        transform: translateZ(20px) translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateZ(20px) translateY(-10px) rotate(0.8deg);
    }
}

/* Floating Glass Spec Badges */
.hero-spec-badge {
    position: absolute;
    padding: 0.75rem 1.15rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: var(--glass-blur-heavy);
    border: var(--glass-border-light);
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(7, 26, 51, 0.18);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 20;
    transform: translateZ(80px);
    animation: floatBadge 5s ease-in-out infinite alternate;
    max-width: 240px;
    white-space: nowrap;
}

.hero-spec-badge.badge-1 {
    top: 8%;
    left: -6%;
}

.hero-spec-badge.badge-2 {
    bottom: 10%;
    right: -6%;
    animation-delay: 2.5s;
}

@keyframes floatBadge {
    0% {
        transform: translateZ(80px) translateY(0);
    }

    100% {
        transform: translateZ(80px) translateY(-10px);
    }
}

.spec-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary-navy);
    flex-shrink: 0;
}

.spec-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary-navy);
    white-space: nowrap;
}

.spec-val {
    font-size: 0.7rem;
    color: var(--color-blue-gray);
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   7. BRAND MARQUEE SLIDER
   -------------------------------------------------------------------------- */
#brand-marquee {
    padding: 1.75rem 0;
    background: var(--bg-surface);
    border-top: var(--glass-border);
    border-bottom: var(--glass-border);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0 2rem;
}

.marquee-brand {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--color-blue-gray);
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.marquee-brand:hover {
    color: var(--color-primary-navy);
    transform: scale(1.04);
}

.marquee-dot {
    width: 5px;
    height: 5px;
    background-color: var(--color-silver);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. STATS STRIP & EXCLUSIVE URGENCY SECTION
   -------------------------------------------------------------------------- */
#stats-urgency {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
    background-color: var(--bg-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--bg-surface);
    border: var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.stat-card {
    text-align: center;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--color-light-gray);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3.2vw, 3rem);
    font-weight: 700;
    color: var(--color-primary-navy);
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-blue-gray);
}

/* Urgency Glass Banner */
.urgency-glass-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 248, 0.75));
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 28px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.urgency-content {
    position: relative;
    z-index: 2;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    background-color: rgba(7, 26, 51, 0.06);
    border-radius: 100px;
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary-navy);
    margin-bottom: 0.85rem;
}

.urgency-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.3vw, 2.25rem);
    color: var(--color-primary-navy);
    font-weight: 600;
    margin-bottom: 0.65rem;
    line-height: 1.2;
}

.urgency-text {
    font-size: clamp(0.875rem, 1.1vw, 0.95rem);
    color: var(--color-navy-muted);
    line-height: 1.6;
}

.countdown-box {
    display: flex;
    gap: 0.85rem;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.time-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    padding: 1rem 0.85rem;
    border-radius: 16px;
    min-width: 72px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(7, 26, 51, 0.04);
}

.time-val {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 700;
    color: var(--color-primary-navy);
    line-height: 1;
}

.time-unit {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-blue-gray);
    margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   9. BRANDS SHOWCASE SECTION & GRID
   -------------------------------------------------------------------------- */
#brands-section {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
    background: var(--bg-surface);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.brand-card {
    background: var(--bg-primary);
    border: var(--glass-border);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
    transition: all 0.35s var(--ease-apple);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

.brand-card:hover {
    background: var(--bg-surface);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(7, 26, 51, 0.2);
}

.brand-card-top {
    margin-bottom: 1.25rem;
}

.brand-card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.brand-card-logo-lg {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 16px;
    background: var(--bg-surface);
    padding: 0.45rem;
    border: var(--glass-border);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(7, 26, 51, 0.07);
    transition: transform 0.35s var(--ease-apple), box-shadow 0.35s ease;
}

.brand-card:hover .brand-card-logo-lg {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(7, 26, 51, 0.12);
}

.brand-card-name {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 600;
    color: var(--color-primary-navy);
    line-height: 1.2;
}

.brand-card-count {
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.65rem;
    background: var(--bg-cloud);
    border-radius: 100px;
    color: var(--color-navy-muted);
    white-space: nowrap;
}

.brand-card-desc {
    font-size: 0.875rem;
    color: var(--color-navy-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.brand-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--color-light-gray);
}

.brand-card-origin {
    font-size: 0.725rem;
    font-weight: 600;
    color: var(--color-blue-gray);
}

.brand-card-link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary-navy);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.25s ease;
}

.brand-card:hover .brand-card-link {
    gap: 0.55rem;
}

.center-btn-container {
    text-align: center;
}

/* --------------------------------------------------------------------------
   10. SIGNATURE COLLECTION CATALOG & CARDS
   -------------------------------------------------------------------------- */
#collection-section {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
    background-color: var(--bg-primary);
}

.filter-bar {
    background: var(--bg-surface);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-blue-gray);
}

.filter-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0.65rem 2.4rem 0.65rem 1.15rem;
    border-radius: 100px;
    border: var(--glass-border);
    background-color: var(--bg-primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23071A33' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 14px 14px;
    font-family: var(--font-sans);
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--color-primary-navy);
    outline: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(7, 26, 51, 0.04);
}

.filter-select:focus,
.filter-select:hover {
    border-color: var(--color-primary-navy);
    background-color: var(--bg-surface);
    box-shadow: 0 4px 12px rgba(7, 26, 51, 0.08);
}

.btn-reset-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.15rem;
    border-radius: 100px;
    border: var(--glass-border);
    background-color: var(--bg-cloud);
    color: var(--color-navy-muted);
    font-size: 0.775rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-reset-filters:hover {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    border-color: var(--color-primary-navy);
    box-shadow: 0 4px 12px rgba(7, 26, 51, 0.15);
}

.search-input-wrapper {
    position: relative;
    min-width: 240px;
    flex-grow: 1;
    max-width: 320px;
}

.search-input {
    width: 100%;
    padding: 0.65rem 1.15rem 0.65rem 2.35rem;
    border-radius: 100px;
    border: var(--glass-border);
    background-color: var(--bg-primary);
    font-family: var(--font-sans);
    font-size: 0.825rem;
    color: var(--color-primary-navy);
    outline: none;
    transition: all 0.25s ease;
}

.search-input:focus {
    border-color: var(--color-primary-navy);
    background-color: var(--bg-surface);
    box-shadow: 0 0 0 3px rgba(7, 26, 51, 0.08);
}

.search-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    fill: var(--color-blue-gray);
    pointer-events: none;
}

/* Watches Grid */
.watches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.25rem);
}

/* Watch Presentation Card */
.watch-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.35s var(--ease-apple), box-shadow 0.35s var(--ease-apple), border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.watch-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(7, 26, 51, 0.2);
}

.watch-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    background: var(--bg-cloud);
    display: block;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.watch-card-img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s var(--ease-apple);
    filter: none;
}

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

.watch-card-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.watch-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 100px;
    font-size: 0.675rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary-navy);
    z-index: 2;
}

.watch-availability-dot {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: var(--glass-blur);
    border-radius: 100px;
    font-size: 0.675rem;
    font-weight: 600;
    color: var(--color-primary-navy);
    z-index: 2;
}

.dot-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10B981;
    flex-shrink: 0;
}

.watch-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.watch-card-brand {
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-blue-gray);
    margin-bottom: 0.3rem;
}

.watch-card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 1.45rem);
    font-weight: 600;
    color: var(--color-primary-navy);
    line-height: 1.25;
    margin-bottom: 0.4rem;
}

.watch-card-ref {
    font-size: 0.775rem;
    color: var(--color-navy-muted);
    margin-bottom: 1rem;
    font-family: monospace;
}

.watch-card-specs-brief {
    display: flex;
    gap: 0.75rem;
    font-size: 0.725rem;
    color: var(--color-navy-muted);
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--color-light-gray);
}

.watch-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.watch-price-group {
    display: flex;
    flex-direction: column;
}

.watch-price-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-blue-gray);
}

.watch-price {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--color-primary-navy);
}

.watch-original-price {
    font-size: 0.75rem;
    text-decoration: line-through;
    color: var(--color-blue-gray);
    margin-left: 0.4rem;
}

.btn-view-watch {
    padding: 0.6rem 1.15rem;
    border-radius: 100px;
    background-color: var(--bg-cloud);
    color: var(--color-primary-navy);
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.watch-card:hover .btn-view-watch {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   11. WATCH DETAIL MODAL EXPERIENCE
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 26, 51, 0.45);
    backdrop-filter: var(--glass-blur-heavy);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3vw, 2rem);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-apple), visibility 0.4s ease;
}

.modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-surface);
    border: var(--glass-border-light);
    border-radius: 28px;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(7, 26, 51, 0.25);
    position: relative;
    transform: scale(0.96) translateY(15px);
    transition: transform 0.4s var(--ease-apple);
}

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

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-cloud);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-primary-navy);
    z-index: 10;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.modal-close-btn:hover {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    transform: rotate(90deg);
}

.modal-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(1.75rem, 4vw, 3rem);
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-main-img-box {
    width: 100%;
    height: clamp(260px, 35vh, 360px);
    background: radial-gradient(circle, var(--bg-cloud) 0%, var(--bg-primary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-main-img {
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(7, 26, 51, 0.15));
}

.modal-thumbnails {
    display: flex;
    gap: 0.75rem;
}

.modal-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: var(--bg-cloud);
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    padding: 0.35rem;
    transition: border-color 0.25s ease;
}

.modal-thumb.active {
    border-color: var(--color-primary-navy);
}

.modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-details-col {
    display: flex;
    flex-direction: column;
}

.modal-brand {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-blue-gray);
    margin-bottom: 0.4rem;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--color-primary-navy);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.modal-ref {
    font-size: 0.8rem;
    color: var(--color-navy-muted);
    font-family: monospace;
    margin-bottom: 1.25rem;
}

.modal-price-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-light-gray);
}

.modal-price {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-primary-navy);
}

.modal-description {
    font-size: 0.9rem;
    color: var(--color-navy-muted);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.specs-table tr:not(:last-child) {
    border-bottom: 1px solid var(--color-light-gray);
}

.specs-table td {
    padding: 0.65rem 0;
    font-size: 0.825rem;
}

.specs-label-td {
    color: var(--color-blue-gray);
    font-weight: 600;
    width: 40%;
}

.specs-val-td {
    color: var(--color-primary-navy);
    font-weight: 600;
}

.btn-whatsapp-modal {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 22px rgba(7, 26, 51, 0.18);
    text-align: center;
}

.btn-whatsapp-modal:hover {
    background-color: var(--color-secondary-navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(7, 26, 51, 0.26);
}

/* --------------------------------------------------------------------------
   12. WHY COLLECTORS CHOOSE US & EDITORIAL SHOWCASE
   -------------------------------------------------------------------------- */
#why-us {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
    background: var(--bg-surface);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.why-card {
    padding: clamp(1.75rem, 3vw, 2.25rem);
    background: var(--bg-primary);
    border: var(--glass-border);
    border-radius: 20px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--bg-surface);
    border: var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-primary-navy);
}

.why-card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--color-primary-navy);
    margin-bottom: 0.65rem;
}

.why-card-desc {
    font-size: 0.875rem;
    color: var(--color-navy-muted);
    line-height: 1.6;
}

/* Editorial Section */
#editorial-section {
    padding: clamp(4rem, 7vw, 7rem) 0;
    background: radial-gradient(circle at 30% 50%, rgba(238, 243, 248, 0.9) 0%, rgba(247, 249, 252, 1) 100%);
    overflow: hidden;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.editorial-img-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.editorial-img {
    width: 100%;
    height: clamp(320px, 45vh, 480px);
    object-fit: cover;
    transition: transform 0.8s var(--ease-apple);
}

.editorial-img-box:hover .editorial-img {
    transform: scale(1.03);
}

.editorial-text {
    max-width: 540px;
}

.editorial-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2.25rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-primary-navy);
    margin-bottom: 1.25rem;
    font-style: italic;
    text-wrap: balance;
}

.editorial-body {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: var(--color-navy-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

/* --------------------------------------------------------------------------
   13. FINAL CTA & FLOATING WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
#final-cta {
    padding: clamp(4rem, 7vw, 7rem) 0;
    background: var(--bg-surface);
    border-top: var(--glass-border);
}

.final-cta-card {
    background: linear-gradient(135deg, var(--color-primary-navy) 0%, var(--color-secondary-navy) 100%);
    border-radius: 32px;
    padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(7, 26, 51, 0.22);
}

.final-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 209, 220, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-wrap: balance;
}

.final-cta-desc {
    font-size: clamp(0.9rem, 1.2vw, 1.15rem);
    color: var(--color-silver);
    max-width: 580px;
    margin: 0 auto 2.25rem auto;
}

/* Floating WhatsApp Widget */
#floating-whatsapp {
    position: fixed;
    bottom: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    z-index: 4000;
}

.whatsapp-pill-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 50%;
    transition: transform 0.35s var(--ease-apple);
    position: relative;
}

.whatsapp-pill-btn:hover {
    transform: translateY(-3px) scale(1.08);
}

.whatsapp-pill-btn img,
.whatsapp-pill-btn img.wa-icon-img {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 8px 20px rgba(7, 26, 51, 0.25));
    border-radius: 50%;
}

.pulse-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(7, 26, 51, 0.35);
    animation: pulseWave 2.5s infinite;
    pointer-events: none;
}

@keyframes pulseWave {
    0% {
        transform: scale(0.96);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

/* --------------------------------------------------------------------------
   14. DEDICATED BRANDS CATALOG VIEW
   -------------------------------------------------------------------------- */
#brands-page-view {
    display: none;
    padding-top: calc(var(--nav-height) + 2.5rem);
    padding-bottom: 6rem;
    background-color: var(--bg-primary);
    min-height: 100vh;
}

#brands-page-view.active {
    display: block;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
#footer {
    background-color: var(--bg-surface);
    border-top: var(--glass-border);
    padding: clamp(3.5rem, 6vw, 5rem) 0 2.25rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3.5rem;
}

.footer-brand-col p {
    font-size: 0.875rem;
    color: var(--color-navy-muted);
    margin-top: 0.85rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-col-title {
    font-size: 0.775rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary-navy);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.825rem;
    color: var(--color-navy-muted);
    transition: color 0.25s ease;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-light-gray);
    font-size: 0.775rem;
    color: var(--color-blue-gray);
}

/* --------------------------------------------------------------------------
   16. DEDICATED RESPONSIVE BREAKPOINTS (TABLET & MOBILE AUDIT)
   -------------------------------------------------------------------------- */

/* Tablet Optimization Breakpoint (768px – 1024px) */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .stat-card:nth-child(2)::after {
        display: none;
    }

    .urgency-glass-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .countdown-box {
        justify-content: center;
    }

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

    .modal-content-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

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

/* Mobile & Small Tablet Optimization Breakpoint (< 768px) */
@media (max-width: 768px) {

    .nav-menu,
    .nav-actions .btn-whatsapp-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    #hero {
        padding-top: calc(var(--nav-height) + 1rem);
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    .hero-watch-stage {
        height: 280px;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-spec-badge.badge-1 {
        top: 0;
        left: -10px;
    }

    .hero-spec-badge.badge-2 {
        bottom: 0;
        right: -10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem 1rem;
    }

    .stat-card:not(:last-child)::after {
        display: none;
    }

    .urgency-glass-banner {
        padding: 1.75rem 1.25rem;
    }

    .countdown-box {
        gap: 0.5rem;
    }

    .time-card {
        min-width: 60px;
        padding: 0.75rem 0.4rem;
    }

    .time-val {
        font-size: 1.4rem;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input-wrapper {
        max-width: 100%;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Small Mobile Screens (320px – 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-spec-badge {
        display: none;
        /* Hide floating badges on extremely tiny screens to prevent clutter */
    }

    .time-card {
        min-width: 54px;
        padding: 0.6rem 0.3rem;
    }

    .time-val {
        font-size: 1.25rem;
    }

    .time-unit {
        font-size: 0.55rem;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .marquee-track {
        animation: none !important;
    }
}