/* ==========================================================================
   Clock In | Premium Luxury CSS Design System & Visuals
   "Crafted for those who value every second."
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
    /* Premium Color Palette */
    --color-primary: #1B4332;       /* Deep Forest Green */
    --color-primary-dark: #123023;  /* Darker Forest Green */
    --color-accent: #C9A84C;        /* Rich Gold */
    --color-accent-hover: #E3C165;  /* Shimmer Gold */
    --color-bg-base: #0A0A0A;       /* Near-black */
    --color-bg-card: #111111;       /* Dark Charcoal */
    --color-bg-card-hover: #161616; /* Hover Highlight */
    --color-text-offwhite: #F5F0E8; /* Off-white body */
    --color-text-white: #FFFFFF;    /* Pure white headings */
    --color-text-muted: #8E8A83;    /* Muted gold/gray */
    --color-border: #222222;        /* Sleek dividers */
    --color-border-gold: #4C3C1A;   /* Subdued gold borders */

    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;

    /* Transitions & Easings */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-cinematic: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-base);
    color: var(--color-text-offwhite);
    font-family: var(--font-sans);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
}

body.scroll-lock {
    overflow: hidden;
}

/* Custom Selection Highlight */
::selection {
    background-color: var(--color-primary);
    color: var(--color-accent);
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-thin {
    max-width: 800px;
}

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

/* Premium Links & Typography */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-text-white);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

.section-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.gold-link {
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-border-gold);
    padding-bottom: 2px;
}

.gold-link:hover {
    color: var(--color-text-white);
    border-bottom-color: var(--color-accent);
}

/* 2. Custom Glowing Gold Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-trail {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

/* Hover cursor scale state */
.custom-cursor.hovered {
    width: 14px;
    height: 14px;
    background-color: var(--color-text-white);
}

.custom-cursor-trail.hovered {
    width: 48px;
    height: 48px;
    border-color: var(--color-accent);
    background-color: rgba(201, 168, 76, 0.05);
}

/* Disable cursor on touch screens */
@media (max-width: 1024px) {
    .custom-cursor, .custom-cursor-trail {
        display: none;
    }
}

/* 3. Cinematic Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-base);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s var(--ease-cinematic);
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-svg {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
}

.clock-rim {
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 1.5;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: drawCircle 2.2s var(--ease-cinematic) forwards;
}

.clock-hand {
    stroke: var(--color-accent);
    stroke-width: 2;
    stroke-linecap: round;
    transform-origin: 50px 50px;
}

.hour-hand {
    animation: rotateHand 8s linear infinite;
}

.minute-hand {
    animation: rotateHand 1.5s linear infinite;
}

.clock-center {
    fill: var(--color-accent);
}

.loader-logo {
    font-size: 2.2rem;
    letter-spacing: 0.4em;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.loader-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    animation: fadeIn 1.5s var(--ease-cinematic) 1.2s forwards;
}

/* 4. Frosted Glass Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2.2rem 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1.2rem 0;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--color-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--color-text-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--color-accent);
    font-weight: 500;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-offwhite);
    font-weight: 400;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-cinematic);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--color-text-white);
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

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

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--color-accent);
    color: var(--color-bg-base);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-base);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: var(--transition-smooth);
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    background: none;
    border: none;
    color: var(--color-text-white);
    font-size: 3rem;
    cursor: pointer;
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 0.15em;
    color: var(--color-text-white);
}

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

/* 5. Hero Section (Ken Burns Rotating Carousel) */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Subtle Slow Ambient Glow */
.ambient-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(27, 67, 50, 0.2) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: 1;
    pointer-events: none;
    animation: pulseAmbient 10s ease-in-out infinite alternate;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1.8s var(--ease-cinematic), transform 1.8s var(--ease-cinematic);
}

.carousel-slide.active {
    opacity: 0.45;
    transform: scale(1.08); /* Begins subtle Ken Burns zoom */
    animation: kenBurns 12s var(--ease-cinematic) forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.8) 80%, rgba(10, 10, 10, 1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: 5rem;
    letter-spacing: 0.3em;
    color: var(--color-text-white);
    margin-bottom: 1rem;
    margin-left: 0.3em; /* Balance kerning */
    opacity: 0;
    transform: translateY(30px);
}

.hero-slogan {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 3rem;
    min-height: 2.2rem;
    letter-spacing: 0.02em;
}

/* Explore CTA Shimmer Button */
.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-base);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--color-border-gold);
    color: var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-base);
    border-color: var(--color-accent);
}

.btn-sm {
    padding: 0.7rem 1.6rem;
    font-size: 0.7rem;
}

.w-100 {
    width: 100%;
    text-align: center;
}

/* Shimmer Sweep Animation on Button Hover */
.shimmer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.shimmer-btn:hover::before {
    left: 150%;
    transition: 0.75s;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
}

.scroll-line-container {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-line {
    width: 100%;
    height: 15px;
    background-color: var(--color-accent);
    position: absolute;
    top: 0;
    left: 0;
    animation: scrollScroll 2.2s infinite ease-in-out;
}

/* 6. Brand Story Section */
.story-section {
    padding: 10rem 0;
    background-color: var(--color-bg-base);
    position: relative;
}

.story-divider {
    width: 100px;
    height: 1px;
    background-color: var(--color-accent);
    margin: 3rem auto;
    opacity: 0.7;
    transition: width 1.5s var(--ease-cinematic);
}

/* Scale line on scroll visibility */
.story-section.visible .story-divider {
    width: 250px;
}

.story-text {
    font-size: 2.8rem;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.4;
    color: var(--color-text-white);
}

.story-paragraph {
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Count ups Grid */
.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.counter-card {
    text-align: center;
}

.counter-number {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    color: var(--color-accent);
    display: inline-block;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.counter-card .suffix {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--color-accent);
}

.counter-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
}

/* 7. Collection Section & Grid */
.collection-section {
    padding: 8rem 0;
    background-color: var(--color-bg-base);
}

.section-header {
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.5rem;
    color: var(--color-text-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Elegant product card hover interactions */
.product-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    z-index: 5;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Perfect Square aspect ratio */
    overflow: hidden;
    background-color: #0d0d0d;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Hover actions */
.product-card:hover {
    transform: translateY(-8px);
    background-color: var(--color-bg-card-hover);
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(201, 168, 76, 0.1);
}

.product-card:hover::before {
    border-color: var(--color-accent);
}

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

/* "Add to Cart" slider panel */
.product-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 4;
    transform: translateY(100%);
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 70%, rgba(10, 10, 10, 0));
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
}

.product-card:hover .product-hover-overlay {
    transform: translateY(0);
}

.product-info-panel {
    padding: 2.2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    color: var(--color-text-white);
}

.product-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-accent);
    font-weight: 500;
}

/* Grid layout breakpoints */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* 8. Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background-color: #080808;
    border-top: 1px solid var(--color-border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.quote-icon {
    font-size: 1.8rem;
    color: var(--color-accent);
    opacity: 0.25;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text-offwhite);
    margin-bottom: 2rem;
}

.testimonial-author {
    border-top: 1px solid var(--color-border);
    padding-top: 1.2rem;
}

.author-name {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-white);
    font-weight: 500;
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.75rem;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* 9. Secure Contact Section */
.contact-section {
    padding: 8rem 0;
    background-color: var(--color-bg-base);
    border-top: 1px solid var(--color-border);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 5rem;
}

.contact-title {
    font-size: 3.2rem;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
}

.contact-description {
    color: var(--color-text-muted);
    margin-bottom: 3.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--color-accent);
    width: 20px;
}

/* Premium Form Styling */
.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.honeypot-field {
    display: none !important;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.form-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-input.text-area {
    min-height: 100px;
    resize: none;
}

.form-label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

/* Floating labels magic */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -12px;
    font-size: 0.75rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.form-input:focus {
    border-bottom-color: var(--color-accent);
}

/* Spam Checkbox */
.security-checkbox-container {
    margin-top: 0.5rem;
}

.security-checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--color-text-muted);
    cursor: pointer;
}

.security-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-border-gold);
    background-color: transparent;
    display: inline-block;
    position: relative;
    transition: var(--transition-fast);
}

.security-checkbox-label input:checked ~ .checkbox-custom {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.security-checkbox-label input:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid var(--color-bg-base);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-status {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    min-height: 1.2rem;
    margin-top: -0.5rem;
}

.form-status.success {
    color: #4BB543;
}

.form-status.error {
    color: #ff3333;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* 10. Floating Cart Sidebar Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 100vw;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--color-border);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    box-shadow: -15px 0 40px rgba(0,0,0,0.7);
    transition: var(--transition-smooth);
}

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

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

.cart-drawer-header h3 {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}

.cart-close {
    background: none;
    border: none;
    color: var(--color-text-white);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.cart-close:hover {
    color: var(--color-accent);
}

.cart-items {
    padding: 2.5rem;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--color-border);
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-text-white);
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
}

.cart-item-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
}

.qty-btn {
    background: none;
    border: none;
    color: var(--color-text-white);
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qty-btn:hover {
    color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.02);
}

.qty-num {
    padding: 0 0.8rem;
    font-size: 0.8rem;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cart-remove-btn:hover {
    color: #ff3333;
}

.cart-empty-message {
    text-align: center;
    margin: auto;
    color: var(--color-text-muted);
}

.empty-cart-icon {
    font-size: 3rem;
    color: var(--color-border-gold);
    margin-bottom: 1.5rem;
}

.cart-drawer-footer {
    padding: 2.5rem;
    border-top: 1px solid var(--color-border);
    background-color: #0f0f0f;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.cart-total-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-accent);
    font-weight: 600;
}

.checkout-security-notice {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-security-notice i {
    color: var(--color-accent);
    margin-right: 4px;
}

/* 11. Product Detail Modal Page (Dynamic SPA Structure) */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2500;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-cinematic);
}

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

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.modal-content {
    position: relative;
    width: 1000px;
    max-width: 90%;
    max-height: 85%;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    z-index: 2;
    overflow-y: auto;
    transform: scale(0.92) translateY(20px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
    transition: transform 0.6s var(--ease-cinematic);
}

.product-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2.2rem;
    background: none;
    border: none;
    color: var(--color-text-white);
    font-size: 2.8rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-accent);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image-panel {
    width: 100%;
    background-color: #0b0b0b;
    position: relative;
    padding-top: 100%;
}

.modal-watch-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-panel {
    padding: 4.5rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-watch-name {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-white);
}

.modal-watch-price {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    font-weight: 500;
}

.modal-watch-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.specs-list {
    margin-bottom: 3rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.spec-label {
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.spec-val {
    color: var(--color-text-white);
}

.modal-actions {
    display: flex;
    gap: 1.5rem;
}

.modal-add-cart-btn {
    background-color: var(--color-primary) !important;
    color: var(--color-accent) !important;
    border: 1px solid var(--color-border-gold) !important;
}

.modal-add-cart-btn:hover {
    background-color: var(--color-primary-dark) !important;
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 15px rgba(27, 67, 50, 0.4);
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-info-panel {
        padding: 2.5rem;
    }
}

/* 12. GDPR Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 700px;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border-gold);
    z-index: 3000;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transform: translateY(150%);
    transition: transform 0.8s var(--ease-cinematic);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.8rem;
    align-items: center;
}

.cookie-icon-container {
    width: 48px;
    height: 48px;
    background-color: rgba(201, 168, 76, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-icon {
    font-size: 1.3rem;
    color: var(--color-accent);
}

.cookie-text h4 {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
}

.cookie-text p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.cookie-link {
    color: var(--color-accent);
    border-bottom: 1px solid transparent;
}

.cookie-link:hover {
    border-bottom-color: var(--color-accent);
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.btn-cookie {
    padding: 0.6rem 1.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-cookie-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-base);
}

.btn-cookie-primary:hover {
    background-color: var(--color-accent-hover);
}

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

.btn-cookie-secondary:hover {
    color: var(--color-text-white);
    border-color: var(--color-text-white);
}

@media (max-width: 768px) {
    .cookie-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cookie-icon-container {
        margin: 0 auto;
    }
    .cookie-actions {
        flex-direction: row;
        justify-content: center;
    }
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* 13. General Footer */
.footer {
    padding: 8rem 0 3rem 0;
    background-color: #050505;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand .footer-logo {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    letter-spacing: 0.3em;
    color: var(--color-text-white);
    display: block;
    margin-bottom: 1rem;
}

.footer-brand .footer-tagline {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-link-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.social-link-icon:hover {
    color: var(--color-bg-base);
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
}

.footer-nav h4, .footer-newsletter h4 {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav ul a {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-text-muted);
}

.footer-nav ul a:hover {
    color: var(--color-text-white);
    padding-left: 5px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.8rem;
}

.newsletter-form-container {
    display: flex;
    position: relative;
}

.newsletter-form-container input {
    flex-grow: 1;
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 3rem 1rem 0;
    color: var(--color-text-white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form-container input:focus {
    border-bottom-color: var(--color-accent);
}

.newsletter-submit {
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 1.1rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.newsletter-submit:hover {
    color: var(--color-text-white);
    transform: translate(3px, -50%);
}

.newsletter-status {
    font-size: 0.75rem;
    margin-top: 0.8rem;
    min-height: 1rem;
}

.newsletter-status.success {
    color: #4BB543;
}

.newsletter-status.error {
    color: #ff3333;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.est-tag {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-accent);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* 14. Simple Footer for Legal Pages */
.legal-page-body {
    background-color: var(--color-bg-base);
    color: var(--color-text-offwhite);
    padding-top: 8rem;
}

.legal-nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
}

.legal-nav-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--color-text-white);
}

.legal-content-section {
    padding: 4rem 0 8rem 0;
}

.legal-title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-white);
}

.legal-date {
    font-size: 0.8rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.legal-text-block h2 {
    font-size: 1.8rem;
    margin: 3.5rem 0 1.2rem 0;
    color: var(--color-text-white);
}

.legal-text-block p {
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
    color: var(--color-text-offwhite);
}

.legal-text-block ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.legal-text-block li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text-offwhite);
    font-weight: 300;
}

.footer-simple {
    padding: 4rem 0;
    border-top: 1px solid var(--color-border);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* 15. Scroll Reveal Framework */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s var(--ease-cinematic), transform 1.2s var(--ease-cinematic);
}

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

/* Stagger animations */
.product-card, .testimonial-card, .counter-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-cinematic), transform 1s var(--ease-cinematic);
}

.product-card.reveal-item, .testimonial-card.reveal-item, .counter-card.reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* Hero reveal items */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s var(--ease-cinematic), transform 1.5s var(--ease-cinematic);
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Keyframes */
@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

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

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes scrollScroll {
    0% {
        top: -15px;
        opacity: 0;
    }
    30% {
        top: 0px;
        opacity: 1;
    }
    60% {
        top: 35px;
        opacity: 0;
    }
    100% {
        top: 35px;
        opacity: 0;
    }
}

@keyframes pulseAmbient {
    0% {
        transform: scale(0.9);
        opacity: 0.15;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* ==========================================
   Color Swatches & Luxury Multi-Variant UI
   ========================================== */
.color-swatches {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.2rem 0;
    min-height: 16px;
}

.color-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #000;
    outline: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), outline-color 0.3s;
}

.color-swatch:hover, .color-swatch.active {
    transform: scale(1.35);
    outline-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.6);
}

.modal-color-swatches {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.modal-swatch {
    width: 24px;
    height: 24px;
}

.modal-swatch .swatch-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-white);
    font-size: 0.65rem;
    padding: 2px 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-swatch:hover .swatch-tooltip {
    opacity: 1;
}

