/* ============================================
   PDP DEV — Aesop-style editorial redesign
   Isolated from live /product styles
   ============================================ */

:root {
    --pdp-bg: #f4f0ea;
    --pdp-ink: #1a1a1a;
    --pdp-muted: #6b6157;
    --pdp-accent: #6b7a4f;
    --pdp-line: #d9d3c7;
    --pdp-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --pdp-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --pdp-maxw: 1440px;
    --pdp-pad-x: 64px;
}

.pdp-dev-page {
    background: var(--pdp-bg);
    color: var(--pdp-ink);
    font-family: var(--pdp-sans);
}

.pdp {
    max-width: var(--pdp-maxw);
    margin: 0 auto;
    padding: 32px var(--pdp-pad-x) 96px;
}

.pdp__breadcrumb {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pdp-muted);
    margin-bottom: 48px;
}
.pdp__breadcrumb a {
    color: var(--pdp-muted);
    text-decoration: none;
}
.pdp__breadcrumb a:hover {
    color: var(--pdp-ink);
}
.pdp__breadcrumb span {
    margin: 0 6px;
}

.pdp__main {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 80px;
    align-items: start;
}

/* ── Gallery ── */
.pdp__gallery {
    position: sticky;
    top: 32px;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    align-items: start;
}
.pdp__thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pdp__thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition:
        border-color 0.2s ease,
        opacity 0.2s ease;
    opacity: 0.55;
}
.pdp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pdp__thumb:hover {
    opacity: 1;
}
.pdp__thumb.is-active {
    border-color: var(--pdp-ink);
    opacity: 1;
}
.pdp__stage {
    margin: 0;
    aspect-ratio: 1 / 1;
    background: #efeae2;
    overflow: hidden;
}
.pdp__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
}

/* ── Info column ── */
.pdp__info {
    padding-top: 8px;
}

.pdp__eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pdp-muted);
    margin: 0 0 16px;
}

.pdp__title {
    font-family: var(--pdp-serif);
    font-weight: 400;
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
}

.pdp__tagline {
    font-size: 15px;
    line-height: 1.6;
    color: var(--pdp-muted);
    margin: 0 0 28px;
    max-width: 44ch;
}

.pdp__rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--pdp-ink);
    margin: 0 0 28px;
}
.pdp__rating:hover .pdp__rating-text {
    color: var(--pdp-accent);
}
.pdp__rating-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 14px;
    line-height: 1;
    color: var(--pdp-line);
}
.pdp__rating-stars .star.is-full {
    color: var(--pdp-ink);
}
.pdp__rating-stars .star.is-half {
    background: linear-gradient(90deg, var(--pdp-ink) 50%, var(--pdp-line) 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pdp__rating-text {
    font-size: 12px;
    color: var(--pdp-muted);
    letter-spacing: 0.04em;
}

.pdp__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--pdp-line);
}
.pdp__price-cluster {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.pdp__stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--pdp-muted);
}
.pdp__stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pdp-muted);
    position: relative;
}
.pdp__stock--in .pdp__stock-dot {
    background: #6b7a4f;
    box-shadow: 0 0 0 4px rgba(107, 122, 79, 0.18);
}
.pdp__stock--low .pdp__stock-dot {
    background: #c98b2e;
    box-shadow: 0 0 0 4px rgba(201, 139, 46, 0.18);
}
.pdp__stock--out .pdp__stock-dot {
    background: #b3402b;
    box-shadow: 0 0 0 4px rgba(179, 64, 43, 0.15);
}
.pdp__stock--in .pdp__stock-label {
    color: #5d6a45;
}
.pdp__stock--low .pdp__stock-label {
    color: #8a5e1e;
}
.pdp__stock--out .pdp__stock-label {
    color: #8a3322;
}
.pdp__price {
    font-size: 22px;
    font-weight: 500;
    color: var(--pdp-ink);
    letter-spacing: -0.01em;
}
.pdp__price-compare {
    font-size: 15px;
    color: var(--pdp-muted);
    text-decoration: line-through;
}

.pdp__field-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pdp-muted);
    margin: 0 0 12px;
}

.pdp__variants {
    margin-bottom: 28px;
}
.pdp__variant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pdp__variant {
    appearance: none;
    background: transparent;
    border: 1px solid var(--pdp-line);
    color: var(--pdp-ink);
    font-family: inherit;
    font-size: 13px;
    padding: 10px 18px;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}
.pdp__variant:hover:not(:disabled) {
    border-color: var(--pdp-ink);
}
.pdp__variant.is-active {
    background: var(--pdp-ink);
    color: #fff;
    border-color: var(--pdp-ink);
}
.pdp__variant.is-oos,
.pdp__variant:disabled {
    color: var(--pdp-muted);
    text-decoration: line-through;
    cursor: not-allowed;
    opacity: 0.6;
}

.pdp__qty {
    margin-bottom: 28px;
}
.pdp__qty-stepper {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--pdp-line);
    height: 48px;
}
.pdp__qty-btn {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 0;
    font-size: 20px;
    color: var(--pdp-ink);
    cursor: pointer;
    line-height: 1;
}
.pdp__qty-btn:hover {
    background: rgba(0, 0, 0, 0.04);
}
.pdp__qty-input {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 0;
    border-left: 1px solid var(--pdp-line);
    border-right: 1px solid var(--pdp-line);
    background: transparent;
    text-align: center;
    font-size: 15px;
    font-family: inherit;
    color: var(--pdp-ink);
    min-width: 0;
}
.pdp__qty-input:focus {
    outline: none;
}

.pdp__cta {
    appearance: none;
    width: 100%;
    background: var(--pdp-ink);
    color: #fff;
    border: 0;
    padding: 18px 24px;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 16px;
}
.pdp__cta:hover:not(:disabled) {
    background: #000;
}
.pdp__cta:disabled {
    background: var(--pdp-muted);
    cursor: not-allowed;
}

.pdp__wishlist-link {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--pdp-ink);
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 32px;
}
.pdp__wishlist-link:hover {
    color: var(--pdp-accent);
}
.pdp__wishlist-link.is-wishlisted {
    color: var(--pdp-accent);
}

.pdp__perks {
    list-style: none;
    padding: 24px 0 0;
    margin: 24px 0 0;
    border-top: 1px solid var(--pdp-line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pdp__perk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 4px;
}
.pdp__perk-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pdp-accent);
}
.pdp__perk-icon svg {
    width: 28px;
    height: 28px;
}
.pdp__perk-label {
    font-size: 12px;
    color: var(--pdp-ink);
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 500;
}
.pdp__perk-label small {
    display: block;
    font-size: 11px;
    color: var(--pdp-muted);
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0.01em;
}
@media (max-width: 480px) {
    .pdp__perks {
        gap: 8px;
    }
    .pdp__perk-label {
        font-size: 11px;
    }
    .pdp__perk-label small {
        font-size: 10px;
    }
}

/* ── Hero banner (#8) ── */
.pdp__hero-banner {
    margin-top: 120px;
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.pdp__hero-bg {
    position: absolute;
    inset: 0;
    background: #efeae2;
}
.pdp__hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
}
.pdp__hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(244, 240, 234, 1) 0%,
        rgba(244, 240, 234, 0.98) 35%,
        rgba(244, 240, 234, 0.75) 55%,
        rgba(244, 240, 234, 0.25) 80%,
        transparent 100%
    );
}
.pdp__hero-content {
    position: relative;
    padding: 64px;
    max-width: 560px;
    color: var(--pdp-ink);
}
.pdp__hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pdp-muted);
    margin: 0 0 18px;
}
.pdp__hero-headline {
    font-family: var(--pdp-serif);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
}
.pdp__hero-sub {
    font-size: 16px;
    line-height: 1.65;
    color: var(--pdp-muted);
    margin: 0 0 12px;
    max-width: 42ch;
}
@media (max-width: 700px) {
    .pdp__hero-banner {
        min-height: 360px;
        margin-top: 80px;
    }
    .pdp__hero-content {
        padding: 32px 20px;
    }
    .pdp__hero-headline {
        font-size: 32px;
    }
}

/* ── Product video (#7) ── */
.pdp__video {
    margin-top: 120px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.pdp__video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
    overflow: hidden;
    cursor: pointer;
}
.pdp__video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition:
        opacity 0.3s ease,
        transform 0.5s ease;
}
.pdp__video-frame:hover .pdp__video-poster {
    opacity: 0.6;
    transform: scale(1.02);
}
.pdp__video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 0;
    color: var(--pdp-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}
.pdp__video-frame:hover .pdp__video-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
}
.pdp__video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.pdp__video-caption {
    margin: 16px 0 0;
    text-align: center;
    font-family: var(--pdp-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--pdp-muted);
}

/* ── Reviews (#6) ── */
.pdp__reviews {
    margin-top: 120px;
}
.pdp__reviews-head {
    border-top: 1px solid var(--pdp-line);
    padding-top: 48px;
    margin-bottom: 48px;
    text-align: center;
}
.pdp__reviews-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pdp-muted);
    margin: 0 0 14px;
}
.pdp__reviews-title {
    font-family: var(--pdp-serif);
    font-weight: 400;
    font-size: 36px;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
    color: var(--pdp-ink);
}
.pdp__reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--pdp-muted);
}
.pdp__reviews-avg {
    color: var(--pdp-ink);
    font-weight: 500;
}
.pdp__reviews-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.pdp__review {
    padding: 4px 0;
}
.pdp__review-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}
.pdp__review-title {
    font-family: var(--pdp-serif);
    font-weight: 400;
    font-size: 19px;
    margin: 0;
    color: var(--pdp-ink);
}
.pdp__review-body {
    font-size: 14px;
    line-height: 1.65;
    color: var(--pdp-muted);
    margin: 0 0 14px;
}
.pdp__review-foot {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--pdp-muted);
}
.pdp__review-author {
    color: var(--pdp-ink);
}
.pdp__review-badge {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pdp-accent);
    border: 1px solid var(--pdp-accent);
    padding: 2px 6px;
}
.pdp__review-date::before {
    content: '·';
    margin-right: 8px;
    color: var(--pdp-line);
}
.pdp__reviews-foot {
    text-align: center;
    margin-top: 48px;
}
.pdp__reviews-write {
    appearance: none;
    background: transparent;
    border: 1px solid var(--pdp-ink);
    color: var(--pdp-ink);
    padding: 14px 32px;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.pdp__reviews-write:hover {
    background: var(--pdp-ink);
    color: #fff;
}

@media (max-width: 900px) {
    .pdp__reviews-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pdp__video {
        margin-top: 80px;
    }
    .pdp__reviews {
        margin-top: 80px;
    }
}

/* ── Sticky add-to-cart bar ── */
.pdp__sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(244, 240, 234, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--pdp-line);
    transform: translateY(100%);
    transition: transform 0.35s ease;
    z-index: 50;
}
.pdp__sticky.is-visible {
    transform: translateY(0);
}
.pdp__sticky-inner {
    max-width: var(--pdp-maxw);
    margin: 0 auto;
    padding: 14px var(--pdp-pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.pdp__sticky-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}
.pdp__sticky-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    background: #efeae2;
    flex: 0 0 48px;
}
.pdp__sticky-meta {
    min-width: 0;
}
.pdp__sticky-name {
    font-family: var(--pdp-serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--pdp-ink);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}
.pdp__sticky-price {
    font-size: 13px;
    color: var(--pdp-muted);
    margin: 2px 0 0;
}
.pdp__sticky-cta {
    appearance: none;
    background: var(--pdp-ink);
    color: #fff;
    border: 0;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
    flex: 0 0 auto;
}
.pdp__sticky-cta:hover {
    background: #000;
}

/* Lift support float button when sticky bar is visible */
body.pdp-sticky-on .support-float-wrapper {
    bottom: 110px;
    transition: bottom 0.3s ease;
}

@media (max-width: 900px) {
    /* Sit above mobile bottom nav (~60px) */
    .pdp__sticky {
        bottom: 60px;
    }
    body.pdp-sticky-on .support-float-wrapper {
        bottom: 150px;
    }
}

@media (max-width: 700px) {
    .pdp__sticky-inner {
        padding: 12px 16px;
        gap: 12px;
    }
    .pdp__sticky-thumb {
        display: none;
    }
    .pdp__sticky-name {
        font-size: 14px;
        max-width: 180px;
    }
    .pdp__sticky-cta {
        padding: 12px 18px;
        font-size: 11px;
    }
}

/* ── Dev source notes (sandbox only) ── */
.pdp__dev-note {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 10px;
    background: #fff7d6;
    border: 1px dashed #c9a800;
    color: #6b5400;
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 2px;
}
.pdp__dev-note code {
    background: rgba(0, 0, 0, 0.06);
    padding: 1px 4px;
    border-radius: 2px;
}
.pdp__dev-note.is-empty {
    background: #ffe6e0;
    border-color: #c95a40;
    color: #7a2e1a;
}

.pdp__editorial {
    margin-top: 120px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.pdp__editorial-media {
    /* aspect-ratio: 4 / 5; */
    background: #efeae2;
    overflow: hidden;
}
.pdp__editorial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pdp__editorial-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pdp-muted);
    margin: 0 0 20px;
}
.pdp__editorial-heading {
    font-family: var(--pdp-serif);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 24px;
    color: var(--pdp-ink);
    max-width: 14ch;
}
.pdp__editorial-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--pdp-muted);
    max-width: 50ch;
}
.pdp__editorial-body p {
    margin: 0 0 14px;
}
.pdp__editorial-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .pdp__editorial {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 80px;
    }
    .pdp__editorial-heading {
        font-size: 28px;
    }
}

.pdp__accordion {
    margin: 120px auto 0;
    border-top: 1px solid var(--pdp-line);
    max-width: 880px;
}
.pdp__acc-faq {
    margin: 0;
}
.pdp__acc-faq dt {
    font-weight: 500;
    color: var(--pdp-ink);
    margin-top: 14px;
}
.pdp__acc-faq dt:first-child {
    margin-top: 0;
}
.pdp__acc-faq dd {
    margin: 4px 0 0;
    color: var(--pdp-muted);
    line-height: 1.6;
}
.pdp__acc-item {
    border-bottom: 1px solid var(--pdp-line);
}
.pdp__acc-trigger {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--pdp-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--pdp-ink);
    text-align: left;
    letter-spacing: -0.01em;
}
.pdp__acc-trigger:hover {
    color: var(--pdp-accent);
}
.pdp__acc-icon {
    width: 14px;
    height: 14px;
    position: relative;
    flex: 0 0 14px;
}
.pdp__acc-icon::before,
.pdp__acc-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.25s ease;
}
.pdp__acc-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}
.pdp__acc-icon::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}
.pdp__acc-trigger[aria-expanded='true'] .pdp__acc-icon::after {
    transform: translateX(-50%) scaleY(0);
}
.pdp__acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.pdp__acc-panel.is-open {
    max-height: 2000px;
}
.pdp__acc-content {
    padding: 0 0 32px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--pdp-muted);
    max-width: 68ch;
}
.pdp__acc-content p {
    margin: 0 0 14px;
}
.pdp__acc-content p:last-child {
    margin-bottom: 0;
}
.pdp__acc-content ul,
.pdp__acc-content ol {
    margin: 0 0 14px;
    padding-left: 20px;
}
.pdp__acc-content li {
    margin-bottom: 6px;
}
.pdp__acc-content strong {
    color: var(--pdp-ink);
    font-weight: 500;
}
.pdp__pairs {
    margin-top: 120px;
}
.pdp__pairs-head {
    margin-bottom: 48px;
}
.pdp__pairs-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pdp-muted);
    margin: 0 0 10px;
}
.pdp__pairs-title {
    font-family: var(--pdp-serif);
    font-weight: 400;
    font-size: 32px;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--pdp-ink);
}
.pdp__pairs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}
.pdp__pair {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    align-items: start;
}
.pdp__pair-img {
    aspect-ratio: 1 / 1;
    background: #efeae2;
    overflow: hidden;
    display: block;
}
.pdp__pair-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.pdp__pair-img:hover img {
    transform: scale(1.05);
}
.pdp__pair-name {
    font-family: var(--pdp-serif);
    font-weight: 400;
    font-size: 19px;
    line-height: 1.25;
    margin: 0 0 8px;
}
.pdp__pair-name a {
    color: var(--pdp-ink);
    text-decoration: none;
}
.pdp__pair-name a:hover {
    color: var(--pdp-accent);
}
.pdp__pair-blurb {
    font-size: 13px;
    line-height: 1.55;
    color: var(--pdp-muted);
    margin: 0 0 14px;
}
.pdp__pair-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.pdp__pair-price {
    font-size: 13px;
    color: var(--pdp-ink);
}
.pdp__pair-link {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pdp-ink);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.pdp__pair-link:hover {
    color: var(--pdp-accent);
}

@media (max-width: 900px) {
    .pdp__pairs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .pdp__pair {
        grid-template-columns: 110px 1fr;
        gap: 14px;
    }
}

.pdp__related {
    margin-top: 120px;
}
.pdp__related-head {
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--pdp-line);
}
.pdp__related-title {
    font-family: var(--pdp-serif);
    font-weight: 400;
    font-size: 32px;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--pdp-ink);
}
.pdp__related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
}
.pdp__rcard {
    display: block;
    color: var(--pdp-ink);
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.pdp__rcard:hover {
    opacity: 0.85;
}
.pdp__rcard-img {
    aspect-ratio: 1 / 1;
    background: #efeae2;
    overflow: hidden;
    margin-bottom: 18px;
}
.pdp__rcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.pdp__rcard:hover .pdp__rcard-img img {
    transform: scale(1.03);
}
.pdp__rcard-eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pdp-muted);
    margin: 0 0 6px;
}
.pdp__rcard-name {
    font-family: var(--pdp-serif);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 6px;
    color: var(--pdp-ink);
}
.pdp__rcard-price {
    font-size: 13px;
    color: var(--pdp-muted);
    margin: 0;
}

@media (max-width: 1100px) {
    .pdp__related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 700px) {
    .pdp__related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
    .pdp__related-title {
        font-size: 26px;
    }
}

@media (max-width: 900px) {
    .pdp {
        padding: 24px 20px 64px;
    }
    .pdp__main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pdp__gallery {
        position: static;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pdp__thumbs {
        flex-direction: row;
        order: 2;
        overflow-x: auto;
    }
    .pdp__thumb {
        flex: 0 0 64px;
        width: 64px;
        height: 64px;
    }
    .pdp__stage {
        order: 1;
    }
    .pdp__title {
        font-size: 32px;
    }
}

@media (max-width: 900px) {
    .pdp {
        padding: 24px 20px 64px;
    }
    .pdp__main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pdp__gallery {
        position: static;
    }
}
