/* ============================================
   LuxuryWatch — Main Stylesheet
   Premium dark theme with gold accents
   ============================================ */

/* ──────── CSS Variables ──────── */
:root {
    /* Colors */
    --color-bg:           #0a0a0a;
    --color-bg-alt:       #111111;
    --color-bg-card:      #141414;
    --color-bg-elevated:  #1a1a1a;
    --color-gold:         #C9A84C;
    --color-gold-light:   #D4BA6A;
    --color-gold-dark:    #A88B3C;
    --color-white:        #FFFFFF;
    --color-text:         #E0E0E0;
    --color-text-muted:   #888888;
    --color-text-light:   #BBBBBB;
    --color-border:       #2a2a2a;
    --color-border-light: #333333;
    --color-success:      #4CAF50;
    --color-error:        #E53935;
    --color-sale:         #E53935;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs:  0.25rem;
    --space-sm:  0.5rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --container-max: 1400px;
    --container-padding: 1.5rem;
    --header-height: 70px;

    /* Transitions */
    --transition-fast:   150ms ease;
    --transition-base:   300ms ease;
    --transition-slow:   500ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg:  0 8px 32px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
}

/* ──────── Light Theme Variables ──────── */
[data-theme="light"] {
    --color-bg:           #FFFFFF;
    --color-bg-alt:       #F5F5F0;
    --color-bg-card:      #FFFFFF;
    --color-bg-elevated:  #F0EDE6;
    --color-gold:         #A88B3C;
    --color-gold-light:   #C9A84C;
    --color-gold-dark:    #8A7030;
    --color-white:        #1A1A1A;
    --color-text:         #333333;
    --color-text-muted:   #777777;
    --color-text-light:   #555555;
    --color-border:       #E0DDD5;
    --color-border-light: #D0CDC5;

    --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg:  0 8px 32px rgba(0,0,0,0.1);
    --shadow-gold: 0 4px 20px rgba(168,139,60,0.15);
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(135deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.3) 100%);
}

[data-theme="light"] .search-overlay {
    background: rgba(255,255,255,0.95);
}

[data-theme="light"] .mobile-menu-overlay {
    background: rgba(0,0,0,0.3);
}

[data-theme="light"] .mobile-nav-menu .sub-menu {
    background: rgba(0,0,0,0.03);
}

[data-theme="light"] .category-banner__overlay {
    background: linear-gradient(135deg, rgba(255,255,255,0.65), rgba(255,255,255,0.35));
}

[data-theme="light"] .category-banner--dark {
    background-color: #F0EDE6;
}

[data-theme="light"] .category-banner--gold .category-banner__overlay {
    background: linear-gradient(135deg, rgba(168,139,60,0.08), rgba(255,255,255,0.7));
}

[data-theme="light"] .countdown-section {
    background: linear-gradient(135deg, var(--color-bg-alt), #F5F0E5);
}

[data-theme="light"] .newsletter-section {
    background: linear-gradient(135deg, #F5F0E5, var(--color-bg-alt));
}

[data-theme="light"] .product-card__overlay {
    background: rgba(0,0,0,0.25);
}

[data-theme="light"] .product-card__quick-view {
    background: var(--color-gold);
    color: #FFFFFF;
}

[data-theme="light"] .about-hero__overlay {
    background: rgba(255,255,255,0.55);
}

[data-theme="light"] .category-hero__overlay {
    background: rgba(255,255,255,0.5);
}

[data-theme="light"] .skeleton {
    background: linear-gradient(90deg, #F0EDE6 25%, #E8E5DD 50%, #F0EDE6 75%);
    background-size: 200% 100%;
}

[data-theme="light"] .contact-map__embed iframe {
    filter: grayscale(0.3) contrast(0.95);
}

[data-theme="light"] .site-logo img,
[data-theme="light"] .footer-logo img {
    filter: brightness(0);
}

[data-theme="light"] .btn-gold {
    color: #FFFFFF;
}

[data-theme="light"] .btn-gold:hover {
    color: #FFFFFF;
}

[data-theme="light"] .btn-outline-white {
    color: var(--color-text);
    border-color: var(--color-border);
}

[data-theme="light"] .btn-outline-white:hover {
    background: var(--color-text);
    color: #FFFFFF;
}

[data-theme="light"] .hamburger-line {
    background: var(--color-text);
}

[data-theme="light"] .product-card__badge--new {
    color: #FFFFFF;
}

[data-theme="light"] .product-card__badge--sold {
    background: var(--color-bg-alt);
}

[data-theme="light"] .wc-proceed-to-checkout .checkout-button,
[data-theme="light"] #place_order {
    color: #FFFFFF;
}

[data-theme="light"] .product-carousel__prev,
[data-theme="light"] .product-carousel__next {
    background: var(--color-bg-card) !important;
    color: var(--color-text) !important;
}

[data-theme="light"] .product-carousel__prev:hover,
[data-theme="light"] .product-carousel__next:hover {
    background: var(--color-gold) !important;
    color: #FFFFFF !important;
}

/* ──────── Theme Toggle ──────── */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-text);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.theme-toggle:hover {
    color: var(--color-gold);
    background: rgba(201,168,76,0.08);
}

.theme-toggle__icon--light,
.theme-toggle__icon--dark {
    display: none;
}

[data-theme="dark"] .theme-toggle__icon--light {
    display: block;
}

[data-theme="light"] .theme-toggle__icon--dark {
    display: block;
}

/* Default (no data-theme set, light) */
:root:not([data-theme]) .theme-toggle__icon--dark {
    display: block;
}

/* ──────── Reset ──────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-light);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ──────── Utility Classes ──────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.text-center { text-align: center; }
.text-gold   { color: var(--color-gold); }

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    padding: 1rem 2rem;
    background: var(--color-gold);
    color: var(--color-bg);
    font-weight: 600;
    clip: auto;
    width: auto;
    height: auto;
}

/* ──────── Animations ──────── */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, var(--color-bg-card) 25%, var(--color-bg-elevated) 50%, var(--color-bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Section header slide-in animation */
.animate-section-header {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-section-header .section-title,
.animate-section-header .page-title {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.animate-section-header .section-desc,
.animate-section-header .page-subtitle {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.animate-section-header.is-visible,
.animate-section-header.is-visible .section-title,
.animate-section-header.is-visible .page-title,
.animate-section-header.is-visible .section-desc,
.animate-section-header.is-visible .page-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover transitions for cards */
.product-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card,
.blog-card,
.faq-item,
.post-navigation__link {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Button press effect */
.btn:active {
    transform: scale(0.97);
}

/* Gold shimmer on hover for section CTAs */
@keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.btn-gold:hover {
    background-image: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 40%, var(--color-gold) 60%, var(--color-gold-light) 100%);
    background-size: 200% auto;
    animation: goldShimmer 2s linear infinite;
}

/* Image zoom on hover */
.product-card__image,
.blog-card__image {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Pulse for cart count badge */
@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.header-cart-count.is-updated {
    animation: cartPulse 0.4s ease;
}

/* ══════════════════════════════════════════════════
   Premium Animations — Subtle & Elegant
   ══════════════════════════════════════════════════ */

/* 1. Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light, #d4a843));
    z-index: 10000;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
}

/* 2. Hero Split-Text Reveal */
.hero-title {
    perspective: 600px;
    overflow: hidden;
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%) rotateX(-80deg);
    animation: charReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title .char-space {
    display: inline-block;
    width: 0.3em;
}

@keyframes charReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* 3. Countdown Flip */
.countdown-number {
    perspective: 200px;
    display: inline-block;
    transform-style: preserve-3d;
}

.countdown-number.is-flipping {
    animation: digitFlip 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes digitFlip {
    0%   { transform: rotateX(0); }
    50%  { transform: rotateX(-90deg); opacity: 0.3; }
    100% { transform: rotateX(0); opacity: 1; }
}

/* 4. Category Banner Clip Reveal */
.banner-clip-reveal {
    clip-path: inset(0 6% 0 6%);
    transition: clip-path 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-clip-reveal.is-visible {
    clip-path: inset(0 0 0 0);
}

/* 5. Alternating Section Slide */
.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.is-visible,
.slide-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* 6. Image Blur-to-Sharp */
.blur-reveal {
    filter: blur(8px);
    opacity: 0.6;
    transform: scale(1.04);
    transition: filter 0.9s ease, opacity 0.9s ease, transform 0.9s ease;
}

.blur-reveal.is-sharp {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
}

/* 7. Section Divider Expand */
.section-divider {
    display: block;
    width: 0;
    height: 1px;
    margin: var(--space-xl) auto;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-divider.is-visible {
    width: 120px;
}

/* 8. Magnetic Card Tilt */
.magnetic-tilt {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.magnetic-tilt:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* 9. Button Ripple */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleExpand 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleExpand {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* 10. Product Gallery Zoom Lens */
.gallery-zoom-wrap {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-zoom-wrap img {
    transition: transform 0.15s ease-out;
    will-change: transform;
}

/* 11. Newsletter Entrance */
.newsletter-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.newsletter-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-reveal .newsletter-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.newsletter-reveal .newsletter-form {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.newsletter-reveal.is-visible .newsletter-title,
.newsletter-reveal.is-visible .newsletter-form {
    opacity: 1;
    transform: translateY(0);
}

/* 12. Footer Curtain Reveal */
.footer-curtain .footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-curtain.is-visible .footer-col:nth-child(1) { transition-delay: 0s; }
.footer-curtain.is-visible .footer-col:nth-child(2) { transition-delay: 0.1s; }
.footer-curtain.is-visible .footer-col:nth-child(3) { transition-delay: 0.2s; }
.footer-curtain.is-visible .footer-col:nth-child(4) { transition-delay: 0.3s; }
.footer-curtain.is-visible .footer-col:nth-child(5) { transition-delay: 0.4s; }

.footer-curtain.is-visible .footer-col {
    opacity: 1;
    transform: translateY(0);
}

/* ──────── Reduced Motion ──────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .scroll-progress { display: none; }
    .blur-reveal { filter: none; opacity: 1; transform: none; }
    .banner-clip-reveal { clip-path: none; }
    .hero-title .char { opacity: 1; transform: none; }
    .slide-in-left, .slide-in-right { opacity: 1; transform: none; }
    .newsletter-reveal, .newsletter-reveal .newsletter-title,
    .newsletter-reveal .newsletter-form { opacity: 1; transform: none; }
    .footer-curtain .footer-col { opacity: 1; transform: none; }
}

/* ──────── Buttons ──────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

.btn-gold:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-bg);
    box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-bg);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

/* ──────── Typography ──────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.section-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 640px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: var(--space-2xl);
}

.section-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.page-header {
    padding: var(--space-3xl) 0 var(--space-2xl);
}

/* ──────── Top Bar ──────── */
.top-bar {
    background: #1a1a1a;
    color: #ccc;
    padding: 0.4375rem 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

[data-theme="light"] .top-bar {
    background: #1a1a1a;
    color: #ccc;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar__text {
    margin: 0;
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.top-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #ccc;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.top-bar__link:hover {
    color: var(--color-gold);
}

/* ──────── Header ──────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-bg);
    transition: all var(--transition-base);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

/* ── Secondary Bar (links / logo / actions) ── */
.header-secondary {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--color-border);
}

.header-secondary__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-lg);
}

/* Secondary Nav (left) */
.header-secondary__nav {
    justify-self: start;
}

.secondary-menu {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.secondary-menu li a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.secondary-menu li a svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.secondary-menu li a:hover {
    color: var(--color-gold);
}

.secondary-menu li:first-child a {
    padding-left: 0;
}

/* Logo (center) */
.site-branding {
    justify-self: center;
    flex-shrink: 0;
}

.site-logo img {
    max-height: 80px;
    width: auto;
}

.site-title-link {
    text-decoration: none;
}

.site-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.site-title-link:hover .site-title {
    color: var(--color-gold);
}

/* Header Actions (right) */
.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ── Currency Switcher ── */
.currency-switcher {
    position: relative;
    z-index: 1000;
}
.currency-switcher__toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: var(--color-text);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.currency-switcher__toggle:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}
.currency-switcher__flag {
    font-size: 1rem;
    line-height: 1;
}
.currency-switcher__code {
    letter-spacing: 0.05em;
}
.currency-switcher__arrow {
    transition: transform 0.2s ease;
}
.currency-switcher.is-open .currency-switcher__arrow {
    transform: rotate(180deg);
}
.currency-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 240px;
    background: var(--color-bg-card, #141414);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    max-height: 380px;
    overflow-y: auto;
    padding: 6px;
    display: flex;
    flex-direction: column;
    z-index: 9999;
}
.currency-switcher.is-open .currency-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.currency-switcher__title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    padding: 8px 10px 4px;
}
.currency-switcher__option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    background: none;
    border: none;
    border-radius: 6px;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.15s ease;
    font-size: 0.8rem;
    text-align: left;
}
.currency-switcher__option:hover {
    background: rgba(255,255,255,0.06);
}
.currency-switcher__option.is-active {
    background: rgba(201, 168, 76, 0.12);
    color: var(--color-gold);
}
.currency-switcher__option-flag {
    font-size: 1.1rem;
    flex-shrink: 0;
}
.currency-switcher__option-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.currency-switcher__option-code {
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}
.currency-switcher__option-name {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
}
.currency-switcher__option.is-active .currency-switcher__option-name {
    color: rgba(201, 168, 76, 0.7);
}
.currency-switcher__option-symbol {
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}
.currency-switcher__option.is-active .currency-switcher__option-symbol {
    color: var(--color-gold);
}
/* Light theme adjustments */
[data-theme="light"] .currency-switcher__toggle {
    border-color: rgba(0,0,0,0.12);
}
[data-theme="light"] .currency-switcher__dropdown {
    background: #fff;
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
[data-theme="light"] .currency-switcher__option:hover {
    background: rgba(0,0,0,0.04);
}
[data-theme="light"] .currency-switcher__option-name {
    color: rgba(0,0,0,0.5);
}
[data-theme="light"] .currency-switcher__option-symbol {
    color: rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
    .currency-switcher__code { display: none; }
    .currency-switcher__dropdown { right: -60px; width: 220px; }
}

.header-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    min-width: 36px;
    height: 36px;
    padding: 0 0.375rem;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    text-decoration: none;
}

.header-action-btn:hover {
    color: var(--color-gold);
}

.header-action-btn--label {
    padding: 0 0.5rem;
}

.header-action-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-gold);
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

[data-theme="light"] .header-cart-count {
    color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    position: absolute;
    left: var(--container-padding);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Primary Navigation */
.primary-nav {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
}

.primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.primary-menu > li {
    position: relative;
}

.primary-menu > li > a {
    display: block;
    padding: 0.875rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
    position: relative;
}

.primary-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a {
    color: var(--color-gold);
}

.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after {
    transform: scaleX(1);
}

/* Dropdown / Sub-menu */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.primary-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 2nd & 3rd level sub-menus open to the right */
.primary-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    transform: translateX(10px);
}
.primary-menu .sub-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.primary-menu .sub-menu a {
    display: block;
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.primary-menu .sub-menu a:hover {
    color: var(--color-gold);
    background: rgba(201,168,76,0.05);
}

/* Brands Navigation */
.brands-nav {
    border-top: 1px solid var(--color-border);
    padding: 0.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.brands-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: 0;
    margin: 0;
    white-space: nowrap;
}

.brands-menu li a {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 0.375rem 0;
    transition: color var(--transition-fast);
}

.brands-menu li a:hover {
    color: var(--color-gold);
}

/* ──────── Search Overlay ──────── */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.search-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.search-overlay__inner {
    width: 100%;
    max-width: 700px;
    padding: var(--space-xl);
    position: relative;
}

.search-overlay__close {
    position: absolute;
    top: -60px;
    right: 0;
    color: var(--color-text);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.search-overlay__close:hover {
    opacity: 1;
}

.search-overlay__form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--color-gold);
}

.search-overlay__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--color-white);
    padding: 1rem 0;
}

.search-overlay__input::placeholder {
    color: var(--color-text-muted);
}

.search-overlay__submit {
    color: var(--color-gold);
    padding: 0.5rem;
}

/* ──────── Mobile Menu Drawer ──────── */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-bg-alt);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-drawer.is-active {
    transform: translateX(0);
}

.mobile-menu-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-drawer__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
}

.mobile-menu-drawer__close {
    color: var(--color-text);
}

.mobile-menu-drawer__body {
    flex: 1;
    padding: var(--space-md) 0;
}

.mobile-nav-menu,
.mobile-menu-drawer .primary-menu {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
}

.mobile-nav-menu li a,
.mobile-menu-drawer .primary-menu li a {
    display: block;
    padding: 0.875rem var(--space-lg);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li.current-menu-item a,
.mobile-menu-drawer .primary-menu li a:hover,
.mobile-menu-drawer .primary-menu li.current-menu-item a {
    color: var(--color-gold);
    padding-left: calc(var(--space-lg) + 0.5rem);
}

.mobile-nav-menu .sub-menu,
.mobile-menu-drawer .primary-menu .sub-menu {
    padding: 0;
    background: rgba(0,0,0,0.2);
}

.mobile-nav-menu .sub-menu a,
.mobile-menu-drawer .primary-menu .sub-menu a {
    padding-left: calc(var(--space-lg) + 1rem);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.mobile-menu-drawer__footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ──────── Hero Section ──────── */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center right;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero-text {
    animation: fadeInUp 1s ease forwards;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    padding: 0.375rem 1rem;
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-full);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
}

.hero-scroll-text {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.hero-scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50%      { opacity: 1; transform: scaleY(1.2); }
}

/* ──────── Home Sections ──────── */
.home-section {
    padding: var(--space-4xl) 0;
}

.home-section:nth-child(even) {
    background: var(--color-bg-alt);
}

/* ──────── Product Cards ──────── */
.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.product-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card__image-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--color-bg-elevated);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image {
    transform: scale(1.05);
}

.product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-elevated);
}

.product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    z-index: 1;
}

.product-card__badge--sale {
    background: var(--color-sale);
    color: var(--color-white);
}

.product-card__badge--new {
    background: var(--color-gold);
    color: var(--color-bg);
}

.product-card__badge--sold {
    background: var(--color-bg);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__quick-view {
    padding: 0.625rem 1.5rem;
    background: var(--color-white);
    color: var(--color-bg);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transform: translateY(10px);
    transition: transform var(--transition-base);
}

.product-card:hover .product-card__quick-view {
    transform: translateY(0);
}

.product-card__info {
    padding: 1rem 1.25rem 1.25rem;
}

.product-card__brand {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 0.375rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.product-card__ref {
    font-weight: 500;
}

.product-card__diameter {
    font-weight: 500;
}

.product-card__price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.product-card__price del {
    color: var(--color-text-muted);
    font-weight: 400;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.product-card__price ins {
    text-decoration: none;
    color: var(--color-gold);
}

/* Product Card — Add to Cart */
.product-card__actions {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

.product-card__add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.625rem 1rem;
    background: transparent;
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-sm);
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
}

.product-card__add-to-cart:hover {
    background: var(--color-gold);
    color: #000;
}

.product-card__add-to-cart.loading {
    pointer-events: none;
    opacity: 0.6;
}

.product-card__add-to-cart.added {
    background: #2ecc71;
    border-color: #2ecc71;
    color: #fff;
}

.product-card__add-to-cart.added::after {
    content: ' ✓';
}

/* Products Grid */
.products-grid {
    display: grid;
    gap: var(--space-lg);
    padding: 0;
    margin: 0;
    list-style: none;
}

.products-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ════════════════════════════════════════════
   SHOP PAGE — Premium Luxury Layout
   ════════════════════════════════════════════ */

/* ──── Shop Hero Banner ──── */
.shop-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
}

.shop-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.shop-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(200, 169, 90, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(200, 169, 90, 0.05) 0%, transparent 60%);
}

.shop-hero__bg::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(200, 169, 90, 0.06);
    border-radius: 50%;
    animation: heroCircle 20s linear infinite;
}

@keyframes heroCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.shop-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}

.shop-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.shop-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(200, 169, 90, 0.3);
    border-radius: 2px;
}

.shop-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.shop-hero__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0 0 2.5rem;
}

.shop-hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.shop-hero__stat {
    text-align: center;
}

.shop-hero__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.shop-hero__stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.shop-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(200, 169, 90, 0.2);
}

/* ──── Shop Page Entrance Animations ──── */
.shop-hero__content {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.shop-hero__label {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.shop-hero__stats {
    animation: fadeInUp 0.6s ease 0.5s both;
}

.shop-categories__header {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.shop-features {
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* ──── Category Showcase ──── */
.shop-categories {
    padding: 4rem 0;
    background: var(--color-bg);
}

.shop-categories__header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-categories__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-text);
    margin: 0 0 1rem;
    letter-spacing: 0.04em;
}

.shop-categories__line {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto;
}

.shop-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}

.shop-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease both;
}

.shop-cat-card:nth-child(1) { animation-delay: 0.3s; }
.shop-cat-card:nth-child(2) { animation-delay: 0.4s; }
.shop-cat-card:nth-child(3) { animation-delay: 0.5s; }
.shop-cat-card:nth-child(4) { animation-delay: 0.6s; }

.shop-cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 169, 90, 0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.shop-cat-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(200, 169, 90, 0.12);
}

.shop-cat-card:hover::before {
    opacity: 1;
}

.shop-cat-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    color: var(--color-gold);
    transition: transform 0.3s;
}

.shop-cat-card:hover .shop-cat-card__icon {
    transform: scale(1.1);
}

.shop-cat-card__icon svg {
    width: 100%;
    height: 100%;
}

.shop-cat-card__name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 0.375rem;
    letter-spacing: 0.03em;
}

.shop-cat-card__count {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.shop-cat-card__arrow {
    color: var(--color-gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

.shop-cat-card:hover .shop-cat-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ──── Category Hero (Category Pages) ──── */
.shop-cat-hero {
    position: relative;
    padding: 4rem 0;
    background: var(--color-bg-elevated);
    background-size: cover;
    background-position: center;
    min-height: 260px;
    display: flex;
    align-items: center;
}

.shop-cat-hero.has-image {
    min-height: 320px;
}

.shop-cat-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.shop-cat-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.shop-cat-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.75rem;
    letter-spacing: 0.04em;
}

.shop-cat-hero__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.shop-cat-hero__count {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 600;
}

/* ──── Active Filters Bar ──── */
.shop-active-filters {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0 0;
    flex-wrap: wrap;
}

.shop-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--color-text);
}

.shop-active-tag__remove {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1;
    transition: color 0.2s;
}

.shop-active-tag__remove:hover {
    color: var(--color-sale);
}

.shop-clear-filters {
    font-size: 0.8rem;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.shop-clear-filters:hover {
    opacity: 0.7;
}

/* ──── Shop Main Section ──── */
.shop-main {
    padding: 2.5rem 0 4rem;
}

/* Shop Layout — Sidebar + Content */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1.5rem;
}

/* ──── Sidebar ──── */
.shop-sidebar {
    position: sticky;
    top: calc(var(--header-height, 80px) + 1rem);
}

.shop-sidebar__inner {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
    overflow: hidden;
}

.shop-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.shop-sidebar__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
    margin: 0;
}

.shop-sidebar__title svg {
    color: var(--color-gold);
}

.shop-sidebar__close {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.shop-sidebar__close:hover {
    color: var(--color-text);
}

/* Filter Groups */
.shop-filter-group {
    border-bottom: 1px solid var(--color-border);
}

.shop-filter-group:last-child {
    border-bottom: none;
}

.shop-filter-toggle-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.shop-filter-toggle-heading:hover {
    color: var(--color-gold);
}

.shop-filter-toggle-heading svg {
    transition: transform 0.3s;
    color: var(--color-text-muted);
}

.shop-filter-toggle-heading[aria-expanded="false"] svg {
    transform: rotate(-90deg);
}

.shop-filter-toggle-heading[aria-expanded="false"] + .shop-filter-list {
    display: none;
}

.shop-filter-list {
    list-style: none;
    margin: 0;
    padding: 0 1.5rem 1rem;
}

.shop-filter-item {
    margin-bottom: 0.125rem;
}

.shop-filter-item a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.625rem;
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.shop-filter-item a:hover {
    color: var(--color-text);
    background: var(--color-bg-elevated);
}

.shop-filter-item.active a {
    color: var(--color-gold);
    font-weight: 500;
}

.shop-filter-item__check {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--color-border);
    border-radius: 3px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
}

.shop-filter-item.active .shop-filter-item__check {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.shop-filter-item.active .shop-filter-item__check::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.shop-filter-item a:hover .shop-filter-item__check {
    border-color: var(--color-gold);
}

.shop-filter-item__count {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.6;
}

/* Brand filter with expandable sub-models */
.shop-filter-item--brand {
    position: relative;
}

.shop-filter-item--brand > a {
    font-weight: 500;
    color: var(--color-text);
}

.shop-filter-item__expand {
    position: absolute;
    right: 0.5rem;
    top: 0.375rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-filter-item__expand:hover {
    color: var(--color-gold);
    background: var(--color-bg-elevated);
}

.shop-filter-item__expand svg {
    transition: transform 0.3s ease;
}

.shop-filter-item.expanded .shop-filter-item__expand svg,
.shop-filter-item__expand[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.shop-filter-sublist {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shop-filter-sublist .shop-filter-item a {
    font-size: 0.8125rem;
    padding: 0.375rem 0.625rem;
    font-weight: 400;
}

.shop-filter-sublist .shop-filter-item a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--color-border);
    border-radius: 50%;
    margin-right: 0.375rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.shop-filter-sublist .shop-filter-item a:hover::before,
.shop-filter-sublist .shop-filter-item.active a::before {
    background: var(--color-gold);
}

/* ──── Shop Content Area ──── */
.shop-content {
    min-width: 0;
}

/* Toolbar */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.shop-toolbar__left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-toolbar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Shop Search */
.shop-toolbar__search {
    flex: 1;
    max-width: 360px;
    min-width: 180px;
}

.shop-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.shop-search-form__icon {
    position: absolute;
    left: 0.75rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: color 0.2s;
}

.shop-search-form__input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 0.8rem;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.shop-search-form__input::placeholder {
    color: var(--color-text-muted);
}

.shop-search-form__input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(var(--color-gold-rgb, 212, 175, 55), 0.15);
}

.shop-search-form__input:focus + .shop-search-form__icon,
.shop-search-form:focus-within .shop-search-form__icon {
    color: var(--color-gold);
}

.shop-filter-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.shop-filter-toggle:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.shop-filter-toggle svg {
    color: var(--color-gold);
}

.shop-toolbar__count {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.shop-toolbar__count .woocommerce-result-count {
    margin: 0;
    padding: 0;
}

/* Sort dropdown styling */
.shop-toolbar__sort .woocommerce-ordering {
    margin: 0;
}

.shop-toolbar__sort select,
.shop-toolbar__sort .orderby {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    color: var(--color-text);
    font-size: 0.8rem;
    font-family: var(--font-body);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color 0.2s;
}

.shop-toolbar__sort select:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* View Toggle */
.shop-view-toggle {
    display: flex;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.shop-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 36px;
    background: var(--color-bg-elevated);
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.shop-view-btn:first-child {
    border-right: 1px solid var(--color-border);
}

.shop-view-btn.active,
.shop-view-btn:hover {
    color: var(--color-gold);
    background: var(--color-bg-card);
}

/* ──── Products Grid ──── */
.shop-products-grid .products,
ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    float: none !important;
    width: 100% !important;
}

/* Override WooCommerce default float layout */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.shop-products-grid .products li.product {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    clear: none !important;
}

.shop-products-grid .products::before,
.shop-products-grid .products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
    display: none !important;
}
    list-style: none;
}

/* List view */
.shop-products-grid.view-list .products,
.shop-products-grid.view-list ul.products {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.shop-products-grid.view-list .product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
}

.shop-products-grid.view-list .product-card__link {
    display: contents;
}

.shop-products-grid.view-list .product-card__image-wrap {
    aspect-ratio: 1/1;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.shop-products-grid.view-list .product-card__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.shop-products-grid.view-list .product-card__title {
    font-size: 1.125rem;
    -webkit-line-clamp: unset;
}

/* ──── Pagination ──── */
.shop-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.shop-pagination .woocommerce-pagination {
    margin: 0;
}

.shop-pagination ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-pagination ul li {
    margin: 0;
}

.shop-pagination ul li a,
.shop-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg-card);
    color: var(--color-text);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}

.shop-pagination ul li a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.shop-pagination ul li span.current {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
    font-weight: 600;
}

/* ──── Empty State ──── */
.shop-empty {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.shop-empty__icon {
    color: var(--color-text-muted);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.shop-empty__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin: 0 0 0.75rem;
}

.shop-empty__text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    max-width: 400px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ──── Shop Features ──── */
.shop-features {
    padding: 4rem 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.shop-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.shop-feature {
    text-align: center;
    padding: 2rem 1rem;
}

.shop-feature__icon {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.shop-feature__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
}

.shop-feature__text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ──── Shop Sidebar Overlay (Mobile) ──── */
.shop-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.shop-sidebar-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ════════════════════════════════════════════
   SHOP PAGE — Responsive
   ════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        z-index: 1000;
        background: var(--color-bg);
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        border-right: 1px solid var(--color-border);
    }

    .shop-sidebar.is-open {
        left: 0;
    }

    .shop-sidebar__close {
        display: flex;
    }

    .shop-filter-toggle {
        display: flex;
    }

    .shop-toolbar__search {
        order: 10;
        flex-basis: 100%;
        max-width: none;
    }

    .shop-products-grid .products,
    ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-hero {
        padding: 3rem 0 2.5rem;
        min-height: 300px;
    }

    .shop-hero__stats {
        gap: 1.25rem;
    }

    .shop-hero__stat-number {
        font-size: 1.5rem;
    }

    .shop-categories__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .shop-cat-card {
        padding: 1.25rem 0.75rem;
    }

    .shop-cat-card__icon {
        width: 36px;
        height: 36px;
    }

    .shop-products-grid .products,
    ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .shop-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .shop-feature {
        padding: 1.5rem 0.75rem;
    }

    .shop-toolbar {
        padding: 0.75rem 1rem;
    }

    .shop-view-toggle {
        display: none;
    }

    .shop-products-grid.view-list .product-card {
        grid-template-columns: 120px 1fr;
    }
}

@media (max-width: 480px) {
    .shop-hero__text {
        font-size: 0.9rem;
    }

    .shop-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-products-grid .products,
    ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-card__info {
        padding: 0.75rem;
    }

    .product-card__title {
        font-size: 0.85rem;
    }

    .product-card__price {
        font-size: 0.875rem;
    }

    .shop-features__grid {
        grid-template-columns: 1fr 1fr;
    }

    .shop-cat-hero {
        padding: 3rem 0;
    }
}

/* ──────── Product Carousel ──────── */
.product-carousel-wrapper {
    position: relative;
}

.product-carousel .swiper-slide {
    height: auto;
}

.product-carousel .product-card {
    height: 100%;
}

.product-carousel__prev,
.product-carousel__next {
    color: var(--color-white) !important;
    background: var(--color-bg-elevated) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: var(--radius-full) !important;
    border: 1px solid var(--color-border) !important;
    transition: all var(--transition-fast) !important;
}

.product-carousel__prev::after,
.product-carousel__next::after {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.product-carousel__prev:hover,
.product-carousel__next:hover {
    background: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
    color: var(--color-bg) !important;
}

.product-carousel__pagination .swiper-pagination-bullet {
    background: var(--color-text-muted);
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

.product-carousel__pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
    opacity: 1;
    width: 24px;
    border-radius: var(--radius-full);
}

/* ════════════════════════════════════════════
   SINGLE PRODUCT PAGE — Premium Layout
   ════════════════════════════════════════════ */

.single-product-page {
    padding: 2rem 0 4rem;
}

/* ──── Product Layout ──── */
.single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.single-product-layout > * {
    min-width: 0;
}

/* ──── Product Gallery ──── */
.product-gallery {
    position: sticky;
    top: calc(var(--header-height, 80px) + 2rem);
    overflow: hidden;
}

.product-gallery-main {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-elevated);
    position: relative;
    max-height: 480px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}

.product-gallery-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 460px;
}

.product-gallery__image {
    width: 100%;
    height: auto;
    max-height: 420px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    padding: 1rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-gallery-main:hover .product-gallery__image {
    transform: scale(1.05);
}

.product-gallery__zoom {
    display: block;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
}

/* Gallery Frame / Border — Subtle thin inner line */
.product-gallery-main::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(200, 169, 90, 0.08);
    border-radius: calc(var(--radius-lg) - 2px);
    z-index: 2;
    pointer-events: none;
    transition: border-color 0.4s;
}

.product-gallery-main:hover::before {
    border-color: rgba(200, 169, 90, 0.2);
}

/* Corner Accents — Thinner */
.product-gallery-main::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 24px;
    height: 24px;
    border-top: 1px solid var(--color-gold);
    border-left: 1px solid var(--color-gold);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-gallery-main:hover::after {
    opacity: 1;
}

.product-gallery__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background: var(--color-bg-elevated);
}

/* Swiper Navigation */
.product-gallery-main .swiper-button-prev,
.product-gallery-main .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff !important;
    opacity: 0;
    transition: all 0.3s;
}

.product-gallery-main .swiper-button-prev::after,
.product-gallery-main .swiper-button-next::after {
    font-size: 14px !important;
    font-weight: 700;
}

.product-gallery-main:hover .swiper-button-prev,
.product-gallery-main:hover .swiper-button-next {
    opacity: 1;
}

.product-gallery-main .swiper-button-prev:hover,
.product-gallery-main .swiper-button-next:hover {
    background: var(--color-gold);
    color: #000 !important;
}

/* Thumbnail Gallery */
.product-gallery-thumbs {
    margin-top: 1rem;
    padding: 0 0.25rem;
}

.product-gallery-thumbs .swiper-slide {
    cursor: pointer;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    opacity: 0.5;
    transition: all 0.3s;
    background: var(--color-bg-elevated);
}

.product-gallery-thumbs .swiper-slide-thumb-active,
.product-gallery-thumbs .swiper-slide:hover {
    border-color: var(--color-gold);
    opacity: 1;
}

.product-gallery-thumbs__image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

/* ──── Product Details ──── */
.product-details {
    padding-top: 0.5rem;
}

.product-details__brand {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    padding: 0.375rem 0.875rem;
    border: 1px solid rgba(200, 169, 90, 0.3);
    border-radius: 2px;
}

.product-details__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--color-text);
    margin: 0 0 0.75rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.product-details__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0 0 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.product-details__ref,
.product-details__diameter {
    font-weight: 500;
}

.product-details__ref::before {
    content: 'Ref. ';
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Price */
.product-details__price {
    margin-bottom: 1.5rem;
}

.product-details__price .price,
.product-details__price .woocommerce-Price-amount {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 0.02em;
}

.product-details__price del .woocommerce-Price-amount {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.product-details__price ins {
    text-decoration: none;
}

/* Short Description */
.product-details__short-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.product-details__short-desc p {
    margin: 0 0 0.5rem;
}

/* ──── Specifications Table ──── */
.product-specs {
    margin-bottom: 2rem;
}

.product-specs__title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    margin: 0 0 1rem;
}

.product-specs__table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs__table tr {
    border-bottom: 1px solid var(--color-border);
    transition: background 0.2s;
}

.product-specs__table tr:hover {
    background: var(--color-bg-elevated);
}

.product-specs__table th {
    text-align: left;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 0.75rem 1rem 0.75rem 0;
    width: 40%;
    letter-spacing: 0.03em;
}

.product-specs__table td {
    font-size: 0.875rem;
    color: var(--color-text);
    padding: 0.75rem 0;
    font-weight: 500;
}

/* ──── Variation Selector ──── */
.variation-selector {
    margin-bottom: 1.5rem;
}

.variation-selector__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin: 0 0 0.75rem;
}

.variation-selector__title svg {
    color: var(--color-gold);
}

.variation-option {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 0.5rem;
    background: var(--color-bg-elevated);
    position: relative;
}

.variation-option:last-child {
    margin-bottom: 0;
}

.variation-option:hover {
    border-color: rgba(200, 169, 90, 0.5);
}

.variation-option.is-selected {
    border-color: var(--color-gold);
    background: rgba(200, 169, 90, 0.06);
    box-shadow: 0 0 0 1px var(--color-gold);
}

.variation-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.variation-option__radio {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all 0.25s ease;
}

.variation-option.is-selected .variation-option__radio {
    border-color: var(--color-gold);
}

.variation-option.is-selected .variation-option__radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

.variation-option__icon {
    display: flex;
    color: var(--color-text-muted);
    transition: color 0.25s;
}

.variation-option.is-selected .variation-option__icon {
    color: var(--color-gold);
}

.variation-option__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 1rem;
}

.variation-option__label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

.variation-option__price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    font-family: 'Playfair Display', serif;
}

/* ──── Add to Cart ──── */
.product-details__actions {
    margin-bottom: 2rem;
}

.product-add-to-cart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-details__cart-row {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-bg-elevated);
}

.qty-btn {
    width: 44px;
    height: 48px;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--color-gold);
    color: #000;
}

.qty-input {
    width: 48px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    font-family: var(--font-body);
    -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    min-height: 48px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.add-to-cart-btn:hover::before {
    transform: translateX(100%);
}

.product-details__out-of-stock {
    padding: 1rem 1.5rem;
    background: rgba(200, 50, 50, 0.1);
    border: 1px solid rgba(200, 50, 50, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-sale);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ──── Trust Badges ──── */
.product-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.trust-badge svg {
    color: var(--color-gold);
}

.trust-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ──── Full Description ──── */
.product-full-desc {
    margin-top: 3.5rem;
    padding: 2.5rem 2rem 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
    position: relative;
    overflow: hidden;
}

.product-full-desc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.product-full-desc__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.product-full-desc__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    color: var(--color-gold);
    flex-shrink: 0;
}

.product-full-desc__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin: 0;
    letter-spacing: 0.03em;
}

.product-full-desc__content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 900px;
}

.product-full-desc__content p {
    margin: 0 0 1rem;
}

/* Description inner sections (Specifications / Shipping) */
.product-full-desc__content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-gold);
    margin: 2rem 0 1rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--color-gold);
    letter-spacing: 0.03em;
}

.product-full-desc__content h3:first-child {
    margin-top: 0;
}

.product-full-desc__content ul,
.product-full-desc__content ol {
    padding-left: 0;
    list-style: none;
    margin: 0 0 1.5rem;
}

.product-full-desc__content li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s ease, padding-left 0.3s ease;
}

.product-full-desc__content li:last-child {
    border-bottom: none;
}

.product-full-desc__content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
}

.product-full-desc__content li:hover {
    background: rgba(201, 168, 76, 0.04);
    padding-left: 1.75rem;
}

.product-full-desc__content li:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.3);
}

/* ──── Product FAQ Section ──── */
.product-faq {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}
.product-faq .section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    color: var(--color-text);
    margin: 0 0 2rem;
    letter-spacing: 0.04em;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--color-gold);
}
.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-gold);
}
.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.is-open {
    max-height: 500px;
}
.faq-answer p {
    padding: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

/* ──── Related Products ──── */
.related-products {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.related-products .section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    color: var(--color-text);
    margin: 0 0 2rem;
    letter-spacing: 0.04em;
}

.related-products .products-grid {
    gap: 1.5rem;
}

/* ════════════════════════════════════════════
   SINGLE PRODUCT — Animations
   ════════════════════════════════════════════ */

/* Gallery entrance */
@keyframes gallerySlideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes detailsSlideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes specRowReveal {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.single-product-page .product-gallery {
    animation: gallerySlideIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.single-product-page .product-details {
    animation: detailsSlideIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}

.product-details__brand {
    animation: fadeInUp 0.5s ease 0.3s both;
}

.product-details__title {
    animation: fadeInUp 0.5s ease 0.4s both;
}

.product-details__price {
    animation: fadeInUp 0.5s ease 0.5s both;
}

.product-specs {
    animation: fadeInUp 0.5s ease 0.55s both;
}

.product-specs__table tr {
    animation: specRowReveal 0.4s ease both;
}

.product-specs__table tr:nth-child(1) { animation-delay: 0.6s; }
.product-specs__table tr:nth-child(2) { animation-delay: 0.65s; }
.product-specs__table tr:nth-child(3) { animation-delay: 0.7s; }
.product-specs__table tr:nth-child(4) { animation-delay: 0.75s; }
.product-specs__table tr:nth-child(5) { animation-delay: 0.8s; }
.product-specs__table tr:nth-child(6) { animation-delay: 0.85s; }

.product-details__actions {
    animation: fadeInUp 0.5s ease 0.65s both;
}

.product-trust {
    animation: fadeInUp 0.5s ease 0.75s both;
}

.trust-badge {
    transition: all 0.3s;
}

.trust-badge:hover {
    transform: translateY(-3px);
}

.trust-badge:hover svg {
    animation: trustBadgePulse 0.5s ease;
}

@keyframes trustBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.product-full-desc {
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* Description content items staggered reveal */
.product-full-desc__content h3 {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-full-desc__content li {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, padding-left 0.3s ease;
}

.product-full-desc.is-revealed .product-full-desc__content h3,
.product-full-desc.is-revealed .product-full-desc__content li {
    opacity: 1;
    transform: none;
}

/* FAQ items staggered reveal */
.product-faq .faq-item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-faq.is-revealed .faq-item {
    opacity: 1;
    transform: none;
}

.product-faq.is-revealed .faq-item:nth-child(1) { transition-delay: 0.1s; }
.product-faq.is-revealed .faq-item:nth-child(2) { transition-delay: 0.2s; }
.product-faq.is-revealed .faq-item:nth-child(3) { transition-delay: 0.3s; }
.product-faq.is-revealed .faq-item:nth-child(4) { transition-delay: 0.4s; }
.product-faq.is-revealed .faq-item:nth-child(5) { transition-delay: 0.5s; }

/* Gallery image hover glow */
.product-gallery-main {
    transition: box-shadow 0.5s ease;
}

.product-gallery-main:hover {
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.08), 0 0 0 1px rgba(255,255,255,0.04);
}

/* Specs table row hover */
.product-specs__table tr {
    transition: background 0.3s ease;
}

.product-specs__table tr:hover {
    background: rgba(201, 168, 76, 0.04);
}

.product-specs__table tr:hover th {
    color: var(--color-gold);
}

.related-products {
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Gallery image shimmer on load */
@keyframes imageShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.product-gallery-main .swiper-slide {
    position: relative;
}

/* Scroll-reveal activated state */
.product-full-desc.is-revealed,
.product-faq.is-revealed,
.related-products.is-revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Add to cart button states */
.add-to-cart-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.add-to-cart-btn.added {
    background: #2a7f2a !important;
    border-color: #2a7f2a !important;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.add-to-cart-btn .spin {
    animation: spin 0.8s linear infinite;
}

/* ════════════════════════════════════════════
   SINGLE PRODUCT — Responsive
   ════════════════════════════════════════════ */

@media (max-width: 992px) {
    .single-product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .product-gallery-main {
        max-height: 400px;
    }

    .product-gallery__image {
        max-height: 360px;
    }

    .product-details__title {
        font-size: 1.5rem;
    }

    .product-trust {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-products .products-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .single-product-page {
        padding: 1rem 0 3rem;
    }

    .product-gallery__image {
        max-height: 400px;
        padding: 1rem;
    }

    .product-gallery-main::before {
        inset: 3px;
    }

    .product-full-desc {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .product-add-to-cart {
        flex-direction: column;
    }

    .quantity-selector {
        justify-content: center;
    }

    .product-details__price .woocommerce-Price-amount {
        font-size: 1.4rem;
    }

    .product-trust {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .trust-badge {
        flex-direction: row;
        text-align: left;
    }

    .related-products .products-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* ──────── Category Banner ──────── */
.category-banner {
    position: relative;
    padding: var(--space-4xl) 0;
    background-color: var(--color-bg-alt);
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}

.category-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.category-banner--dark {
    background-color: #0d0d0d;
}

.category-banner--gold .category-banner__overlay {
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(0,0,0,0.8));
}

.category-banner__content {
    position: relative;
    z-index: 1;
}

.category-banner__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.category-banner__subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

/* ──────── Countdown Timer ──────── */
.countdown-section {
    background: linear-gradient(135deg, var(--color-bg-alt), #1a1510);
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.countdown-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.countdown-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(201,168,76,0.1);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(201,168,76,0.2);
    margin-bottom: var(--space-sm);
}

.countdown-title {
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.countdown-desc {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.countdown-unit {
    text-align: center;
    min-width: 70px;
}

.countdown-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.countdown-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.5;
    line-height: 1;
    margin-top: -0.75rem;
}

/* ──────── Brand Bar ──────── */
.brand-bar {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    overflow: hidden;
}

.brand-bar__title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-2xl);
    color: var(--color-text-muted);
    font-weight: 400;
}

.brand-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brand-marquee__track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.brand-marquee__track:hover {
    animation-play-state: paused;
}

.brand-marquee__item {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.5;
    transition: opacity var(--transition-base), color var(--transition-base);
    cursor: default;
    white-space: nowrap;
    padding: var(--space-sm) 0;
}

.brand-marquee__item:hover {
    opacity: 1;
    color: var(--color-gold);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ──────── Newsletter ──────── */
.newsletter-section {
    background: linear-gradient(135deg, #1a1510, var(--color-bg-alt));
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--color-border);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.newsletter-title {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.newsletter-desc {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    max-width: 500px;
}

.newsletter-form__group {
    display: flex;
    gap: 0;
    max-width: 460px;
}

.newsletter-form__input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--color-white);
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-form__input:focus {
    border-color: var(--color-gold);
}

.newsletter-form__input::placeholder {
    color: var(--color-text-muted);
}

.newsletter-form__btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    white-space: nowrap;
}

/* Newsletter Standalone */
.newsletter-standalone {
    padding: var(--space-4xl) 0;
    text-align: center;
    background: var(--color-bg-alt);
}

.newsletter-standalone__inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-standalone__icon {
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.newsletter-standalone__title {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.newsletter-standalone__desc {
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
}

.newsletter-standalone__group {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
}

.newsletter-standalone__input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--color-white);
    outline: none;
}

.newsletter-standalone__input:focus {
    border-color: var(--color-gold);
}

.newsletter-standalone__input::placeholder {
    color: var(--color-text-muted);
}

.newsletter-standalone__group .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ──────── Footer ──────── */
.site-footer {
    background: var(--color-bg);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-col__title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-address {
    margin-bottom: var(--space-lg);
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}
.footer-address__link {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-address__link:hover {
    color: var(--color-gold);
}

.footer-social {
    margin-top: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.social-link:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background: rgba(201,168,76,0.08);
}

.footer-menu {
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.625rem;
}

.footer-menu a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-menu a:hover {
    color: var(--color-gold);
}

/* Footer Trust Badges */
.footer-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
}
.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-trust-badge svg {
    color: var(--color-gold);
    flex-shrink: 0;
}
.footer-trust-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.footer-trust-badge__text strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.06em;
}
.footer-trust-badge__text span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

/* Payment Icons */
.footer-payments {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.payment-icon {
    opacity: 0.7;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.payment-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.payment-icon svg {
    display: block;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: var(--space-lg);
    text-align: center;
}

.copyright {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ──────── Back to Top ──────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 99;
    cursor: pointer;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

/* ──────── Breadcrumb ──────── */
.breadcrumb {
    padding: var(--space-md) 0;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-item {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin: 0 0.5rem;
    color: var(--color-border-light);
}

.breadcrumb-item a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--color-gold);
}

.breadcrumb-item.active {
    color: var(--color-text-light);
}

/* ──────── Blog ──────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.blog-card__image-wrap {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 1.25rem;
}

.blog-card__date {
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-card__title {
    font-size: 1.125rem;
    margin: 0.5rem 0;
    line-height: 1.3;
}

.blog-card__title a {
    color: var(--color-white);
}

.blog-card__title a:hover {
    color: var(--color-gold);
}

.blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Single Article */
.single-post-page {
    padding-bottom: var(--space-4xl);
}

.single-article {
    max-width: 800px;
    margin: 0 auto;
}

.single-article__header {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.single-article__date {
    font-size: 0.8125rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.single-article__title {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.single-article__excerpt {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
}

.single-article__featured {
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.single-article__image {
    width: 100%;
    height: auto;
}

.single-article__content {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.entry-content h2 { font-size: 1.75rem; margin: 2rem 0 1rem; }
.entry-content h3 { font-size: 1.375rem; margin: 1.5rem 0 0.75rem; }
.entry-content p  { margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { margin: 1rem 0 1.25rem 1.5rem; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content blockquote {
    border-left: 3px solid var(--color-gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--color-text-light);
}
.entry-content img {
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.single-article__footer {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.single-article__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.tag-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.tag-badge:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.post-navigation__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.post-navigation__link {
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.post-navigation__link:hover {
    border-color: var(--color-gold);
}

.post-navigation__link--next {
    text-align: right;
}

.post-navigation__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.post-navigation__title {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.3;
}

/* ──────── About Page ──────── */
.about-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-bg-alt);
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.about-hero__content {
    position: relative;
    z-index: 1;
}

.about-hero__title {
    font-size: 3rem;
}

.about-hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: 0.75rem;
    max-width: 600px;
}

.about-content {
    padding: var(--space-4xl) 0;
}

.about-content__text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.about-values {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.value-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.value-card__icon {
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.value-card__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.value-card__desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ──────── Contact Page ──────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    padding: var(--space-2xl) 0 var(--space-4xl);
}

.contact-info__item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-info__icon {
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 2px;
}

.contact-info__label {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.contact-info__text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.contact-info__text a {
    color: var(--color-text-muted);
}

.contact-info__text a:hover {
    color: var(--color-gold);
}

.contact-form-wrap {
    background: var(--color-bg-card);
    padding: var(--space-2xl);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.contact-form__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group .required {
    color: var(--color-gold);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-map {
    margin-top: var(--space-3xl);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.contact-map__embed iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(1) invert(0.92) contrast(0.83);
}

/* ──────── FAQ Page ──────── */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: var(--space-3xl);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.is-open {
    border-color: var(--color-gold);
}

.faq-item__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--color-bg-card);
    cursor: pointer;
    text-align: left;
    transition: background var(--transition-fast);
}

.faq-item__toggle:hover {
    background: var(--color-bg-elevated);
}

.faq-item__question {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

.faq-item__icon {
    flex-shrink: 0;
    color: var(--color-gold);
    transition: transform var(--transition-base);
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 1.5rem 1.25rem;
    background: var(--color-bg-card);
}

.faq-item__answer[hidden] {
    display: none;
}

.faq-item__answer p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--color-border);
}

.faq-cta__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.faq-cta__desc {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

/* ──────── Brands Page ──────── */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    padding: var(--space-2xl) 0;
}

.brand-card {
    display: block;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-base);
    padding: var(--space-2xl) var(--space-lg);
}

.brand-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.brand-card__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    margin-bottom: var(--space-md);
}

.brand-card__image {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand-card:hover .brand-card__image {
    filter: brightness(0) invert(0.78) sepia(1) saturate(2) hue-rotate(15deg);
}

.brand-card__name-large {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.brand-card:hover .brand-card__name-large {
    color: var(--color-gold);
}

.brand-card__name {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.brand-card__count {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ──────── 404 Page ──────── */
.page-404 {
    padding: var(--space-4xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.page-404__icon {
    margin-bottom: var(--space-lg);
}

.page-404__title {
    font-size: 8rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0;
}

.page-404__subtitle {
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.page-404__desc {
    color: var(--color-text-muted);
    max-width: 480px;
    margin: 0 auto var(--space-2xl);
}

.page-404__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.page-404__search {
    max-width: 460px;
    margin: 0 auto;
}

.page-404__search form {
    display: flex;
    gap: 0;
}

.page-404__search-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--color-white);
    outline: none;
}

.page-404__search .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ──────── Search Results ──────── */
.search-results-page {
    padding-bottom: var(--space-4xl);
}

.search-refine {
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.search-refine form {
    display: flex;
    gap: 0;
}

.search-refine__input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--color-white);
    outline: none;
}

.search-refine .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.search-result-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast);
}

.search-result-item:hover {
    border-color: var(--color-gold);
}

.search-result-item__image {
    flex-shrink: 0;
    width: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.search-result-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-item__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.search-result-item__title a {
    color: var(--color-white);
}

.search-result-item__title a:hover {
    color: var(--color-gold);
}

.search-result-item__excerpt {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.search-result-item__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-gold);
}

/* ──────── General Page ──────── */
.page-default {
    padding-bottom: var(--space-4xl);
}

.page-content .entry-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}

/* ──────── No Results ──────── */
.no-results {
    padding: var(--space-4xl) 0;
}

.no-results h2 {
    font-size: 1.5rem;
    margin: var(--space-lg) 0 var(--space-sm);
}

.no-results p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

/* ──────── Pagination ──────── */
.blog-pagination,
.search-pagination {
    padding: var(--space-2xl) 0 0;
    text-align: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.nav-links a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.nav-links .current {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg);
}

/* ═══════════════════════════════════════════
   NEW FEATURES CSS
   ═══════════════════════════════════════════ */

/* ── Enhanced Product Badges ── */
.product-card__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 3;
}
.product-gallery__badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}
.product-card__badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
    line-height: 1.5;
}
.badge--sale {
    background: #e74c3c;
    color: #fff;
}
.badge--new {
    background: var(--color-gold);
    color: #000;
}
.badge--bestseller {
    background: linear-gradient(135deg, #C9A84C, #E8D48B);
    color: #000;
}
.badge--soldout {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
}
.badge--limited {
    background: #e67e22;
    color: #fff;
    animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ── Wishlist Button (Product Card) ── */
.product-card__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
.product-card:hover .product-card__wishlist {
    opacity: 1;
    transform: translateY(0);
}
.product-card__wishlist.is-active {
    opacity: 1;
    transform: translateY(0);
    color: #e74c3c;
    background: rgba(231,76,60,0.15);
    border-color: rgba(231,76,60,0.3);
}
.product-card__wishlist:hover {
    transform: scale(1.1) translateY(0);
}

/* ── Quick View Button (Product Card) ── */
.product-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
}
.product-card:hover .product-card__overlay {
    opacity: 1;
    transform: translateY(0);
}
.product-card__quick-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s ease;
}
.product-card__quick-view:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000;
}

/* ── Product Card - Separated Link Structure ── */
.product-card__image-wrap {
    position: relative;
    overflow: hidden;
}
.product-card__image-link {
    display: block;
}
.product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.product-card__actions {
    padding: 0 15px 15px;
}

/* ── Stock Urgency Indicator ── */
.stock-urgency {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 6px;
    color: #e74c3c;
    font-size: 0.82rem;
}
.stock-urgency svg {
    flex-shrink: 0;
    animation: urgency-flash 1.5s ease-in-out infinite;
}
@keyframes urgency-flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.stock-urgency__text {
    flex: 1;
}
.stock-urgency__bar {
    width: 100%;
    height: 3px;
    background: rgba(231, 76, 60, 0.15);
    border-radius: 2px;
    overflow: hidden;
}
.stock-urgency__fill {
    height: 100%;
    background: #e74c3c;
    border-radius: 2px;
    transition: width 1s ease;
}

/* ── Product Image Zoom ── */
.product-gallery__zoom-wrap {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}
.product-gallery__zoom-wrap:hover .product-gallery__image {
    transform: scale(1.8);
    transition: transform 0.1s ease-out;
}
.product-gallery__zoom-wrap .product-gallery__image {
    transform-origin: center center;
    transition: transform 0.3s ease;
}
.product-gallery__zoom-lens {
    display: none;
}

/* Disable zoom on touch/mobile devices */
@media (max-width: 768px), (hover: none) {
    .gallery-zoom-wrap {
        cursor: default;
    }
    .gallery-zoom-wrap img {
        transform: none !important;
    }
    .product-gallery__zoom-wrap {
        cursor: default;
    }
    .product-gallery__zoom-wrap:hover .product-gallery__image {
        transform: none;
    }
    .product-gallery__zoom-wrap .product-gallery__image {
        transform: none !important;
    }
}

/* ── Wishlist & Share (Product Page) ── */
.product-social-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.product-wishlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.product-wishlist-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}
.product-wishlist-btn.is-active {
    color: #e74c3c;
    border-color: rgba(231,76,60,0.3);
    background: rgba(231,76,60,0.08);
}
.product-share {
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-share__label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.product-share__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.product-share__btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000;
}
.product-share__copy {
    position: relative;
}
.product-share__copy.copied::after {
    content: 'Copied!';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    animation: fadeUpOut 1.5s ease forwards;
}
@keyframes fadeUpOut {
    0% { opacity: 1; transform: translateX(-50%) translateY(-5px); }
    70% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(-15px); }
}

/* ── Sticky Add-to-Cart Bar ── */
.sticky-atc-bar {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    z-index: 999;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 0;
}
.sticky-atc-bar.is-visible {
    bottom: 0;
}
.sticky-atc-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.sticky-atc-bar__product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.sticky-atc-bar__image {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.sticky-atc-bar__info {
    min-width: 0;
}
.sticky-atc-bar__name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}
.sticky-atc-bar__price {
    font-size: 0.8rem;
    color: var(--color-gold);
}
.sticky-atc-bar__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ── Quick View Modal ── */
.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.quick-view-modal.is-open {
    display: flex;
}
.quick-view-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
}
.quick-view-modal__content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: var(--color-bg-card, #141414);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    animation: modalSlideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.quick-view-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.quick-view-modal__close:hover {
    background: var(--color-gold);
    color: #000;
}
.quick-view-modal__body {
    padding: 0;
}
.quick-view-modal__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.quick-view__inner {
    display: flex;
    flex-direction: row;
}
.quick-view__image {
    width: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    flex-shrink: 0;
}
.quick-view__info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quick-view__brand {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 6px;
}
.quick-view__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}
.quick-view__price {
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}
.quick-view__desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}
.quick-view__actions {
    display: flex;
    gap: 10px;
}
.quick-view__actions .btn {
    flex: 1;
    text-align: center;
    font-size: 0.82rem;
    padding: 10px 20px;
}
@media (max-width: 600px) {
    .quick-view__inner { flex-direction: column; }
    .quick-view__image { width: 100%; }
}

/* ── Exit Intent Popup ── */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}
.exit-popup.is-open {
    display: flex;
}
.exit-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}
.exit-popup__content {
    position: relative;
    width: 90%;
    max-width: 420px;
    background: var(--color-bg-card, #141414);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    animation: modalSlideUp 0.4s ease;
}
.exit-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.exit-popup__close:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.exit-popup__icon {
    margin-bottom: 20px;
}
.exit-popup__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}
.exit-popup__text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}
.exit-popup__code {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.1);
    border: 2px dashed var(--color-gold);
    padding: 12px 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.exit-popup__code span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.1em;
}
.exit-popup__copy {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: color 0.2s ease;
}
.exit-popup__copy:hover {
    color: var(--color-gold);
}
.exit-popup__shop {
    display: block;
    width: 100%;
    margin-bottom: 12px;
}
.exit-popup__dismiss {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}
.exit-popup__dismiss:hover {
    color: rgba(255,255,255,0.6);
}

/* ── Exit Popup – Light Theme ── */
[data-theme="light"] .exit-popup__content {
    background: #fff;
    border-color: rgba(168,139,60,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
[data-theme="light"] .exit-popup__close {
    color: rgba(0,0,0,0.4);
    border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .exit-popup__close:hover {
    color: #1a1a1a;
    border-color: rgba(0,0,0,0.25);
}
[data-theme="light"] .exit-popup__icon svg circle {
    stroke: #A88B3C;
}
[data-theme="light"] .exit-popup__icon svg line,
[data-theme="light"] .exit-popup__icon svg polyline {
    stroke: #A88B3C;
}
[data-theme="light"] .exit-popup__title {
    color: #1a1a1a;
}
[data-theme="light"] .exit-popup__text {
    color: #555;
}
[data-theme="light"] .exit-popup__code {
    background: rgba(168,139,60,0.08);
    border-color: #A88B3C;
}
[data-theme="light"] .exit-popup__copy {
    color: rgba(0,0,0,0.4);
}
[data-theme="light"] .exit-popup__copy:hover {
    color: #A88B3C;
}
[data-theme="light"] .exit-popup__dismiss {
    color: rgba(0,0,0,0.4);
}
[data-theme="light"] .exit-popup__dismiss:hover {
    color: rgba(0,0,0,0.6);
}

/* ── Cookie Consent – Light Theme ── */
[data-theme="light"] .cookie-consent {
    background: rgba(255,255,255,0.97);
    border-top-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .cookie-consent p {
    color: #333;
}
[data-theme="light"] .cookie-consent a {
    color: #A88B3C;
}

/* ── Cookie Consent Banner ── */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(20, 20, 20, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px 0;
}
.cookie-consent.is-visible {
    transform: translateY(0);
}
.cookie-consent__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-consent__text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.cookie-consent__text svg {
    flex-shrink: 0;
    color: var(--color-gold);
}
.cookie-consent__text p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.5;
}
.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-consent__accept {
    padding: 8px 24px;
    font-size: 0.8rem;
}
.cookie-consent__decline {
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.cookie-consent__decline:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 997;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsapp-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes whatsapp-ping {
    0% { transform: scale(1); opacity: 0.6; }
    75%, 100% { transform: scale(1.4); opacity: 0; }
}

/* ── Testimonials Section ── */
.home-section--testimonials {
    padding: 80px 0;
    background: rgba(201,168,76,0.02);
}
.testimonials-carousel {
    padding-bottom: 45px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
}
.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}
.testimonial-card__text {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    min-height: 80px;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), #E8D48B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-card__info {
    display: flex;
    flex-direction: column;
}
.testimonial-card__name {
    font-size: 0.85rem;
    color: #1a1a1a;
}
.testimonial-card__title {
    font-size: 0.72rem;
    color: var(--color-gold);
}
.testimonial-card__product {
    font-size: 0.7rem;
    color: rgba(0,0,0,0.5);
}
.testimonials-pagination {
    bottom: 0 !important;
}
.testimonials-pagination .swiper-pagination-bullet {
    background: rgba(0,0,0,0.2);
    opacity: 1;
    width: 8px;
    height: 8px;
}
.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

/* ── Blog Preview Section ── */
.home-section--blog {
    padding: 80px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.blog-card {
    background: var(--color-bg-card, #141414);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,168,76,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.blog-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.blog-card__image-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-card__image-wrap--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
}
.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-card__image {
    transform: scale(1.05);
}
.blog-card__content {
    padding: 20px;
}
.blog-card__date {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 8px;
    display: block;
}
.blog-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-card__excerpt {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin-bottom: 12px;
}
.blog-card__read-more {
    font-size: 0.78rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ── 404 Page Redesign ── */
.page-404__watch {
    margin-bottom: 30px;
}
.page-404__watch-svg {
    animation: watch-float 3s ease-in-out infinite;
}
@keyframes watch-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.page-404__second-hand {
    transform-origin: 100px 100px;
    animation: second-hand-rotate 60s linear infinite;
}
@keyframes second-hand-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.page-404__title-accent {
    color: var(--color-gold);
}
.page-404__popular {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.page-404__popular-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
}

/* ── Recently Viewed Products ── */
.recently-viewed {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Responsive Adjustments ── */
@media (max-width: 768px) {
    .sticky-atc-bar__name {
        max-width: 150px;
        font-size: 0.78rem;
    }
    .sticky-atc-bar__image {
        width: 38px;
        height: 38px;
    }
    .sticky-atc-bar__btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    .product-social-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .quick-view-modal__content {
        width: 95%;
        max-height: 85vh;
    }
    .exit-popup__content {
        width: 95%;
        padding: 30px 20px;
    }
    .cookie-consent__inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent__text {
        flex-direction: column;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 480px) {
    .sticky-atc-bar__info {
        display: none;
    }
    .sticky-atc-bar__inner {
        justify-content: center;
    }
    .sticky-atc-bar__btn {
        flex: 1;
    }
}
