/* 
   =========================================
   SHHUTUP™ LUXURY WATCHES — PREMIUM STYLESHEET
   Apple-Level Design System v2.0
   =========================================
*/

/* --- CSS CUSTOM PROPERTIES (Premium Design Tokens) --- */
:root {
    /* Deep Dark Palette */
    --bg-main: #030303;
    --bg-sec: #0a0a0a;
    --bg-elevated: #111111;
    --card-bg: #141414;
    --card-bg-hover: #1a1a1a;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(27, 77, 255, 0.25);

    /* Typography Colors */
    --text-primary: #f5f5f7;
    --text-secondary: #c7c7cc;
    --text-muted: #86868b;
    --text-dim: #6e6e73;

    /* Brand Colors */
    --luxury-blue: #1B4DFF;
    --royal-blue: #3366FF;
    --blue-glow: rgba(27, 77, 255, 0.4);
    --gold: #C9A96E;
    --gold-light: #D4B87A;
    --silver: #D1D1D6;
    --success: #30D158;
    --danger: #FF375F;
    --warm-white: #FAFAFA;

    /* Typography Stack */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-product: 'Poppins', sans-serif;
    --font-number: 'Montserrat', sans-serif;

    /* Glassmorphism */
    --glass-bg: rgba(10, 10, 10, 0.72);
    --glass-bg-deep: rgba(5, 5, 5, 0.85);
    --glass-border: rgba(255, 255, 255, 0.04);
    --glass-border-light: rgba(255, 255, 255, 0.08);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px var(--blue-glow);
    --shadow-glow-lg: 0 0 40px var(--blue-glow);
    --shadow-gold: 0 0 20px rgba(201, 169, 110, 0.2);

    /* Transitions — Apple-caliber Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
    --transition-fast: 0.2s var(--ease-out-quart);
    --transition-smooth: 0.5s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
    --transition-spring: 0.6s var(--ease-spring);

    /* Layout */
    --max-width: 1400px;
    --section-padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 5%);
    --nav-height: 72px;
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Film Grain Texture Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Selection */
::selection {
    background: var(--luxury-blue);
    color: #fff;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.font-montserrat {
    font-family: var(--font-number);
}

/* --- UTILITIES --- */
.hidden {
    display: none !important;
}

.text-glow-blue {
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--luxury-blue), 0 0 60px rgba(27, 77, 255, 0.3);
}

/* Scroll-triggered Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* =========================================
   FULLSCREEN CINEMATIC PRELOADER
   ========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-main);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: clip-path 1.2s var(--ease-out-expo), opacity 0.5s ease 1s;
    clip-path: inset(0 0 0 0);
}

.preloader.done {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.brand-logo-preload {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 12px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 900;
    overflow: hidden;
}

.brand-logo-preload .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: char-rise 0.6s var(--ease-out-expo) forwards;
}

.preload-counter {
    font-family: var(--font-number);
    font-size: 1rem;
    color: var(--text-dim);
    letter-spacing: 4px;
    margin-top: 2rem;
    font-weight: 300;
}

.preload-bar-track {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1.5rem auto 0;
    border-radius: 1px;
    overflow: hidden;
}

.preload-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--luxury-blue), var(--royal-blue));
    border-radius: 1px;
    transition: width 0.1s linear;
}

.tagline-preload {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fade-in 1s ease forwards 0.8s;
}

@keyframes char-rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

/* =========================================
   RECENT ORDER TOAST (Social Proof)
   ========================================= */
.recent-order-toast {
    position: fixed;
    bottom: 100px;
    left: 24px;
    background: var(--glass-bg-deep);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-light);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 990;
    max-width: 340px;
    box-shadow: var(--shadow-md);
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.6s var(--ease-out-expo), opacity 0.6s var(--ease-out-expo);
}

.recent-order-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-img-placeholder {
    font-size: 2rem;
    flex-shrink: 0;
}

.toast-info {
    flex: 1;
}

.toast-title {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.toast-product {
    font-family: var(--font-product);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.toast-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* =========================================
   STICKY NAVBAR (Deep Glassmorphism)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: #0F0F0F;
    transition: background 0.5s var(--ease-out-expo),
        box-shadow 0.5s var(--ease-out-expo),
        transform 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    background: #0F0F0F;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.5);
}


.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 5%);
    height: 100%;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--text-primary);
    transition: opacity var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s var(--ease-out-quart);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--luxury-blue), transparent);
    transition: transform 0.4s var(--ease-out-expo);
    transform-origin: center;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-line {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Nav Action Buttons */
.nav-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-btn {
    color: var(--text-secondary);
    font-size: 1.1rem;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-number);
    font-size: 0.65rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge.bg-blue {
    background: var(--luxury-blue);
    border-color: var(--luxury-blue);
    color: #fff;
}

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--glass-bg-deep);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem clamp(1.5rem, 5vw, 5%);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0 1.2rem;
    transition: border-color var(--transition-fast);
}

.search-box:focus-within {
    border-color: var(--luxury-blue);
    box-shadow: 0 0 0 3px rgba(27, 77, 255, 0.1);
}

#search-input {
    flex: 1;
    padding: 1rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

#search-input::placeholder {
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

.search-close-btn {
    color: var(--text-muted);
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 50%;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.search-close-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay .mobile-nav-link {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 1rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), color 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay .mobile-nav-link:hover {
    color: var(--text-primary);
}

/* Stagger delays for mobile menu items */
.mobile-menu-overlay .mobile-nav-link:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-menu-overlay .mobile-nav-link:nth-child(2) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay .mobile-nav-link:nth-child(3) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay .mobile-nav-link:nth-child(4) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay .mobile-nav-link:nth-child(5) {
    transition-delay: 0.25s;
}

/* =========================================
   HERO SECTION (Cinematic Parallax)
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 clamp(1.5rem, 5vw, 5%);
    background: radial-gradient(ellipse at 20% 50%, rgba(27, 77, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
        var(--bg-main);
}

/* Ambient Light Orbs */
.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 77, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: ambient-float 15s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: ambient-float 12s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes ambient-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.mouse-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 77, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    gap: 4rem;
}

.hero-text-content {
    flex: 1;
    max-width: 580px;
}

.hero-sub {
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: hero-fade-up 1s var(--ease-out-expo) forwards 0.3s;
}

.hero-heading {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.2rem;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(30px);

    animation: hero-fade-up 1s var(--ease-out-expo) forwards 0.5s;
}

.hero-tagline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px);
    animation: hero-fade-up 1s var(--ease-out-expo) forwards 0.7s;
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: hero-fade-up 1s var(--ease-out-expo) forwards 0.9s;
}

@keyframes hero-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- PREMIUM BUTTONS --- */
.btn {
    padding: 0.9rem 2.2rem;
    font-family: var(--font-product);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.4s var(--ease-out-expo),
        box-shadow 0.4s var(--ease-out-expo),
        background 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: scale(0.97) !important;
}

.btn-primary {
    background: var(--luxury-blue);
    color: #fff;
    box-shadow: 0 4px 15px rgba(27, 77, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 77, 255, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
    border-color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--success);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #34D85C;
    box-shadow: 0 8px 25px rgba(48, 209, 88, 0.35);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Live Visitor Counter */
.live-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    opacity: 0;
    transform: translateY(20px);
    animation: hero-fade-up 1s var(--ease-out-expo) forwards 1.1s;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid var(--success);
    animation: pulse-ring 2s var(--ease-out-expo) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

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

.counter-text {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Hero Visual / Watch Display */
.hero-visual-content {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    perspective: 1200px;
}

.aurora-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(27, 77, 255, 0.15) 0%,
            rgba(27, 77, 255, 0.05) 40%,
            transparent 70%);
    filter: blur(50px);
    border-radius: 50%;
    animation: aurora-pulse 8s ease-in-out infinite alternate;
}

.luxury-pedestal {
    position: absolute;
    bottom: 12%;
    width: 300px;
    height: 40px;
    background: radial-gradient(ellipse at center,
            rgba(27, 77, 255, 0.85) 0%,
            transparent 75%);
    border-radius: 50%;
    transform: rotateX(75deg);
    z-index: 1;
    filter: blur(4px);
    box-shadow: 0 0 40px rgba(27, 77, 255, 0.6);
}

.floating-watch-wrapper {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    will-change: transform;
    animation: float-3d 6s ease-in-out infinite;
}

.floating-watch {
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 60px rgba(27, 77, 255, 0.1));
    transition: filter 0.5s ease;
}

.glass-tag {
    position: absolute;
    background: var(--glass-bg-deep);
    border: 1px solid var(--glass-border-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: var(--shadow-sm);
}

.tag-left {
    top: 28%;
    left: 5%;
    animation: tag-float 6s ease-in-out infinite;
}

.tag-right {
    bottom: 28%;
    right: 5%;
    animation: tag-float 5s ease-in-out infinite 1.5s;
}

@keyframes aurora-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

@keyframes float-3d {

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

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

@keyframes tag-float {

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

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

/* =========================================
   SECTIONS COMMON
   ========================================= */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--luxury-blue);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   COLLECTION TABS
   ========================================= */
.collections-section {
    padding-bottom: 2rem;
}

.collection-tabs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.tab-btn {
    padding: 0.7rem 1.8rem;
    font-family: var(--font-product);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
}

.tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    color: #fff;
    background: var(--luxury-blue);
    border-color: var(--luxury-blue);
    box-shadow: 0 4px 15px rgba(27, 77, 255, 0.3);
}

/* =========================================
   PRODUCT GRID & CARDS (Premium 3D)
   ========================================= */
.products-section {
    background: linear-gradient(180deg, var(--bg-sec) 0%, var(--bg-main) 100%);
}

.products-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.5s var(--ease-out-expo),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(27, 77, 255, 0.1);
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--text-primary);
    color: var(--bg-main);
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-product);
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-image-wrapper {
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s var(--ease-out-expo);
    transform: translateZ(20px);
}

.product-card:hover .product-image {
    transform: scale(1.08) translateZ(30px);
}

.product-info {
    text-align: left;
}

.product-title {
    font-family: var(--font-product);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-title:hover {
    color: var(--royal-blue);
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.2rem;
    font-family: var(--font-number);
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-mrp {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.discount-text {
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-add-cart {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-product);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-add-cart:hover {
    background: var(--text-primary);
    color: var(--bg-main);
    border-color: var(--text-primary);
}

.btn-add-cart.added {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.btn-quick-wishlist {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dim);
    font-size: 1rem;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-quick-wishlist:hover {
    color: var(--danger);
    border-color: var(--danger);
    background: rgba(255, 55, 95, 0.05);
}

.btn-quick-wishlist.active {
    color: var(--danger);
    border-color: var(--danger);
}

/* Skeleton Loading */
.product-skeleton-card {
    background: var(--card-bg);
    height: 420px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.product-skeleton-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

/* =========================================
   WHY SHHUTUP SECTION (Glass Cards)
   ========================================= */
.why-section {
    background: var(--bg-main);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.5s var(--ease-out-expo),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luxury-blue), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-md);
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--luxury-blue);
    background: rgba(27, 77, 255, 0.08);
    border-radius: 16px;
    transition: transform 0.4s var(--ease-spring);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
}

.benefit-card h3 {
    font-family: var(--font-product);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   LIFESTYLE GALLERY
   ========================================= */
.gallery-section {
    padding: 2rem clamp(1.5rem, 5vw, 5%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
    height: 100%;
    min-height: 600px;
}

.gallery-bg-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease-out-expo);
}


.gallery-item:hover .gallery-bg-placeholder {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(3, 3, 3, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    z-index: 1;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    transform: translateY(10px);
    opacity: 0.8;
    transition: transform 0.5s var(--ease-out-expo), opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
    opacity: 1;
}

/* =========================================
   CUSTOMER REVIEWS (Carousel)
   ========================================= */
.reviews-section {
    background: var(--bg-sec);
    overflow: hidden;
}

.reviews-container {
    display: flex;
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 1rem;
    cursor: grab;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

.reviews-container:active {
    cursor: grabbing;
}

.review-card {
    flex-shrink: 0;
    width: min(400px, 85vw);
    scroll-snap-align: start;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.review-stars {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.user-name {
    font-family: var(--font-product);
    font-weight: 600;
    font-size: 0.95rem;
}

.verified-badge {
    font-size: 0.75rem;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* =========================================
   FAQ ACCORDION (Smooth Transitions)
   ========================================= */
.faq-section {
    background: var(--bg-main);
}

.faq-accordion {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-family: var(--font-product);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--royal-blue);
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--text-dim);
    transition: transform 0.5s var(--ease-out-expo), color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--luxury-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo),
        padding 0.5s var(--ease-out-expo),
        opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================
   NEWSLETTER SECTION
   ========================================= */
.newsletter-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-sec) 100%);
    text-align: center;
}

.newsletter-container {
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-container h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.8rem;
}

.newsletter-container p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 5px;
    transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: var(--luxury-blue);
    box-shadow: 0 0 0 3px rgba(27, 77, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-dim);
}

.newsletter-form button {
    padding: 0.9rem 1.5rem;
    background: var(--luxury-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-product);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--royal-blue);
}

/* =========================================
   FOOTER (Premium Layout)
   ========================================= */
.footer {
    background: var(--bg-sec);
    padding: 4rem clamp(1.5rem, 5vw, 5%) 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s var(--ease-out-expo);
}

.social-links a:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-family: var(--font-product);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s var(--ease-out-expo);
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-dim);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

/* =========================================
   CART / WISHLIST DRAWER (Premium Panel)
   ========================================= */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
}

.cart-drawer.active {
    pointer-events: auto;
}

.cart-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
}

.cart-drawer.active .cart-drawer-overlay {
    opacity: 1;
}

.cart-content-panel {
    width: 440px;
    max-width: 100%;
    height: 100%;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 2;
}

.cart-drawer.active .cart-content-panel {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.cart-header h2 {
    font-family: var(--font-product);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.cart-close-btn {
    font-size: 1.3rem;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.cart-close-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.empty-cart-message {
    text-align: center;
    color: var(--text-dim);
    font-style: italic;
    margin-top: 4rem;
    font-size: 0.95rem;
}

/* Cart Item Styling */
.cart-item {
    display: flex;
    gap: 14px;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    animation: fade-slide-in 0.4s var(--ease-out-expo);
}

@keyframes fade-slide-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: var(--bg-main);
    border-radius: 10px;
    padding: 6px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: var(--font-product);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.cart-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-price {
    font-family: var(--font-number);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-wishlist-btn {
    color: var(--danger);
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s var(--ease-spring);
    padding: 4px;
}

.cart-wishlist-btn:hover {
    transform: scale(1.2);
}

.quantity-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-main);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.quantity-stepper button {
    width: 30px;
    height: 30px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s ease;
}

.quantity-stepper button:hover {
    background: rgba(255, 255, 255, 0.05);
}

.quantity-stepper span {
    font-family: var(--font-number);
    font-size: 0.8rem;
    min-width: 28px;
    text-align: center;
    font-weight: 600;
}

/* Cart Footer */
.cart-footer {
    padding: 1.5rem;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.coupon-section {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.coupon-section input {
    flex: 1;
    padding: 0.7rem 1rem;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-product);
    font-size: 0.78rem;
    letter-spacing: 1px;
    outline: none;
    transition: border-color 0.3s ease;
}

.coupon-section input:focus {
    border-color: var(--luxury-blue);
}

.coupon-section input::placeholder {
    color: var(--text-dim);
}

.coupon-section button {
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-product);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-section button:hover {
    background: var(--luxury-blue);
    border-color: var(--luxury-blue);
}

.shipping-note {
    font-size: 0.78rem;
    color: var(--success);
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* =========================================
   WHATSAPP FLOATING BUTTON (CUSTOM ICON - FIXED)
   ========================================= */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 990;
    text-decoration: none;
    transition: transform 0.4s ease;
    /* Width और Height हटा दिया गया है ताकि बॉक्स आइकन के बराबर ही रहे */
    display: inline-block; 
}

/* वाइट बैकग्राउंड को परफेक्टली फोन के पीछे सेट करना */
.whatsapp-floating-btn::before {
    content: '';
    position: absolute;
    /* आइकन की पूंछ (tail) की वजह से इसे थोड़ा ऊपर और दाएं खिसकाया गया है */
    top: 48%; 
    left: 52%; 
    transform: translate(-50%, -50%);
    width: 56px; /* फोन के आइकन को कवर करने के लिए सटीक साइज़ */
    height: 56px;
    background: #025604;
    border-radius: 50%;
    z-index: 1;
}

.whatsapp-floating-btn i {
    font-size: 4.2rem;
    color: #025604;
    -webkit-text-stroke: 2px #ffffff;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-floating-btn:hover i {
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.4));
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: var(--glass-bg-deep);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-light);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 989;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--luxury-blue);
    border-color: var(--luxury-blue);
    color: #fff;
    transform: translateY(-3px);
}

/* Mobile Sticky Bottom */
.sticky-mobile-action {
    display: none;
}

/* =========================================
   KEYFRAMES
   ========================================= */
@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 10px var(--luxury-blue);
    }

    50% {
        opacity: 0.5;
        text-shadow: 0 0 30px var(--royal-blue);
    }
}

@keyframes load-bar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* =========================================
   PRODUCT DETAILS PAGE
   ========================================= */
.details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem clamp(1.5rem, 5vw, 5%);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.details-media-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.details-image-box {
    background: var(--bg-sec);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.details-main-img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.single-view-img {
    transform: none;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.image-action-bar {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-right: 5px;
}

.icon-action-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.icon-action-btn:hover {
    border-color: var(--luxury-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.details-info-box {
    display: flex;
    flex-direction: column;
}

.details-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.details-price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    font-family: var(--font-number);
    flex-wrap: wrap;
}

.details-current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.details-mrp {
    font-size: 1.1rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.details-discount {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 600;
    border: 1px solid rgba(48, 209, 88, 0.3);
    padding: 3px 12px;
    border-radius: 6px;
    background: rgba(48, 209, 88, 0.05);
}

.details-divider {
    height: 1px;
    background: var(--border-color);
    margin: 2rem 0;
}

.details-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Recently Viewed */
.recent-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scrollbar-width: none;
}

.recent-grid::-webkit-scrollbar {
    display: none;
}

.recent-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-width: calc(33.333% - 1rem);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease;
    overflow: hidden;
}

.recent-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
}

.recent-img-wrapper {
    height: 180px;
    padding: 1rem;
    background: var(--bg-sec);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.recent-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.recent-info {
    padding: 1rem;
    text-align: left;
}

.recent-title {
    font-size: 0.95rem;
    font-family: var(--font-product);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-price {
    font-family: var(--font-number);
    color: var(--gold);
    font-weight: bold;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card:nth-child(3n + 1) {
        grid-column: span 2;
    }

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

    .hero-heading {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .floating-watch {
        max-width: 320px;
    }

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

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

    .gallery-item {
        height: 250px;
    }

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

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    /* Mobile Card Fixes */
    .product-card:hover .product-image {
        transform: scale(1) translateZ(0) !important;
    }

    .product-card {
        transform-style: flat !important;
        transform: none !important;
        border-radius: 12px;
    }

    .product-card:active {
        transform: scale(0.98) !important;
        transition: transform 0.15s ease !important;
        border-color: var(--luxury-blue);
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--nav-height) + 2rem);
    }

     .hero-text-content {
        max-width: 100%;
    }

    .hero-cta-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
        padding: 0 10px;
    }

    .hero-cta-group .btn {
        padding: 1rem 0.5rem;
        font-size: 0.75rem;
        width: 100%;
    }

    .hero-visual-content {

        height: 350px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .products-section {
        padding-top: 2rem !important;
    }

    .section-header {
        margin-bottom: 1.5rem !important;
    }

    /* Bigger Single Card Fix (Mobile) */
    .product-card:nth-child(3n + 1) {
        padding: 1.2rem;
        overflow: hidden;
    }

    .product-card:nth-child(3n + 1) .product-image-wrapper {
        height: 300px;
        margin-bottom: 1.2rem;
        width: 100%;
        overflow: hidden;
        border-radius: 10px;
    }

    .product-card:nth-child(3n + 1) .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        transform: scale(1) !important;
    }

    .floating-watch {
        max-width: 250px;
    }

    .glass-tag {
        display: none !important;
    }

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

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

     .gallery-item,
    .gallery-item.large {
        grid-column: 1 / -1; 
        grid-row: span 1;
        width: 100%; 
        height: auto;
        min-height: unset; /* <-- यह सबसे जरूरी है! PC की 600px हाइट को यहाँ कैंसिल किया गया है */
        aspect-ratio: 4 / 5; 
        overflow: hidden;
    }


    .reviews-container {
        padding: 0 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-floating-btn {
        bottom: 80px;
    }

    .back-to-top {
        bottom: 80px;
        right: 30px;
    }

    .sticky-mobile-action {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--glass-bg-deep);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 10px 16px;
        z-index: 999;
        border-top: 1px solid var(--border-color);
    }

    .sticky-mobile-action .btn {
        border-radius: 10px;
    }

      /* Product Details Mobile (Full Screen Edge-to-Edge) */
    .product-details-section {
        padding: 70px 0 2rem 0 !important; 
    }
    .details-container {
        padding: 0 !important; 
        max-width: 100%;
    }
    .details-image-box {
        border-radius: 0;
        border: none;
        background: var(--bg-main);
        width: 100%;
    }
    .details-main-img, .swiper-slide img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3 / 4;
        object-fit: cover !important;
    }
       .image-action-bar {
        padding: 0 1.5rem;
        transform: translateY(-5px);
        margin-bottom: -30px;
    }
    .details-info-box {
        padding: 0 1.5rem;
        margin-top: -30px;
    }
    .details-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .details-title {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }



    .recent-card {
        min-width: 140px;
    }

    .recent-img-wrapper {
        height: 120px;
        padding: 0.5rem;
    }

    .recent-title {
        font-size: 0.85rem;
    }

    .recent-price {
        font-size: 0.9rem;
    }

    .collection-tabs {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.72rem;
    }
}

@media (max-width: 425px) {
    .hero-heading {
        font-size: 2.2rem;
    }

    .product-card {
        padding: 0.8rem;
        border-radius: 10px;
    }

    .product-image-wrapper {
        height: 130px;
        margin-bottom: 0.8rem;
    }

    .product-title {
        font-size: 0.82rem;
        line-height: 1.3;
    }

    .product-price-row {
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 0.8rem;
    }

    .price-current {
        font-size: 0.95rem;
    }

    .price-mrp {
        font-size: 0.75rem;
    }

    .discount-text {
        font-size: 0.7rem;
    }

    .product-actions {
        gap: 5px;
    }

    .btn-add-cart {
        padding: 0.6rem 0.3rem;
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .btn-quick-wishlist {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

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

    .newsletter-form button {
        border-radius: 0 0 8px 8px;
    }
}


/* =========================================
   PRODUCT DETAILS RESPONSIVE (PC & MOBILE)
   ========================================= */

/* Desktop (PC) View - 2 Columns */
.details-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
.details-media-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.details-info-box {
    padding: 2rem 0 0 0;
}

/* Mobile View Restores the Edge-to-Edge UI */
@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }
    .details-media-container {
        border-radius: 0;
        border: none;
        box-shadow: none;
    }
    .details-info-box {
        padding: 0 1.5rem;
        margin-top: 15px;
        margin-bottom: 20px;
    }
    .product-details-section {
        padding-top: 70px !important; 
    }
}

/* =========================================
   LAZY LOAD SINGLE-COLUMN GRID STYLES
   ========================================= */
.more-products-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
    padding: 0;
    margin: 0 -10px; /* यह लेफ्ट और राइट के एक्स्ट्रा स्पेस को कवर करके कार्ड को चौड़ा करेगा */
}

/* PC/Desktop View for Lazy Load Grid */
@media (min-width: 768px) {
    .more-products-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 30px;
        padding: 0;
        margin: 0; /* पीसी में मार्जिन नॉर्मल रहेगा */
    }
}


/* =========================================
   LANDING PAGE 3-PRODUCT ASYMMETRIC GRID
   ========================================= */

/* Mobile View (Default: Main card takes full width) */
.grid-item-main {
    grid-column: 1 / -1; 
}

/* PC / Desktop View */
@media (min-width: 768px) {
    #product-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr; /* लेफ्ट साइड (Main) को थोड़ा ज़्यादा चौड़ा करेगा */
        gap: 30px;
        align-items: stretch;
    }
    
    /* Left Side: Large Featured Product */
    .grid-item-main {
        grid-column: 1 / 2;
        grid-row: 1 / 3; /* यह राइट साइड के दोनों कार्ड्स के बराबर की ऊंचाई लेगा */
        display: flex;
        flex-direction: column;
    }
    
    /* मेन कार्ड की इमेज को स्ट्रेच करके खाली जगह भरने के लिए */
    .grid-item-main .product-image-wrapper {
        flex-grow: 1;
        display: flex;
        align-items: center;
        background: #000;
    }
    
    .grid-item-main .product-image-wrapper img {
        height: 100%;
        width: 100%;
        object-fit: cover; /* इमेज बिना स्ट्रेच हुए परफेक्ट सेट हो जाएगी */
    }

    /* Right Side: Two Stacked Products */
    .grid-item-side-1 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .grid-item-side-2 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
}