/* ============================================
   MARK DECOR V2 — Luxury Modern Design System
   ============================================ */

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

a {
    text-decoration: none;
}

:root {
    /* Background tones — warm charcoal, not pure black */
    --bg-base:      #141210;
    --bg-surface:   #1c1916;
    --bg-elevated:  #242018;
    --bg-overlay:   #2c2720;

    /* Gold accent — refined, not overpowering */
    --gold:         #c9a87c;
    --gold-light:   #dbbf97;
    --gold-muted:   #a88960;
    --gold-subtle:  rgba(201, 168, 124, 0.12);

    /* Text */
    --text-primary:   #f0ebe4;
    --text-secondary: #9e8e7e;
    --text-muted:     #635a50;

    /* Borders */
    --border-subtle:  rgba(201, 168, 124, 0.10);
    --border-light:   rgba(201, 168, 124, 0.20);
    --border-accent:  rgba(201, 168, 124, 0.40);
}

/* ============ BASE ============ */
body {
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    pointer-events: none;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar::after {
    display: none;
}

/* Logo */
.nav-logo {
    pointer-events: all;
    flex-shrink: 0;
}

/* Links capsule */
.nav-links-capsule {
    pointer-events: all;
    border-radius: 100px;
    border: 1px solid transparent;
    background: transparent;
    transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
    padding: 0 8px;
}

/* Icons capsule */
.nav-icons-capsule {
    pointer-events: all;
    display: flex;
    align-items: center;
    border-radius: 100px;
    border: 1px solid transparent;
    background: transparent;
    transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
    padding: 0 6px;
    height: 48px;
    flex-shrink: 0;
}

.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255,255,255,0.78);
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
    position: relative;
}

.nav-icon-btn:hover {
    color: var(--gold);
    transform: translateY(-1px);
}

.nav-icon-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
}

.logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    transition: color 0.25s ease;
    line-height: 1;
    padding-top: 2px;
}

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

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

.nav-links > li > a {
    display: block;
    padding: 0 16px;
    height: 48px;
    line-height: 48px;
    color: rgba(255, 255, 255, 0.82);
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

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

.nav-links > li.active > a {
    color: #ffffff;
}

/* Dropdown */
.dropdown {
    position: relative;
}

/* Submenu affordance: a chevron signals "Products" has a menu, while the link
   itself still navigates to the Products page on click. */
.nav-links .dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: 0.5;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    vertical-align: middle;
}
.nav-links .dropdown:hover > a::after {
    transform: translateY(0) rotate(225deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    background: rgba(16, 14, 12, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-light);
    border-top: 2px solid var(--gold);
    border-radius: 16px;
    min-width: 180px;
    list-style: none;
    padding: 16px 10px 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

/* Each item starts hidden, animates in on hover */
.dropdown-menu li {
    opacity: 0;
    transform: translateY(-6px);
}

.dropdown:hover .dropdown-menu li {
    animation: itemUnfold 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes itemUnfold {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Staggered delays for each item */
.dropdown:hover .dropdown-menu li:nth-child(1)  { animation-delay: 0ms;   }
.dropdown:hover .dropdown-menu li:nth-child(2)  { animation-delay: 40ms;  }
.dropdown:hover .dropdown-menu li:nth-child(3)  { animation-delay: 80ms;  }
.dropdown:hover .dropdown-menu li:nth-child(4)  { animation-delay: 120ms; }
.dropdown:hover .dropdown-menu li:nth-child(5)  { animation-delay: 160ms; }
.dropdown:hover .dropdown-menu li:nth-child(6)  { animation-delay: 200ms; }
.dropdown:hover .dropdown-menu li:nth-child(7)  { animation-delay: 240ms; }
.dropdown:hover .dropdown-menu li:nth-child(8)  { animation-delay: 280ms; }
.dropdown:hover .dropdown-menu li:nth-child(9)  { animation-delay: 320ms; }
.dropdown:hover .dropdown-menu li:nth-child(10) { animation-delay: 360ms; }
.dropdown:hover .dropdown-menu li:nth-child(11) { animation-delay: 400ms; }

.dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--text-secondary);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: none;
    height: auto;
    line-height: normal;
    border: none;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.dropdown-menu li a::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    flex-shrink: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: scale(0);
}

.dropdown-menu li a:hover {
    color: var(--text-primary);
    background: rgba(201, 168, 124, 0.07);
    padding-left: 14px;
    border-left-color: transparent;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Cart count badge */
.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--gold);
    color: #141210;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.5rem;
    font-weight: 600;
}

.cart-count.show {
    display: flex;
}

/* Burger */
.burger {
    display: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    flex-direction: column;
}

.burger div {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Menu items that only appear inside the mobile menu (e.g. Account) */
.nav-mobile-only { display: none; }

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg-base);
}

/* Ken Burns — zooming background image */
.hero-bg {
    position: absolute;
    inset: -6%;
    background-image: url('https://markdecor.net/media/responsive/home/_generated/hero-opt-3840.WEBP');
    background-size: cover;
    background-position: center;
    animation: kenburns 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes kenburns {
    0%   { transform: scale(1.00) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, 1%); }
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(14, 12, 10, 0.75) 0%,
        rgba(14, 12, 10, 0.30) 30%,
        rgba(14, 12, 10, 0.35) 70%,
        #141210 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 0 24px;
    margin-top: 0;
}

/* Staggered text reveal */
.hero-eyebrow {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.1;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.5s;
}

.hero-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: rgba(240, 235, 228, 0.55);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.75s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    font-size: 0.7rem;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: #141210;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 124, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(240, 235, 228, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

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

.btn-ghost:hover {
    background: var(--gold-subtle);
    border-color: var(--gold);
}

/* ============ SECTIONS ============ */
section {
    padding: 100px 0;
}

.section-label {
    display: block;
    font-family: 'Jost', sans-serif;
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-body {
    font-family: 'Jost', sans-serif;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    max-width: 640px;
}

.divider-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0;
    opacity: 0.7;
}

.divider-center {
    margin: 20px auto;
}

/* ============ WELCOME SECTION ============ */
.welcome {
    background: var(--bg-base);
    padding: 120px 0;
}


.welcome-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.welcome-inner .section-body {
    margin: 0 auto;
    margin-bottom: 16px;
}

/* Virtual Showroom */
.showroom-card {
    position: relative;
    display: block;
    margin: 72px auto 0;
    max-width: 920px;
    min-height: 320px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.showroom-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.showroom-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/products-hero.webp');
    background-size: cover;
    background-position: center;
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.showroom-card:hover .showroom-bg {
    transform: scale(1.07);
}

.showroom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(14,12,10,0.93) 0%,
        rgba(14,12,10,0.62) 55%,
        rgba(14,12,10,0.5) 100%);
}

.showroom-content {
    position: relative;
    z-index: 2;
    min-height: 320px;
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.showroom-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.showroom-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.showroom-content p {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(240, 235, 228, 0.62);
    max-width: 460px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.showroom-enter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    border: 1px solid var(--gold);
    border-radius: 100px;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    transition: background 0.3s ease, color 0.3s ease, gap 0.25s ease;
}

.showroom-card:hover .showroom-enter {
    background: var(--gold);
    color: #141210;
    gap: 14px;
}

/* ============ OUR WORK SECTION ============ */
.work-section {
    background: var(--bg-base);
    padding: 120px 0;
}

.work-section .section-label,
.work-section .section-title {
    text-align: center;
}

.work-section .divider-line {
    margin: 20px auto;
}

/* Featured project carousel */
.work-showcase {
    position: relative;
    margin-top: 56px;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
}

.work-showcase .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease, transform 1.2s cubic-bezier(0.22,1,0.36,1);
}

.work-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,12,10,0.55) 0%, transparent 35%);
    pointer-events: none;
}

.work-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(14,12,10,0.45);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s ease;
    opacity: 0;
    z-index: 3;
}

.work-showcase:hover .work-arrow { opacity: 1; }
.work-arrow:hover { background: var(--gold); border-color: var(--gold); color: #141210; }
.work-prev { left: 22px; }
.work-next { right: 22px; }

.work-index {
    position: absolute;
    bottom: 22px;
    left: 26px;
    z-index: 3;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.75);
}

.work-showcase .gallery-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    padding: 0;
}

.gallery-dot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 3px;
}

/* Watch the film */
.work-film {
    text-align: center;
    margin-top: 36px;
}

.work-film-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 12px 28px 12px 14px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.work-film-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.work-play {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    color: #141210;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    transition: transform 0.3s ease;
}

.work-film-btn:hover .work-play { transform: scale(1.08); }

/* Video lightbox */
.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(8,7,6,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.video-lightbox-frame {
    width: 100%;
    max-width: 1080px;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 90px rgba(0,0,0,0.6);
    transform: scale(0.96);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.video-lightbox.open .video-lightbox-frame { transform: scale(1); }

.video-lightbox-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-lightbox-close {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.video-lightbox-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
}

/* ============ LEADERSHIP SECTION ============ */
.leadership {
    background: var(--bg-base);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.leadership .container {
    position: relative;
    z-index: 1;
    max-width: 1340px;
}

/* Two-column staged reveal */
.leadership-stage {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 44px;
    align-items: center;
}

.leadership-text {
    opacity: 0;
    transform: translateX(48%) translateY(22px);
    text-align: center;
    transition: opacity 0.9s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.leadership-stage.activated .leadership-text {
    opacity: 1;
    transform: translateX(48%) translateY(0);
}
.leadership-stage.split .leadership-text {
    transform: translateX(0) translateY(0);
    text-align: left;
}
.leadership-text .section-label { display: block; }
.leadership-text .section-body { margin: 0 auto; }
.leadership-stage.split .leadership-text .section-body { margin: 0; }
.leadership-stage.split .leadership-text .divider-line { margin-left: 0; }
.leadership-stage.split .leadership-text .leadership-stats-row { justify-content: flex-start; }

/* Map */
.leadership-map-wrap {
    position: relative;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.leadership-stage.split .leadership-map-wrap {
    opacity: 1;
    transform: scale(1);
}
.leadership-map {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.42;
}

/* Flag pins */
.map-pins { position: absolute; inset: 0; }
.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.map-pin .mp-dot {
    display: block;
    width: 21px;
    height: 21px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: default;
    box-shadow: 0 3px 8px rgba(0,0,0,0.55);
    opacity: 0;
    transform: translateY(-14px) scale(0.3);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.leadership-stage.pinned .map-pin .mp-dot {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: calc(var(--d) * 70ms);
}
.map-pin:hover { z-index: 10; }
.map-pin:hover .mp-dot { transform: scale(1.3); }
.map-pin .mp-name {
    position: absolute;
    bottom: 135%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(14,12,10,0.96);
    border: 1px solid rgba(201,168,124,0.35);
    color: var(--text-primary);
    font-family: 'Jost', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.map-pin:hover .mp-name {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 860px) {
    .leadership-stage { grid-template-columns: 1fr; gap: 40px; }
    .leadership-text,
    .leadership-stage.activated .leadership-text,
    .leadership-stage.split .leadership-text {
        transform: translateY(0);
        text-align: center;
    }
    .leadership-stage.split .leadership-text .section-body { margin: 0 auto; }
    .leadership-stage.split .leadership-text .divider-line { margin-left: auto; margin-right: auto; }
    .leadership-stage.split .leadership-text .leadership-stats-row { justify-content: center; }
}


.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Leadership — centered over the map */
.leadership-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
/* soft dark halo so text lifts off the dotted map */
.leadership-inner::before {
    content: '';
    position: absolute;
    inset: -50px -120px;
    background: radial-gradient(ellipse at center, rgba(14,12,10,0.85) 0%, rgba(14,12,10,0.55) 45%, transparent 78%);
    z-index: -1;
    pointer-events: none;
}
.leadership-inner .section-label { display: block; }
.leadership-inner .section-body {
    margin: 0 auto;
    color: rgba(240,235,228,0.72);
}

/* Slim horizontal stats strip */
.leadership-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 60px;
}
.lstat {
    padding: 0 40px;
    text-align: center;
}
.lstat-divider {
    width: 1px;
    height: 48px;
    background: rgba(201,168,124,0.25);
}
.lead-stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.2vw, 3rem);
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}
.lstat-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240,235,228,0.5);
}

/* Country flag fan (semicircle pop-out on hover) */
.lstat-countries {
    cursor: default;
}
.country-fan {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 0;
    height: 0;
    z-index: 30;
    pointer-events: none;
}
.country-chip {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 60px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.lstat-countries:hover .country-chip {
    opacity: 1;
    transform: translate(-50%, -50%)
               rotate(calc((var(--i) - 5.5) * 15deg))
               translateY(-180px)
               rotate(calc((var(--i) - 5.5) * -15deg));
    transition-delay: calc(var(--i) * 35ms);
}
.cflag {
    font-size: 1.6rem;
    line-height: 1;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5));
}
.cname {
    font-family: 'Jost', sans-serif;
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(240,235,228,0.7);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .lstat { padding: 16px 28px; }
    .lstat-divider { display: none; }
    .country-fan { display: none; }
}

.leadership-image {
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    aspect-ratio: 4/3;
}

.leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leadership-content .section-body {
    margin-bottom: 16px;
}

.leadership-content .section-body + .section-body {
    margin-top: 0;
}

.leadership-content .btn {
    margin-top: 32px;
}

/* ============ PARTNER BANNER ============ */
.partner-banner {
    background: var(--bg-base);
    padding: 80px 0;
    text-align: center;
}

.partner-banner .section-title {
    margin-bottom: 16px;
}

.partner-banner .section-body {
    margin: 0 auto 36px;
    max-width: 560px;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--bg-base);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-brand h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 16px;
    margin-left: -8px;
    mix-blend-mode: screen;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

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

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-subtle);
}

.footer-col h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.25s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

/* Contact column */
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 16px;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.5;
}
.footer-contact ul li svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-contact ul li a {
    color: var(--text-secondary);
    transition: color 0.25s ease;
}
.footer-contact ul li a:hover {
    color: var(--gold);
}
.footer-contact .fc-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}


.cart-droplet {
    position: fixed;
    top: 28px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: rgba(14, 12, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 124, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(201,168,124,0.15);
    opacity: 0;
    pointer-events: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Cell divides out from capsule right edge */
.cart-droplet.dividing {
    animation: cellDivide 0.7s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
    pointer-events: all;
}

/* Merges back into capsule */
.cart-droplet.merging {
    animation: cellMerge 0.45s ease-in forwards;
    pointer-events: none;
}

@keyframes cellDivide {
    0% {
        opacity: 1;
        transform: translateX(60px) scaleX(2.2) scaleY(0.6);
        border-radius: 100px;
    }
    35% {
        transform: translateX(20px) scaleX(1.3) scaleY(0.85);
        border-radius: 80px;
    }
    60% {
        transform: translateX(-6px) scaleX(0.9) scaleY(1.1);
        border-radius: 50%;
    }
    80% {
        transform: translateX(4px) scale(1.05);
        border-radius: 50%;
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        border-radius: 50%;
    }
}

@keyframes cellMerge {
    0%   { opacity: 1; transform: translateX(0) scale(1); border-radius: 50%; }
    40%  { transform: translateX(10px) scaleX(1.3) scaleY(0.8); border-radius: 80px; }
    100% { opacity: 0; transform: translateX(70px) scaleX(2) scaleY(0.5); border-radius: 100px; }
}

.cart-droplet:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 4px 16px rgba(201,168,124,0.3);
}

.cart-droplet svg {
    width: 18px;
    height: 18px;
}

.cart-droplet .droplet-count {
    font-family: 'Jost', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--gold);
    margin-top: 2px;
    display: none;
}

.cart-droplet .droplet-count.show {
    display: block;
}

/* ============ LOGIN MODAL ============ */
.login-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 9, 8, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1800;
    pointer-events: none;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.login-backdrop.active {
    background: rgba(10, 9, 8, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: all;
}

.login-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%) scale(0.96);
    z-index: 1900;
    width: 90%;
    max-width: 420px;
    background: rgba(18, 16, 14, 0.98);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 36px 36px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s ease;
}

.login-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.login-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.login-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
}

.login-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-logo {
    height: 100px;
    width: auto;
    mix-blend-mode: screen;
    margin-bottom: 16px;
}

.login-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.login-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* Google button */
.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-google:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

/* Divider */
.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
}

.login-divider span {
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.login-divider p {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Form fields */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
}

.login-field label {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.login-field input {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.login-field input::placeholder {
    color: var(--text-muted);
}

.login-field input:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 124, 0.04);
}

.login-forgot {
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.login-forgot:hover {
    color: var(--gold);
}

/* Sign in button */
.btn-login {
    width: 100%;
    padding: 13px;
    background: var(--gold);
    color: #141210;
    border: none;
    border-radius: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-login:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 124, 0.3);
}

.login-switch {
    text-align: center;
    margin-top: 20px;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-muted);
}

.login-switch a {
    color: var(--gold);
    transition: color 0.2s ease;
}

.login-switch a:hover {
    color: var(--gold-light);
}

/* ============ SEARCH ============ */

/* Page blur backdrop */
.search-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 9, 8, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1500;
    pointer-events: none;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.search-backdrop.active {
    background: rgba(10, 9, 8, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: all;
}

/* Expanding search bar */
.search-bar-wrap {
    position: fixed;
    top: 20px;
    right: 32px;
    z-index: 2000;
    width: 0;
    overflow: visible;
    pointer-events: none;
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.search-bar-wrap.open {
    width: 480px;
    pointer-events: all;
}

.search-bar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    background: rgba(14, 12, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 124, 0.25);
    border-radius: 100px;
    padding: 0 16px;
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: right center;
    transition: opacity 0.35s ease 0.05s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
    white-space: nowrap;
    overflow: hidden;
}

.search-bar-wrap.open .search-bar-inner {
    opacity: 1;
    transform: scaleX(1);
}

.search-bar-icon {
    color: var(--gold);
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

/* Pulsing dot while debouncing */
.search-bar-wrap.searching .search-bar-icon {
    opacity: 0;
}

.search-bar-wrap.searching .search-bar-inner::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    animation: searchPulse 0.8s ease-in-out infinite;
}

@keyframes searchPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50%       { opacity: 1;   transform: scale(1.2); }
}

.search-bar-input {
    background: none;
    border: none;
    outline: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--text-primary);
    width: 100%;
    min-width: 0;
}

.search-bar-input::placeholder {
    color: rgba(255,255,255,0.25);
}

.search-bar-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.search-bar-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* Search results — float on the blurred page */
.search-results-panel {
    position: fixed;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 1600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.search-results-panel.visible {
    opacity: 1;
    pointer-events: all;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.search-card {
    background: rgba(20, 18, 16, 0.85);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    animation: cardFadeIn 0.3s ease forwards;
    opacity: 0;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.search-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 124, 0.35);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.search-card-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-elevated);
}

.search-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

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

.search-card-info {
    padding: 10px 12px 12px;
}

.search-card-code {
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.search-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 3px;
}

.search-card-cat {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.search-results-empty {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    padding: 32px 0;
    letter-spacing: 0.5px;
}

/* ============ SCROLL TO TOP ============ */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 999;
}

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

.scroll-to-top:hover {
    background: var(--gold);
    color: #141210;
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ============ CART COUNT ============ */
.cart-count {
    display: none;
}

.cart-count.show {
    display: flex;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .work-arrow { opacity: 1; }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 80px 0;
    }

    /* ===== Mobile navbar (global) ===== */
    /* burger visible + clickable (navbar is pointer-events:none) + morphs to an X */
    .burger { display: flex; pointer-events: all; position: relative; z-index: 1002; }
    .burger div { transition: transform 0.3s ease, opacity 0.2s ease; }
    .burger.is-open div:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.is-open div:nth-child(2) { opacity: 0; }
    .burger.is-open div:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* logo stays visible above the open menu */
    .nav-logo { position: relative; z-index: 1002; }

    /* top bar: logo left, cart + burger grouped right.
       Search + account icons are hidden on mobile (inert on inner pages); the
       homepage re-shows its working search icon via an inline override. */
    .nav-links-capsule { margin-right: auto; padding: 0; }
    .nav-icons-capsule { padding: 0; height: auto; transition: opacity 0.25s ease; }
    .nav-icons-capsule #searchTrigger,
    .nav-icons-capsule #userBtn,
    .nav-icons-capsule .nav-icon-divider { display: none; }
    body.menu-open .nav-icons-capsule { opacity: 0; pointer-events: none; }
    body.menu-open { overflow: hidden; }

    /* full-screen mobile menu */
    .nav-links {
        position: fixed;
        top: 0; right: -100%; left: auto;
        width: 100%; height: 100vh; height: 100dvh;
        background: #141210;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 92px 0 40px;
        margin: 0; gap: 0;
        overflow-y: auto;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }
    .nav-links.nav-open { right: 0; }
    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid rgba(201,168,124,0.08);
    }
    .nav-links > li:first-child { border-top: 1px solid rgba(201,168,124,0.08); }
    .nav-links > li > a {
        display: block;
        padding: 19px 32px;
        height: auto;
        line-height: 1.2;
        font-size: 0.95rem;
        letter-spacing: 2px;
        color: rgba(240,235,228,0.85);
    }
    .nav-links > li.active > a { color: var(--gold); }

    /* Products = plain link on mobile (kills the broken hover-reveal submenu) */
    .nav-links .dropdown-menu { display: none; }
    .nav-links .dropdown > a::after { display: none; }

    /* Search/Account menu items (present only where wired, e.g. homepage) */
    .nav-mobile-only { display: block; }
    .nav-mobile-only > a { color: var(--gold); }

    /* Search bar: full-width with insets instead of a fixed 480px running off-screen */
    .search-bar-wrap,
    .search-bar-wrap.open { top: 16px; left: 12px; right: 12px; width: auto; }
    .search-results-panel { top: 80px; width: calc(100% - 24px); }
    .search-results-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    .hero-title {
        font-size: 2.2rem;
    }

    .showroom-content {
        padding: 44px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ============ CAT-PAGES-SHARED : product category page redesign ============ */
.cat-hero {
    position: relative; height: 56vh; min-height: 380px;
    display: flex; align-items: flex-end; overflow: hidden; margin: 0; padding: 0;
}
.cat-hero-bg {
    position: absolute; inset: -4%;
    background-image: url('images/products-hero.webp');
    background-size: cover; background-position: center center;
    animation: catKenburns 22s ease-in-out infinite alternate;
}
@keyframes catKenburns { 0% { transform: scale(1.0); } 100% { transform: scale(1.07) translate(-1%, 0.5%); } }
.cat-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        rgba(20,18,16,0.25) 0%,
        rgba(20,18,16,0.28) 55%,
        rgba(20,18,16,0.55) 82%,
        rgba(20,18,16,0.9) 95%,
        #141210 100%);
}
.cat-hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: 52px; }
.cat-badge {
    display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; color: #c9a87c;
    border: 1px solid rgba(201,168,124,0.35); border-radius: 100px; padding: 5px 16px;
    margin-bottom: 18px; background: rgba(14,12,10,0.4); backdrop-filter: blur(8px);
}
.cat-hero-content h1 {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 400; color: #f5f0e8; line-height: 1.05; margin-bottom: 16px; letter-spacing: 0.5px;
}
.cat-hero-content .cat-desc {
    font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300;
    color: rgba(240,235,228,0.55); line-height: 1.7; max-width: 560px; margin-bottom: 26px;
}
.cat-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cat-stat { display: flex; flex-direction: column; gap: 3px; }
.cat-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 500; color: #c9a87c; line-height: 1; }
.cat-stat-label { font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(240,235,228,0.45); }
.cat-stat-divider { width: 1px; height: 36px; background: rgba(201,168,124,0.25); }

/* From-price bar */
.cat-price-bar { background: #141210; text-align: center; padding: 46px 0 6px; }
.cat-price-note {
    display: inline-flex; align-items: baseline; gap: 8px; padding: 10px 22px;
    border: 1px solid rgba(201,168,124,0.25); border-radius: 100px; background: rgba(201,168,124,0.05);
}
.cat-price-note .pn-from { font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,235,228,0.5); }
.cat-price-note .pn-amount { font-family: 'Cinzel', serif; font-size: 1.15rem; font-weight: 500; color: #c9a87c; line-height: 1; letter-spacing: 1px; }
.cat-price-note .pn-onwards { font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 300; color: rgba(240,235,228,0.5); }
.cat-price-note .pn-vat { font-family: 'Jost', sans-serif; font-size: 0.55rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(240,235,228,0.4); margin-left: 8px; padding-left: 12px; border-left: 1px solid rgba(201,168,124,0.3); }

/* Gallery section */
.product-details { background: #141210; padding: 40px 0 90px; }
.product-details .wood-section-header, .product-details .section-header { text-align: center; margin-bottom: 46px; }
.product-details .section-tag { display: block; font-family: 'Jost', sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: #c9a87c; margin-bottom: 12px; }
.product-details .wood-section-header h2, .product-details .section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 400; color: #f0ebe4; margin-bottom: 14px; -webkit-text-fill-color: #f0ebe4; }
.product-details .wood-divider, .product-details .divider { width: 48px; height: 2px; background: #c9a87c; margin: 0 auto 14px; opacity: 0.7; }
.product-details .section-subtitle { font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 300; color: rgba(240,235,228,0.45); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* Grid + cards */
.product-details .designs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 0; }
.product-details .design-item { background: #1c1916; border: 1px solid rgba(201,168,124,0.08); border-radius: 10px; overflow: hidden; display: block; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.product-details .design-item:hover { transform: translateY(-5px); border-color: rgba(201,168,124,0.28); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.product-details .design-image { width: 100%; height: auto; margin: 0; border-radius: 0; box-shadow: none; aspect-ratio: 1; overflow: hidden; }
.product-details .design-item:hover .design-image { transform: none; box-shadow: none; }
.product-details .design-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-details .design-item:hover .design-image img { transform: scale(1.06); }
.product-details .design-info { background: transparent; border: none; border-radius: 0; padding: 16px 18px 18px; text-align: center; backdrop-filter: none; }
.product-details .design-item:hover .design-info { border: none; box-shadow: none; }
.product-details .design-info h3 { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 500; color: #f0ebe4; letter-spacing: 1.5px; margin-bottom: 16px; -webkit-text-fill-color: #f0ebe4; }
.product-details .design-info p { display: none; }
.product-details .design-price { display: none; }

/* Pill buttons */
.product-details .design-actions { display: flex; gap: 8px; }
.product-details .design-actions .btn { flex: 1; height: 40px; display: flex; align-items: center; justify-content: center; padding: 0 14px; border-radius: 100px; font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase; transition: all 0.3s ease; }
.product-details .btn-view { background: transparent; border: 1px solid rgba(201,168,124,0.35); color: #c9a87c; }
.product-details .btn-view:hover { background: rgba(201,168,124,0.08); border-color: #c9a87c; color: #dbbf97; }
/* Mobile: drop the redundant View button — tapping the card already opens the product */
@media (max-width: 768px) {
    section.product-details .design-actions .btn-view { display: none !important; }
    .product-details .design-actions .cart-control-wrapper { flex: 1 1 100%; width: 100%; }
    /* tighten the name + button block so cards aren't so tall (section.* beats per-page inline) */
    section.product-details .design-info { padding: 10px 10px 12px; }
    section.product-details .design-info h3 { font-size: 0.82rem; letter-spacing: 1px; margin-bottom: 10px; }
    section.product-details .design-actions .btn,
    section.product-details .cart-control-wrapper .add-to-cart-btn { height: 34px; font-size: 0.56rem; }
    /* "tap to view" cue: a translucent magnifier in the corner of each image */
    section.product-details .design-image { position: relative; }
    section.product-details .design-image::after {
        content: '';
        position: absolute;
        bottom: 9px;
        right: 9px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: rgba(20,18,16,0.5);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cpolyline points='9 21 3 21 3 15'/%3E%3Cline x1='21' y1='3' x2='14' y2='10'/%3E%3Cline x1='3' y1='21' x2='10' y2='14'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 15px 15px;
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255,255,255,0.28);
        pointer-events: none;
        z-index: 3;
    }
}
.product-details .add-to-cart-btn { background: #c9a87c; border: 1px solid #c9a87c; color: #141210; }
.product-details .add-to-cart-btn:hover { background: #dbbf97; border-color: #dbbf97; }
.product-details .inline-quantity-controls { height: 40px; border-radius: 100px; background: #c9a87c; padding: 0 10px; }
.product-details .quantity-btn-inline { width: 26px; height: 26px; background: rgba(20,18,16,0.15); border: none; color: #141210; }
.product-details .quantity-btn-inline:hover { background: rgba(20,18,16,0.28); }
.product-details .quantity-display { color: #141210; font-family: 'Jost', sans-serif; font-weight: 600; }

/* Filters */
.filter-controls, .filter-container { text-align: center; margin-bottom: 40px; padding: 0; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.filter-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.filter-btn { padding: 9px 22px; border: 1px solid rgba(201,168,124,0.3); background: transparent; color: rgba(240,235,228,0.6); border-radius: 100px; cursor: pointer; transition: all 0.3s ease; font-family: 'Jost', sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.62rem; }
.filter-btn.active, .filter-btn:hover { background: #c9a87c; color: #141210; border-color: #c9a87c; box-shadow: none; }

@media (max-width: 1024px) { .product-details .designs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .product-details .designs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .cat-hero { height: 46vh; } }

/* CAT-PAGES-SHARED : "Interested in..." CTA section */
.cta-section {
    background: #141210;
    -webkit-mask-image: none;
    mask-image: none;
    border-top: 1px solid rgba(201,168,124,0.08);
    text-align: center;
    padding: 80px 0;
}
.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: #f0ebe4;
    -webkit-text-fill-color: #f0ebe4;
    margin-bottom: 12px;
}
.cta-section p {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(240,235,228,0.5);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}
.cta-section .btn,
.cta-section .btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c9a87c;
    border: 1px solid #c9a87c;
    color: #141210;
    border-radius: 100px;
    padding: 13px 34px;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}
.cta-section .btn:hover,
.cta-section .btn-accent:hover {
    background: #dbbf97;
    border-color: #dbbf97;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,124,0.3);
}

/* CAT-PAGES-SHARED : elegant "About <range>" section */
.product-about {
    background: #141210;
    padding: 84px 0;
    text-align: center;
    border-top: 1px solid rgba(201,168,124,0.08);
}
.product-about .pa-label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a87c;
    margin-bottom: 14px;
}
.product-about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 400;
    color: #f0ebe4;
    -webkit-text-fill-color: #f0ebe4;
    margin: 0;
}
.product-about .pa-divider {
    width: 48px;
    height: 2px;
    background: #c9a87c;
    opacity: 0.7;
    margin: 16px auto 26px;
}
.product-about p {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(240,235,228,0.55);
    max-width: 680px;
    margin: 0 auto;
}

/* CAT-PAGES-SHARED : Product Features section (luxury cards) */
.welcome .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 400;
    color: #f0ebe4;
    -webkit-text-fill-color: #f0ebe4;
}
.welcome .section-header .divider {
    width: 48px;
    height: 2px;
    background: #c9a87c;
    opacity: 0.7;
    margin: 16px auto 0;
}
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 44px;
}
.feature-item {
    background: #1c1916;
    border: 1px solid rgba(201,168,124,0.08);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(201,168,124,0.28);
    box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.feature-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: #c9a87c;
    -webkit-text-fill-color: #c9a87c;
    margin-bottom: 10px;
}
.feature-item p {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(240,235,228,0.5);
}

/* ============ CINEMATIC CROSS-PAGE TRANSITION ============ */
html { background: #141210; }

/* Fade-IN curtain: a solid charcoal layer covers the page at first paint, then
   lifts away — so you never see content/glow pop in. Pure CSS, works everywhere,
   no dependence on JS timing. Uses html::before so it never clashes with the
   body::before/::after gold texture in styles.css. */
html::before {
    content: '';
    position: fixed;
    inset: 0;
    background: #141210;
    z-index: 99999;
    pointer-events: none;
    animation: curtainLift 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes curtainLift {
    0%   { opacity: 1; }
    18%  { opacity: 1; }            /* brief hold so it doesn't snap */
    100% { opacity: 0; visibility: hidden; }
}

/* Fade-OUT curtain: JS adds .pt-leaving on internal navigation; a curtain drops
   back down before the next page begins to load. */
html.pt-leaving::after {
    content: '';
    position: fixed;
    inset: 0;
    background: #141210;
    z-index: 99999;
    pointer-events: none;
    animation: curtainDrop 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes curtainDrop {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    html::before, html.pt-leaving::after { display: none; }
}

/* ============ INQUIRE MODAL (product pages) ============ */
.inq-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8,7,6,0.62);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 5000;
}
.inq-backdrop.show { opacity: 1; visibility: visible; }
.inq-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -46%) scale(0.98);
    width: min(420px, calc(100vw - 40px));
    background: linear-gradient(180deg, rgba(26,22,18,0.99) 0%, rgba(17,15,13,0.99) 100%);
    border: 1px solid rgba(201,168,124,0.2);
    border-radius: 18px;
    padding: 34px 30px 28px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.45s cubic-bezier(0.22,1,0.36,1);
    z-index: 5001;
}
.inq-modal.show { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.inq-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(240,235,228,0.5);
    padding: 6px;
    line-height: 0;
    transition: color 0.2s ease;
}
.inq-close:hover { color: #c9a87c; }
.inq-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a87c;
    opacity: 0.8;
    margin: 0 0 5px;
}
.inq-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #f5f0e8;
    margin: 0 0 4px;
    line-height: 1.15;
}
.inq-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(240,235,228,0.5);
    margin: 0 0 22px;
}
.inq-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px 16px;
    margin-bottom: 11px;
    border: 1px solid rgba(201,168,124,0.16);
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.inq-option:last-child { margin-bottom: 0; }
.inq-option:hover {
    border-color: rgba(201,168,124,0.42);
    background: rgba(201,168,124,0.05);
    transform: translateX(3px);
}
.inq-ic {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201,168,124,0.1);
    color: #c9a87c;
}
.inq-ic svg { width: 20px; height: 20px; }
.inq-txt { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.inq-txt b {
    font-family: 'Jost', sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    color: #f0ebe4;
    letter-spacing: 0.3px;
}
.inq-txt small {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(240,235,228,0.45);
}
.inq-arrow { color: rgba(201,168,124,0.6); transition: transform 0.25s ease, color 0.25s ease; line-height: 0; }
.inq-option:hover .inq-arrow { transform: translateX(4px); color: #c9a87c; }

/* CAT-PAGES-SHARED : product DETAIL page */
.product-detail-section {
    background: #141210;
    padding: 150px 0 100px;
    min-height: auto;
}
.breadcrumb {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.breadcrumb a { color: var(--text-secondary); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 56px;
}
.product-detail-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #1c1916;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    margin: 0;
    width: auto;
    justify-self: stretch;
    transition: none;
}
.product-detail-image:hover { transform: none; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.product-detail-image img {
    width: 100% !important;
    height: auto !important;
    display: block;
    padding: 0 !important;
    background: transparent !important;
    box-sizing: border-box !important;
}

.product-detail-info { padding-top: 8px; }
.product-category {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.product-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
    background: none;
    text-transform: none;
    margin: 0 0 18px;
}
.product-price {
    font-family: 'Jost', sans-serif;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-subtle);
    background: none;
    -webkit-text-fill-color: initial;
    font-size: 1rem;
}
.product-price .pp-from { font-size: 0.65rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); }
.product-price .pp-amount { font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 500; color: var(--gold); letter-spacing: 1px; }
.product-price .pp-vat { font-size: 0.58rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-left: 4px; padding-left: 12px; border-left: 1px solid var(--border-light); }

.product-description {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    margin: 0 0 30px;
}
.product-description h3 {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: none;
    padding: 0;
    margin-bottom: 18px;
}
.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 24px;
    padding: 0;
    list-style: none;
}
.product-features li {
    position: relative;
    padding: 0 0 0 20px;
    background: none;
    border: none;
    border-radius: 0;
    color: var(--text-secondary);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    transition: none;
}
.product-features li:hover { background: none; transform: none; }
.product-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    font-size: 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 6px 0 22px;
    justify-content: flex-start;
}
.quantity-selector label {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.quantity-selector .quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    overflow: hidden;
}
.quantity-btn {
    width: 40px; height: 40px;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.2s ease;
}
.quantity-btn:hover { background: rgba(201,168,124,0.1); color: var(--gold); }
.quantity-selector input {
    width: 46px;
    height: 40px;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--text-primary);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.product-actions .btn-large {
    flex: 1;
    padding: 15px 22px;
    border-radius: 100px;
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.product-actions .btn-primary {
    background: var(--gold);
    color: #141210;
    border: 1px solid var(--gold);
    box-shadow: none;
}
.product-actions .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.product-actions .btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-accent);
}
.product-actions .btn-secondary:hover { background: rgba(201,168,124,0.08); border-color: var(--gold); transform: translateY(-2px); }

.back-button-container { text-align: center; margin-top: 24px; }
.back-button-container .btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 12px 28px;
    color: var(--text-secondary);
    font-family: 'Jost', sans-serif;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: none;
    transition: all 0.3s ease;
}
.back-button-container .btn:hover { border-color: var(--gold); color: var(--gold); background: transparent; transform: translateY(-2px); }

@media (max-width: 860px) {
    .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-features { grid-template-columns: 1fr 1fr; }
    .product-detail-section { padding-top: 120px; }
    .product-actions { flex-direction: column; }
}

/* Per-piece price hidden for now (re-enable when Excel pricing is ready) */
.product-detail-section .product-price { display: none; }

/* CAT-PAGES-SHARED : detail page image slider */
.product-detail-image:has(.image-slider) {
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    border-radius: 0;
}
.image-slider {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #1c1916;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.image-slider img#sliderImage,
.image-slider > img {
    width: 100% !important;
    height: auto !important;
    display: block;
    padding: 0 !important;
    background: transparent !important;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(14,12,10,0.5);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s ease;
    z-index: 3;
    opacity: 0;
    box-shadow: none;
}
.image-slider:hover .slider-btn { opacity: 1; }
.slider-btn:hover { background: var(--gold); border-color: var(--gold); color: #141210; transform: translateY(-50%) scale(1.05); }
.slider-btn svg { color: inherit; width: 20px; height: 20px; }
.slider-btn-prev { left: 16px; }
.slider-btn-next { right: 16px; }
.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}
.slider-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.slider-dots .dot:hover { background: rgba(255,255,255,0.7); }
.slider-dots .dot.active { background: var(--gold); width: 20px; border-radius: 3px; }
.slider-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    justify-content: flex-start !important;
}
.slider-thumbnails .thumbnail {
    width: 64px !important;
    height: 64px !important;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
    opacity: 0.55;
    transition: all 0.25s ease;
    padding: 0 !important;
    background: transparent !important;
}
.slider-thumbnails .thumbnail:hover { opacity: 0.85; transform: translateY(-2px); }
.slider-thumbnails .thumbnail.active {
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

/* Smooth filter fade on category pages */
.product-details .designs-grid .design-item {
    transition: opacity 0.38s ease, transform 0.38s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.product-details .designs-grid .design-item.is-filtering {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
    pointer-events: none;
}

/* CAT-PAGES-SHARED : single-image detail (don't upscale low-res sources) */
.product-detail-image:has(.single-product-image) {
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    border-radius: 0;
}
.single-product-image {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-height: 0;
}
.single-product-image .detail-image {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 660px !important;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 18px 55px rgba(0,0,0,0.5);
    margin: 0 auto;
    display: block;
    padding: 0 !important;
    background: transparent !important;
}
