/* =============================================================
   Chronos — Product Detail Page Redesign (PDP)
   "Editorial archive" aesthetic: Hodinkee-meets-Tudor.
   All classes prefixed with `pdp-` to avoid colliding with the
   legacy product.css. Vars below override only within .pdp-* scope.
   ============================================================= */

:root {
    --pdp-ink:        #111;
    --pdp-ink-soft:   #2a2a2a;
    --pdp-ink-mute:   #6b6b6b;
    --pdp-ink-faint:  #9b9b9b;
    --pdp-rule:       #ebe6dc;       /* warm-grey hairline */
    --pdp-rule-strong:#d6cfc1;
    --pdp-bg:         #fdfcf8;       /* near-white, warm */
    --pdp-bg-card:    #ffffff;
    --pdp-bg-soft:    #f6f1e7;       /* warm cream */
    --pdp-gold:       #B8860B;
    --pdp-gold-soft:  #d4a73d;
    --pdp-gold-faint: rgba(184, 134, 11, 0.08);
    --pdp-shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
    --pdp-shadow-lift: 0 12px 40px rgba(0, 0, 0, 0.10);
    --pdp-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --pdp-body:    'Inter', -apple-system, sans-serif;
}

/* Body warm tint behind the new hero */
body:has(.pdp-hero) { background: var(--pdp-bg); }

/* === BREADCRUMB (refined) ============================================== */
.pdp-breadcrumb {
    background: transparent;
    padding: 28px 0 8px;
    border: 0;
}
.pdp-breadcrumb .breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    margin: 0;
    font-family: var(--pdp-body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pdp-ink-faint);
}
.pdp-breadcrumb .breadcrumb-list li:not(:first-child)::before {
    content: '·';
    margin: 0 12px;
    color: var(--pdp-ink-faint);
}
.pdp-breadcrumb a {
    color: var(--pdp-ink-mute);
    text-decoration: none;
    transition: color 0.2s ease;
}
.pdp-breadcrumb a:hover { color: var(--pdp-gold); }
.pdp-breadcrumb .current { color: var(--pdp-ink); }

/* === HERO LAYOUT (gallery + sticky info) ================================ */
.pdp-hero {
    padding: 24px 0 80px;
}
.pdp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(380px, 1fr);
    gap: 64px;
    align-items: flex-start;
}

/* === GALLERY ============================================================ */
.pdp-gallery {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
}
.pdp-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 720px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--pdp-rule-strong) transparent;
}
.pdp-gallery-thumbs::-webkit-scrollbar { width: 4px; }
.pdp-gallery-thumbs::-webkit-scrollbar-thumb { background: var(--pdp-rule-strong); border-radius: 4px; }

.pdp-gallery-thumbs .thumbnail {
    width: 80px;
    height: 80px;
    padding: 0;
    border: 1px solid var(--pdp-rule);
    background: var(--pdp-bg-card);
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
    transition: border-color 0.25s ease, transform 0.25s ease;
    position: relative;
}
.pdp-gallery-thumbs .thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    pointer-events: none;
    transition: border-color 0.25s ease;
}
.pdp-gallery-thumbs .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.78;
    transition: opacity 0.3s ease, transform 0.4s ease;
}
.pdp-gallery-thumbs .thumbnail:hover img {
    opacity: 1;
    transform: scale(1.05);
}
.pdp-gallery-thumbs .thumbnail.active {
    border-color: var(--pdp-gold);
}
.pdp-gallery-thumbs .thumbnail.active::before { border-color: var(--pdp-gold); }
.pdp-gallery-thumbs .thumbnail.active img { opacity: 1; }

.pdp-gallery-main { min-width: 0; }
.pdp-gallery-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--pdp-bg-card);
    border: 1px solid var(--pdp-rule);
    overflow: hidden;
    cursor: zoom-in;
}
.pdp-gallery-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 50% 30%, rgba(255, 255, 255, 0.0) 0%, rgba(184, 134, 11, 0.03) 80%);
    pointer-events: none;
    z-index: 1;
}
.pdp-gallery-frame .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pdp-gallery-frame:hover .main-image { transform: scale(1.03); }

.pdp-gallery-zoom {
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--pdp-rule);
    color: var(--pdp-ink);
    font-family: var(--pdp-body);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.pdp-gallery-zoom:hover {
    background: var(--pdp-ink);
    color: #fff;
    transform: translateY(-1px);
}

.pdp-gallery-meta {
    margin: 14px 0 0;
    text-align: right;
    font-family: var(--pdp-body);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pdp-ink-faint);
}

/* === INFO PANEL (sticky on desktop) ===================================== */
.pdp-info {
    position: relative;
    padding: 0;
    background: transparent;
}
@media (min-width: 1024px) {
    .pdp-info {
        position: sticky;
        top: 100px;
        align-self: flex-start;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        padding-right: 8px;
        scrollbar-width: thin;
    }
    .pdp-info::-webkit-scrollbar { width: 4px; }
    .pdp-info::-webkit-scrollbar-thumb { background: var(--pdp-rule-strong); border-radius: 4px; }
}

.pdp-eyebrow {
    margin: 0 0 12px;
    font-family: var(--pdp-body);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--pdp-gold);
    font-weight: 600;
}

.pdp-title {
    margin: 0 0 8px;
    font-family: var(--pdp-display);
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.005em;
    font-weight: 500;
    color: var(--pdp-ink);
}

.pdp-reference {
    margin: 0 0 22px;
    font-family: var(--pdp-body);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pdp-ink-mute);
    font-weight: 400;
}

/* Condition + Box & Papers chip strip */
.pdp-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
}
.pdp-chip-row:empty { display: none; }
.pdp-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px 6px 11px;
    border: 1px solid var(--pdp-rule-strong);
    background: var(--pdp-bg-card);
    font-family: var(--pdp-body);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pdp-ink);
    font-weight: 600;
    line-height: 1;
    cursor: default;
    position: relative;
}
.pdp-chip-condition {
    border-color: var(--pdp-gold);
    color: var(--pdp-gold);
    background: var(--pdp-gold-faint);
}
.pdp-chip-condition[data-tier="mint"]   { color: #6a4f00; border-color: #6a4f00; background: rgba(106, 79, 0, 0.06); }
.pdp-chip-papers {
    background: transparent;
}
.pdp-chip-info {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--pdp-ink);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-style: italic;
    font-weight: 600;
    cursor: help;
    text-transform: lowercase;
    letter-spacing: 0;
}
.pdp-chip-info[title]:hover { background: var(--pdp-gold); }

/* Star rating */
.pdp-rating {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0 0 22px;
    border-bottom: 1px solid var(--pdp-rule);
    font-family: var(--pdp-body);
    font-size: 13px;
    color: var(--pdp-ink-mute);
}
.pdp-rating-stars {
    color: var(--pdp-gold);
    font-size: 14px;
    letter-spacing: 1px;
}
.pdp-rating-value {
    font-weight: 600;
    color: var(--pdp-ink);
    font-size: 14px;
}
.pdp-rating-link {
    color: var(--pdp-ink-mute);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.pdp-rating-link:hover { border-bottom-color: var(--pdp-ink-mute); }

/* Price block */
.pdp-price-block { margin: 0 0 26px; padding: 0; background: transparent; }
.pdp-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}
.pdp-price {
    font-family: var(--pdp-display);
    font-size: clamp(30px, 3.3vw, 40px);
    line-height: 1;
    font-weight: 500;
    color: var(--pdp-ink);
    letter-spacing: -0.01em;
}
.pdp-price-original {
    font-family: var(--pdp-body);
    font-size: 14px;
    color: var(--pdp-ink-faint);
    text-decoration: line-through;
    font-weight: 400;
}
.pdp-price-original[hidden] { display: none; }
.pdp-price-meta {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-family: var(--pdp-body);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--pdp-gold);
}
.pdp-price-note { font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 10.5px; }
.pdp-price-note:empty { display: none; }
.pdp-savings { color: var(--pdp-ink-mute); font-weight: 400; }
.pdp-savings:empty { display: none; }

/* Size picker */
.pdp-size-picker { margin: 0 0 22px; }
.pdp-option-label {
    display: block;
    margin: 0 0 12px;
    font-family: var(--pdp-body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pdp-ink-mute);
    font-weight: 600;
}
.pdp-info .size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pdp-info .size-options input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.pdp-info .size-option {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px 16px;
    border: 1px solid var(--pdp-rule-strong);
    background: var(--pdp-bg-card);
    cursor: pointer;
    font-family: var(--pdp-body);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.pdp-info .size-option .size-label,
.pdp-info .size-option .size-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--pdp-ink);
}
.pdp-info .size-option .size-price {
    font-size: 11px;
    color: var(--pdp-ink-mute);
    letter-spacing: 0.04em;
}
.pdp-info .size-option:hover { border-color: var(--pdp-ink); }
.pdp-info .size-options input[type="radio"]:checked + .size-option,
.pdp-info .size-options label:has(input:checked) {
    border-color: var(--pdp-ink);
    background: var(--pdp-ink);
}
.pdp-info .size-options input[type="radio"]:checked + .size-option .size-label,
.pdp-info .size-options input[type="radio"]:checked + .size-option .size-name,
.pdp-info .size-options input[type="radio"]:checked + .size-option .size-price,
.pdp-info .size-options label:has(input:checked) .size-label,
.pdp-info .size-options label:has(input:checked) .size-name,
.pdp-info .size-options label:has(input:checked) .size-price {
    color: #fff;
}

/* Quantity row */
.pdp-quantity-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 24px;
}
.pdp-info .quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--pdp-rule-strong);
    background: var(--pdp-bg-card);
}
.pdp-info .quantity-btn {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--pdp-ink);
    font-size: 16px;
    cursor: pointer;
    transition: background 0.15s ease;
}
.pdp-info .quantity-btn:hover { background: var(--pdp-bg-soft); }
.pdp-info .quantity-input {
    width: 40px;
    height: 36px;
    border: 0;
    text-align: center;
    background: transparent;
    font-family: var(--pdp-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--pdp-ink);
    -moz-appearance: textfield;
}
.pdp-info .quantity-input::-webkit-outer-spin-button,
.pdp-info .quantity-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* CTA stack */
.pdp-cta-stack { display: flex; flex-direction: column; gap: 10px; margin: 0 0 26px; }
.pdp-cta {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 22px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-family: var(--pdp-body);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.pdp-cta-primary {
    background: var(--pdp-ink);
    color: #fff;
    border-color: var(--pdp-ink);
}
.pdp-cta-primary:hover {
    background: var(--pdp-gold);
    border-color: var(--pdp-gold);
    transform: translateY(-1px);
}
.pdp-cta-secondary {
    background: transparent;
    color: var(--pdp-ink);
    border-color: var(--pdp-ink);
}
.pdp-cta-secondary:hover {
    background: var(--pdp-ink);
    color: #fff;
}
.pdp-cta-ghost {
    background: transparent;
    color: var(--pdp-ink-mute);
    border: 0;
    text-transform: none;
    letter-spacing: 0.04em;
    font-size: 13px;
    padding: 10px 22px;
}
.pdp-cta-ghost:hover { color: var(--pdp-gold); }
.pdp-cta-ghost svg { opacity: 0.6; }

/* Trust strip (sits under CTA) */
.pdp-trust {
    list-style: none;
    margin: 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--pdp-rule);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pdp-trust li { padding: 0; }
.pdp-trust a {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 14px;
    row-gap: 2px;
    text-decoration: none;
    color: var(--pdp-ink);
    transition: color 0.2s ease;
}
.pdp-trust a:hover { color: var(--pdp-gold); }
.pdp-trust-icon {
    grid-row: span 2;
    align-self: start;
    color: var(--pdp-gold);
    margin-top: 2px;
}
.pdp-trust strong {
    font-family: var(--pdp-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pdp-ink);
}
.pdp-trust span:not(.pdp-trust-icon) {
    grid-column: 2;
    font-family: var(--pdp-body);
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--pdp-ink-mute);
}
.pdp-trust a:hover strong { color: var(--pdp-gold); }

/* Urgency banner */
.pdp-info .urgency-banner {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--pdp-gold-faint);
    border-left: 2px solid var(--pdp-gold);
    color: var(--pdp-gold);
    font-family: var(--pdp-body);
    font-size: 12px;
    letter-spacing: 0.04em;
}

/* === STICKY PILL NAV ==================================================== */
.pdp-pillnav {
    position: sticky;
    top: 70px;                /* below the site header */
    z-index: 30;
    background: rgba(253, 252, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--pdp-rule);
    border-bottom: 1px solid var(--pdp-rule);
}
.pdp-pillnav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
}
.pdp-pillnav-list::-webkit-scrollbar { display: none; }
.pdp-pillnav-list a {
    display: inline-block;
    padding: 18px 16px;
    color: var(--pdp-ink-mute);
    font-family: var(--pdp-body);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.pdp-pillnav-list a::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 12px;
    height: 1px;
    background: var(--pdp-gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pdp-pillnav-list a:hover { color: var(--pdp-ink); }
.pdp-pillnav-list a.is-active {
    color: var(--pdp-ink);
}
.pdp-pillnav-list a.is-active::after { transform: scaleX(1); }

/* === SECTIONS (shared) ================================================== */
.pdp-section {
    padding: 96px 0;
    scroll-margin-top: 130px;     /* offset for sticky header + pill nav */
}
.pdp-section-narrow .container,
.pdp-section .pdp-section-narrow {
    max-width: 880px;
    margin: 0 auto;
}
.pdp-section-eyebrow {
    font-family: var(--pdp-body);
    font-size: 10.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--pdp-gold);
    font-weight: 600;
    margin: 0 0 18px;
}
.pdp-section-title {
    font-family: var(--pdp-display);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--pdp-ink);
    margin: 0 0 32px;
    letter-spacing: -0.005em;
}
.pdp-section-link {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--pdp-body);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pdp-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--pdp-gold);
    padding-bottom: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.pdp-section-link:hover { color: var(--pdp-gold); }

/* === DESCRIPTION SECTION =============================================== */
.pdp-section-description { background: var(--pdp-bg); }
.pdp-editorial {
    font-family: var(--pdp-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 1.6vw, 24px);
    line-height: 1.55;
    color: var(--pdp-ink);
    margin: 0 0 56px;
    max-width: 720px;
    position: relative;
    padding-left: 28px;
}
.pdp-editorial::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--pdp-gold), var(--pdp-gold-soft));
}
.pdp-description-body { max-width: 720px; }
.pdp-description-text {
    font-family: var(--pdp-body);
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--pdp-ink-soft);
    margin: 0 0 28px;
}
.pdp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px 28px;
}
.pdp-feature-list li {
    position: relative;
    padding-left: 22px;
    font-family: var(--pdp-body);
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--pdp-ink-soft);
}
.pdp-feature-list li svg { display: none; }   /* icons swapped for serif bullet */
.pdp-feature-list li::before {
    content: '·';
    position: absolute;
    left: 4px;
    top: -4px;
    color: var(--pdp-gold);
    font-family: var(--pdp-display);
    font-size: 24px;
    line-height: 1;
}

/* === MOVEMENT (dark calibre callout) =================================== */
.pdp-section-movement {
    padding: 0;
    scroll-margin-top: 130px;
}
.pdp-movement-card {
    margin: 0;
    padding: 80px 60px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1815 60%, #221d12 100%);
    color: #f0e9d7;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--pdp-rule);
    border-bottom: 1px solid var(--pdp-rule);
}
.pdp-movement-card::before {
    /* Decorative gold rule */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, transparent 0%, var(--pdp-gold) 30%, var(--pdp-gold) 70%, transparent 100%);
}
.pdp-movement-card::after {
    /* Subtle radial highlight in upper-right */
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.pdp-movement-header { position: relative; z-index: 1; max-width: 560px; }
.pdp-movement-eyebrow {
    display: block;
    font-family: var(--pdp-body);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--pdp-gold);
    margin-bottom: 14px;
    font-weight: 600;
}
.pdp-movement-name {
    font-family: var(--pdp-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: 1.05;
    margin: 0 0 14px;
    color: #fff;
    letter-spacing: -0.01em;
}
.pdp-movement-sub {
    font-family: var(--pdp-body);
    font-size: 14px;
    color: rgba(240, 233, 215, 0.65);
    margin: 0 0 56px;
    max-width: 480px;
    line-height: 1.55;
}
.pdp-movement-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(184, 134, 11, 0.25);
    position: relative;
    z-index: 1;
}
.pdp-movement-stats li {
    padding: 32px 24px 0;
    border-right: 1px solid rgba(184, 134, 11, 0.2);
    text-align: left;
}
.pdp-movement-stats li:last-child { border-right: 0; }
.pdp-movement-stat-value {
    display: block;
    font-family: var(--pdp-display);
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.05;
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
}
.pdp-movement-stat-unit {
    font-size: 0.55em;
    color: rgba(240, 233, 215, 0.5);
    margin-left: 2px;
    letter-spacing: 0.04em;
}
.pdp-movement-stat-label {
    font-family: var(--pdp-body);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(184, 134, 11, 0.85);
    font-weight: 500;
}
.pdp-movement-card.is-empty { display: none; }

/* === SPECIFICATIONS ===================================================== */
.pdp-section-specs { background: #fff; }
.pdp-specs-list {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr);
    gap: 0;
    margin: 0;
    border-top: 1px solid var(--pdp-rule);
}
.pdp-specs-list dt {
    grid-column: 1;
    padding: 18px 16px 18px 0;
    font-family: var(--pdp-body);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pdp-ink-mute);
    font-weight: 500;
    border-bottom: 1px solid var(--pdp-rule);
}
.pdp-specs-list dd {
    grid-column: 2;
    margin: 0;
    padding: 18px 0;
    font-family: var(--pdp-body);
    font-size: 14.5px;
    color: var(--pdp-ink);
    border-bottom: 1px solid var(--pdp-rule);
    line-height: 1.5;
}

/* === PROVENANCE ========================================================= */
.pdp-section-provenance { background: var(--pdp-bg); }
.pdp-provenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.pdp-prov-card {
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--pdp-rule);
    border-radius: 0;
    position: relative;
}
.pdp-prov-card-label {
    display: block;
    font-family: var(--pdp-body);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pdp-gold);
    margin-bottom: 10px;
    font-weight: 600;
}
.pdp-prov-card-value {
    display: block;
    font-family: var(--pdp-display);
    font-size: 22px;
    color: var(--pdp-ink);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 6px;
}
.pdp-prov-card-note {
    font-family: var(--pdp-body);
    font-size: 12px;
    color: var(--pdp-ink-mute);
    line-height: 1.5;
    margin: 0;
}
.pdp-provenance-promise {
    padding: 28px 32px;
    background: var(--pdp-bg-soft);
    border-left: 3px solid var(--pdp-gold);
}
.pdp-provenance-promise p {
    margin: 0;
    font-family: var(--pdp-body);
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--pdp-ink-soft);
}
.pdp-provenance-promise strong {
    color: var(--pdp-gold);
    font-weight: 700;
}

/* === SHIPPING SECTION =================================================== */
.pdp-section-shipping { background: #fff; }
.pdp-shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.pdp-shipping-grid article {
    padding: 28px 0 0;
    border-top: 1px solid var(--pdp-rule);
}
.pdp-shipping-grid h4 {
    font-family: var(--pdp-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--pdp-ink);
    margin: 0 0 12px;
    letter-spacing: -0.005em;
}
.pdp-shipping-grid p {
    font-family: var(--pdp-body);
    font-size: 14px;
    color: var(--pdp-ink-soft);
    line-height: 1.65;
    margin: 0;
}
.pdp-shipping-grid a {
    color: var(--pdp-gold);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.pdp-shipping-promise {
    background: var(--pdp-bg-soft);
    border-top-color: var(--pdp-gold) !important;
    padding: 28px 24px;
}
.pdp-shipping-promise h4 { color: var(--pdp-gold); }

/* === LIGHTBOX (full-size image viewer) ================================= */
.pdp-lightbox.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 14, 11, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}
.pdp-lightbox.zoom-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.pdp-lightbox-image {
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    cursor: zoom-out;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pdp-lightbox.is-open .pdp-lightbox-image {
    transform: scale(1);
}
.pdp-lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 1;
}
.pdp-lightbox-close:hover {
    background: var(--pdp-gold);
    border-color: var(--pdp-gold);
}
@media (max-width: 768px) {
    .pdp-lightbox-image {
        max-width: 94vw;
        max-height: 80vh;
    }
    .pdp-lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* === MOBILE STICKY CTA ================================================== */
.pdp-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--pdp-rule-strong);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.05);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pdp-mobile-cta:not([hidden]) { display: block; }
.pdp-mobile-cta.is-visible { transform: translateY(0); }
.pdp-mobile-cta-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    max-width: 720px;
    margin: 0 auto;
}
.pdp-mobile-cta-price {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.pdp-mobile-cta-current {
    font-family: var(--pdp-display);
    font-size: 22px;
    color: var(--pdp-ink);
    font-weight: 500;
}
.pdp-mobile-cta-original {
    font-family: var(--pdp-body);
    font-size: 11px;
    color: var(--pdp-ink-faint);
    text-decoration: line-through;
    margin-top: 2px;
}
.pdp-mobile-cta-original[hidden] { display: none; }
.pdp-mobile-cta-btn {
    flex: 0 0 auto;
    padding: 14px 24px;
    background: var(--pdp-ink);
    color: #fff;
    border: 0;
    font-family: var(--pdp-body);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.pdp-mobile-cta-btn:hover { background: var(--pdp-gold); }

/* === RESPONSIVE ========================================================= */
@media (max-width: 1023px) {
    .pdp-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pdp-info {
        position: relative;
        max-height: none;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .pdp-hero { padding: 16px 0 56px; }
    .pdp-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .pdp-gallery-thumbs {
        order: 2;
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 4px;
    }
    .pdp-gallery-thumbs .thumbnail { width: 64px; height: 64px; flex-shrink: 0; }
    .pdp-gallery-main { order: 1; }
    .pdp-gallery-meta { display: none; }

    .pdp-pillnav { top: 60px; }
    .pdp-pillnav-list a { padding: 14px 14px; font-size: 11px; letter-spacing: 0.14em; }

    .pdp-section { padding: 64px 0; scroll-margin-top: 110px; }
    .pdp-section-eyebrow { font-size: 10px; letter-spacing: 0.28em; }
    .pdp-section-title { font-size: 24px; margin-bottom: 24px; }

    .pdp-editorial {
        font-size: 18px;
        padding-left: 18px;
        margin-bottom: 36px;
    }

    .pdp-movement-card { padding: 56px 24px; }
    .pdp-movement-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .pdp-movement-stats li {
        padding: 24px 16px 0;
        border-right: 1px solid rgba(184, 134, 11, 0.2);
    }
    .pdp-movement-stats li:nth-child(2n) { border-right: 0; }
    .pdp-movement-stats li:nth-child(n+3) { border-top: 1px solid rgba(184, 134, 11, 0.2); margin-top: 24px; padding-top: 24px; }

    .pdp-specs-list {
        grid-template-columns: 1fr;
    }
    .pdp-specs-list dt {
        padding: 14px 0 4px;
        border-bottom: 0;
    }
    .pdp-specs-list dd {
        padding: 0 0 14px;
    }

    /* Push body content above the mobile sticky bar so last buttons aren't hidden */
    body:has(.pdp-mobile-cta.is-visible) {
        padding-bottom: 76px;
    }
}

/* Hide mobile sticky CTA on desktop completely */
@media (min-width: 769px) {
    .pdp-mobile-cta { display: none !important; }
}
