/* Product detail page (PDP) - Shopify-traditional two-column layout.
   Built on top of catalog.css tokens; gold + cream palette for the buy
   box matches the rest of the site. */

.pdp-main {
    padding: clamp(1rem, 3vw, 2rem) 0 5rem;
}
.pdp-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.75rem);
}

/* --- Breadcrumb --------------------------------------------------------- */
.breadcrumbs {
    margin: 0.25rem 0 1.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}
.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.5rem;
    align-items: center;
}
.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.breadcrumbs li + li::before {
    content: "/";
    color: rgba(255,255,255,0.25);
    margin-right: 0.25rem;
}
.breadcrumbs a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.15s ease;
}
.breadcrumbs a:hover { color: #E9C46A; }
.breadcrumbs [aria-current="page"] { color: #F4EEDC; font-weight: 600; }

/* --- Product shell (gallery + buy box) --------------------------------- */
.pdp-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
@media (max-width: 880px) {
    .pdp-shell { grid-template-columns: 1fr; }
}

/* --- Gallery ----------------------------------------------------------- */
.pdp-gallery {
    /* Reset the global `section` rule in styles.css that adds --section-padding
       on all sides and caps max-width at 1200px. */
    padding: 0;
    max-width: none;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.pdp-info {
    padding: 0;
    max-width: none;
    margin: 0;
}
.pdp-main-image {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdp-active-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Default: anchor to top so lifestyle / couples shots keep heads
       in frame. The product composite (first thumb) gets .is-product
       added by product-page.js to fall back to center alignment. */
    object-position: top center;
    filter: none;
    transition: opacity 0.25s ease;
    position: relative;
    z-index: 1;
}
.pdp-active-image.is-product { object-position: center; }
/* Kill the starfield behind the PDP main image (was the cosmic warp-zoom). */
.pdp-main-image::before,
.pdp-main-image::after { content: none; display: none; background: none; animation: none; }

/* Thumbnail strip — fills the full width below the main image so the
   thumbs tile across the same width as the main gallery photo. Each
   thumb flex-grows to take an equal share. */
.pdp-thumb-strip {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    justify-content: stretch;
}
.pdp-thumb {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.85;
    box-sizing: border-box;
    transition: opacity 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.pdp-thumb.is-active {
    border-color: #E9C46A;
}
.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.pdp-thumb:hover { opacity: 1; transform: translateY(-1px); }
.pdp-thumb.is-active {
    opacity: 1;
    box-shadow: none;
}

/* --- Design plates: bare design rendered at 512x512 on pure black,
   shown as a small gallery below the main composite image. --- */
.pdp-design-plates {
    margin: 1rem 0 0;
}
.pdp-plate-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(244, 238, 220, 0.55);
    margin: 0 0 0.55rem;
}
.pdp-plate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
    gap: 0.5rem;
}
.pdp-plate {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
/* Solo plate: shown by default below the main image. Bigger and centered. */
.pdp-plate--solo {
    width: 100%;
    max-width: 220px;
    margin-inline: auto;
    margin-top: 0.25rem;
}
.pdp-plate--solo .pdp-plate-btn { aspect-ratio: 1 / 1; }

/* See-more-like-this CTA: routes to /catalog.html?similar=<slug>&theme=<theme>. */
.pdp-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    background: rgba(233, 196, 106, 0.1);
    border: 1px solid rgba(233, 196, 106, 0.45);
    color: #E9C46A;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.pdp-see-more:hover {
    background: rgba(233, 196, 106, 0.2);
    border-color: #E9C46A;
    color: #F4EEDC;
    transform: translateY(-1px);
}
.pdp-see-more svg { transition: transform 0.18s ease; }
.pdp-see-more:hover svg { transform: translateX(2px); }
.pdp-plate-btn {
    appearance: none;
    background: #000;
    border: 1px solid rgba(244, 238, 220, 0.1);
    border-radius: 10px;
    padding: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    display: block;
}
.pdp-plate-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pdp-plate-btn:hover {
    border-color: rgba(233, 196, 106, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}
.pdp-plate-btn:focus-visible {
    outline: none;
    border-color: #E9C46A;
    box-shadow: 0 0 0 2px rgba(233, 196, 106, 0.45);
}
.pdp-plate-caption {
    text-align: center;
    color: rgba(244, 238, 220, 0.6);
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

/* --- Buy box ----------------------------------------------------------- */
.pdp-info {
    padding-top: 0.25rem;
    color: #F4EEDC;
    container-type: inline-size;
}
.pdp-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: #E9C46A;
    margin: 0 0 0.65rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
}
.pdp-eyebrow a { color: inherit; text-decoration: none; }
.pdp-eyebrow a:hover { color: #F4EEDC; }

.pdp-name {
    font-family: 'Fraunces', 'Bebas Neue', serif;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 0.85rem;
    color: #F4EEDC;
    white-space: nowrap;
    /* No ellipsis: the font is sized to the buy-box width so the longest
       "Three <Word> Moon" title always fits on one line. */
    /* Fallback (no container queries) - scale to viewport. */
    font-size: min(2.5rem, 6.2vw);
    /* Modern: scale to the buy-box container width. */
    font-size: min(2.5rem, 7.4cqi);
}

.pdp-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem 1.25rem;
    font-size: 0.95rem;
    color: rgba(244, 238, 220, 0.78);
    margin-bottom: 1.15rem;
}
.pdp-rating .pdp-stars {
    color: #ffd25c;
    letter-spacing: 0.08em;
    font-size: 1.05rem;
    line-height: 1;
}
/* Amazon-style summary unit: ★★★★★ 4.8 (416). All clickable, jumps to
   #reviews. Tight visual grouping — number sits inches from the stars,
   parenthesized count immediately follows. */
.pdp-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: inherit;
    text-decoration: none;
    line-height: 1;
    transition: color 0.15s ease;
}
.pdp-rating-summary strong {
    color: #F4EEDC;
    font-weight: 800;
    font-size: 1rem;
    font-feature-settings: "tnum", "lnum";
}
.pdp-rating-count {
    color: rgba(244, 238, 220, 0.65);
    font-feature-settings: "tnum", "lnum";
    border-bottom: 1px dotted rgba(244, 238, 220, 0.35);
    transition: color 0.15s ease, border-bottom-color 0.15s ease;
}
.pdp-rating-summary:hover,
.pdp-rating-summary:focus-visible { color: #ffd25c; }
.pdp-rating-summary:hover strong,
.pdp-rating-summary:focus-visible strong { color: #ffd25c; }
.pdp-rating-summary:hover .pdp-rating-count,
.pdp-rating-summary:focus-visible .pdp-rating-count {
    color: #ffd25c;
    border-bottom-color: #ffd25c;
}
.pdp-rating-chunk {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1.2;
}
.pdp-rating-sold {
    color: #ffd25c;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-feature-settings: "tnum", "lnum";
}
.pdp-sold-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(233, 196, 106, 0.12);
    border: 1px solid rgba(233, 196, 106, 0.35);
    color: #ffd25c;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}
.pdp-sold-chip i { font-size: 0.85rem; opacity: 0.9; }
.pdp-rating--sold-only { gap: 0; }

.pdp-price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(244, 238, 220, 0.08);
}
.pdp-price-current {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #F4EEDC;
    line-height: 1;
    letter-spacing: -0.02em;
    font-feature-settings: "tnum", "lnum";
    font-variant-numeric: tabular-nums lining-nums;
}
.pdp-price-meta {
    color: rgba(244, 238, 220, 0.6);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.pdp-short-desc {
    color: rgba(244, 238, 220, 0.78);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.pdp-activates {
    margin: 0 0 1.5rem;
    font-size: 0.85rem;
    color: rgba(244, 238, 220, 0.78);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.pdp-activates-label {
    color: #E9C46A;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    margin-right: 0.35rem;
    font-family: 'DM Sans', sans-serif;
}
.pdp-activates strong { color: #F4EEDC; font-weight: 700; }
.pdp-activates-sep { opacity: 0.5; }

/* --- Buy form: variants + qty + ATC ----------------------------------- */
.pdp-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.25rem;
}
.pdp-variant-group { display: flex; flex-direction: column; gap: 0.55rem; }
.pdp-variant-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
}
.pdp-variant-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(244, 238, 220, 0.55);
    font-weight: 700;
}
.pdp-variant-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: #F4EEDC;
    font-weight: 600;
}

.pdp-size-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.45rem;
}
@media (max-width: 480px) {
    .pdp-size-grid { grid-template-columns: repeat(5, 1fr); gap: 0.4rem; }
}
.pdp-size-pill {
    background: rgba(244, 238, 220, 0.04);
    border: 1px solid rgba(244, 238, 220, 0.18);
    color: #F4EEDC;
    border-radius: 8px;
    padding: 0.6rem 0.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
    text-align: center;
}
.pdp-size-pill:hover { border-color: #E9C46A; color: #E9C46A; }
.pdp-size-pill.is-active {
    background: #F4EEDC;
    color: #05010F;
    border-color: #F4EEDC;
}

/* Qty stepper */
/* The Quantity variant-group has a stepper + a white "Add to Cart"
   button on the row below the QUANTITY label. Stepper is left-aligned
   at its fixed width; the button takes the remaining space. */
.pdp-variant-group.pdp-qty-row {
    /* Stay column so the QUANTITY label sits on top, same as every
       other variant-group on the page. */
    flex-direction: column;
    align-items: stretch;
}
.pdp-variant-group.pdp-qty-row .pdp-qty-cluster {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
}
.pdp-qty {
    display: inline-flex;
    align-items: center;
    background: rgba(244, 238, 220, 0.05);
    border: 1px solid rgba(244, 238, 220, 0.18);
    border-radius: 10px;
    height: 48px;
    width: 160px;
    flex-shrink: 0;
}
/* White ADD TO CART button that fills the empty space next to the stepper. */
.pdp-add-inline {
    flex: 1 1 auto;
    min-width: 0;
    height: 48px;
    background: #ffffff;
    color: #05010F;
    border: 1px solid #ffffff;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 0.92rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    white-space: nowrap;
}
.pdp-add-inline .pdp-add-inline-label { white-space: nowrap; }
.pdp-add-inline:hover {
    background: #E9C46A;
    border-color: #E9C46A;
    color: #05010F;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -12px rgba(233,196,106,0.55);
}
.pdp-add-inline.is-added {
    background: #6dd86d;
    border-color: #6dd86d;
    color: #032b03;
    pointer-events: none;
}
.pdp-add-inline svg { width: 16px; height: 16px; flex-shrink: 0; }
.pdp-qty .qty-btn {
    background: transparent;
    border: 0;
    color: #F4EEDC;
    font-size: 1.2rem;
    width: 44px;
    height: 100%;
    cursor: pointer;
    font-family: inherit;
}
.pdp-qty .qty-btn:hover { color: #E9C46A; }
.pdp-qty .qty-input {
    flex: 1;
    background: transparent;
    border: 0;
    color: #F4EEDC;
    text-align: center;
    font-size: 1rem;
    font-family: inherit;
    width: 0;
    -moz-appearance: textfield;
}
.pdp-qty .qty-input::-webkit-outer-spin-button,
.pdp-qty .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-qty .qty-input:focus { outline: none; }

/* Primary ATC button (gold, chunky, Shopify-style) */
.pdp-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 1.05rem 1.5rem;
    background: #E9C46A;
    color: #05010F;
    border: 0;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 3px 0 rgba(0,0,0,0.3);
}
.pdp-add-to-cart:hover {
    transform: translateY(-1px);
    background: #F3D17A;
    box-shadow: 0 5px 0 rgba(0,0,0,0.3);
}
.pdp-add-to-cart:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.3);
}
.pdp-add-to-cart[disabled] { opacity: 0.65; cursor: default; }
.pdp-add-label { letter-spacing: 0.14em; }
.pdp-add-total {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
}

/* --- Bundle picker (primary conversion path, sits above single-tee CTA) - */
.pdp-bundle-row {
    margin: 0.5rem 0 0;
    padding: 1.1rem 1rem 1.1rem;
    background:
        linear-gradient(180deg, rgba(233, 196, 106, 0.08) 0%, rgba(233, 196, 106, 0.02) 100%);
    border: 1px solid rgba(233, 196, 106, 0.28);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    box-shadow:
        0 10px 30px -18px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.pdp-bundle-heading {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E9C46A;
    font-weight: 800;
    text-align: center;
}
.pdp-bundle-shipping {
    margin: 2px 0 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #4ade80;
    font-weight: 700;
    text-align: center;
}
.pdp-bundle-grid {
    display: grid;
    /* Two cards side-by-side when the column has room (~380px+),
       stacking when it doesn't. */
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.7rem;
}
/* When a bundle is actively expanded (size pickers showing), hide the
   sibling card so the active one gets the full column width — five
   shirt-rows need room and an empty card next to them looks broken. */
.pdp-bundle-grid:has(.pdp-bundle-btn.is-active) {
    grid-template-columns: 1fr;
}
.pdp-bundle-grid:has(.pdp-bundle-btn.is-active) .pdp-bundle-btn:not(.is-active) {
    display: none;
}
/* And hide the standalone Size + Quantity pickers above the bundle —
   the active bundle already has per-shirt size dropdowns so showing
   the single-item controls would just confuse the shopper. */
.pdp-form:has(.pdp-bundle-btn.is-active) .pdp-variant-group {
    display: none;
}

/* --- Fanned tees at the top of each bundle card -------------------------
   Mirrors the homepage bundles' visual: a small fanned shirt stack sitting
   on a white fade-zone that ramps back to the card's dark surface just
   above the headline copy. */
/* Higher specificity (double class) so the padding-shorthand on
   .pdp-bundle-btn declared later in the file doesn't reset our zero. */
.pdp-bundle-btn.pdp-bundle-btn--fan {
    padding-top: 0;
}
.pdp-bundle-fan {
    position: relative;
    width: calc(100% + 1.9rem);
    margin: 0 -0.95rem 0.65rem;
    height: 140px;
    background: linear-gradient(to bottom,
        #ffffff 0%,
        #ffffff 72%,
        rgba(255, 255, 255, 0) 100%);
    border-radius: 14px 14px 0 0;
    perspective: 1100px;
    pointer-events: none;
    overflow: visible;
}
.pdp-bundle-fan-img {
    position: absolute;
    top: 50%; left: 50%;
    object-fit: contain;
    transform-origin: 50% 60%;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
    transition: transform 0.35s ease;
}
.pdp-bundle-fan--3 .pdp-bundle-fan-img {
    --offset: calc(var(--i) - 1);
    width: 92px; height: 92px;
    transform: translate(calc(-50% + (var(--offset) * 28px)), -50%) rotate(calc(var(--offset) * 8deg));
}
.pdp-bundle-fan--3 .pdp-bundle-fan-img[style*="--i:0"] { z-index: 1; }
.pdp-bundle-fan--3 .pdp-bundle-fan-img[style*="--i:2"] { z-index: 1; }
.pdp-bundle-fan--3 .pdp-bundle-fan-img[style*="--i:1"] { z-index: 3; }
.pdp-bundle-fan--5 .pdp-bundle-fan-img {
    --offset: calc(var(--i) - 2);
    width: 78px; height: 78px;
    transform: translate(calc(-50% + (var(--offset) * 22px)), -50%) rotate(calc(var(--offset) * 7deg));
}
.pdp-bundle-fan--5 .pdp-bundle-fan-img[style*="--i:0"] { z-index: 1; }
.pdp-bundle-fan--5 .pdp-bundle-fan-img[style*="--i:4"] { z-index: 1; }
.pdp-bundle-fan--5 .pdp-bundle-fan-img[style*="--i:1"] { z-index: 2; }
.pdp-bundle-fan--5 .pdp-bundle-fan-img[style*="--i:3"] { z-index: 2; }
.pdp-bundle-fan--5 .pdp-bundle-fan-img[style*="--i:2"] { z-index: 3; }
.pdp-bundle-btn--fan:hover .pdp-bundle-fan--3 .pdp-bundle-fan-img {
    transform: translate(calc(-50% + (var(--offset) * 36px)), -50%) rotate(calc(var(--offset) * 10deg));
}
.pdp-bundle-btn--fan:hover .pdp-bundle-fan--5 .pdp-bundle-fan-img {
    transform: translate(calc(-50% + (var(--offset) * 28px)), -50%) rotate(calc(var(--offset) * 9deg));
}
/* Ribbon needs to render above the white fade zone. */
.pdp-bundle-btn--fan .pdp-bundle-ribbon { z-index: 5; }
.pdp-bundle-btn {
    position: relative;
    background: rgba(11, 11, 31, 0.65);
    border: 1.5px solid rgba(244, 238, 220, 0.16);
    color: #F4EEDC;
    border-radius: 14px;
    padding: 1.1rem 0.95rem 0.9rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: background 0.18s ease, border-color 0.18s ease,
                transform 0.18s ease, box-shadow 0.18s ease;
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
}
.pdp-bundle-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(80% 50% at 50% 0%, rgba(233, 196, 106, 0.10), transparent 70%);
    opacity: 0;
    transition: opacity 0.18s ease;
}
.pdp-bundle-btn:hover {
    border-color: #E9C46A;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -16px rgba(233, 196, 106, 0.4);
}
.pdp-bundle-btn:hover::before { opacity: 1; }
.pdp-bundle-btn[disabled] { opacity: 0.55; cursor: default; transform: none; }

/* Ribbon on the top-right corner: "Most popular" / "Best value" */
.pdp-bundle-ribbon {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    background: #E9C46A;
    color: #1a1428;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.pdp-bundle-ribbon--alt {
    background: rgba(244, 238, 220, 0.92);
    color: #1a1428;
}

.pdp-bundle-pack {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(244, 238, 220, 0.7);
    line-height: 1;
    margin-top: 0.15rem;
}
.pdp-bundle-perunit {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin: 0.3rem 0 0.05rem;
    line-height: 1;
}
.pdp-bundle-perunit strong {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 2.2rem;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
    font-feature-settings: "tnum", "lnum";
    font-variant-numeric: tabular-nums lining-nums;
}
.pdp-bundle-currency {
    font-size: 0.55em;          /* relative to parent strong */
    font-weight: 600;
    color: rgba(244, 238, 220, 0.55);
    margin-right: 0.05em;
    vertical-align: 0.5em;
    letter-spacing: 0;
}
.pdp-bundle-each {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(244, 238, 220, 0.65);
    letter-spacing: 0.02em;
}
.pdp-bundle-totals {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: rgba(244, 238, 220, 0.75);
    font-weight: 500;
    line-height: 1.3;
    font-feature-settings: "tnum", "lnum";
    font-variant-numeric: tabular-nums lining-nums;
}
.pdp-bundle-totals b {
    color: #F4EEDC;
    font-weight: 700;
}
.pdp-bundle-strike {
    text-decoration: line-through;
    color: rgba(244, 238, 220, 0.4);
    font-size: 0.78rem;
    font-weight: 500;
    margin-left: 0.25rem;
}
.pdp-bundle-save {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.74rem;
    color: #6dd86d;
    letter-spacing: 0.02em;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    margin-top: 0.1rem;
}
.pdp-bundle-save i { font-size: 0.72rem; }
.pdp-bundle-shipping {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.74rem;
    color: #6dd86d;
    letter-spacing: 0.02em;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    margin-top: 0.1rem;
}
.pdp-bundle-shipping i { font-size: 0.72rem; }
/* "Tap to choose sizes" hint - visible only when not yet activated */
.pdp-bundle-hint {
    margin-top: 0.5rem;
    font-size: 0.74rem;
    color: rgba(244, 238, 220, 0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    transition: opacity 0.15s ease;
}
.pdp-bundle-btn.is-active .pdp-bundle-hint { display: none; }

/* Inline per-shirt size selectors (only revealed once card is active) */
.pdp-bundle-config[hidden] { display: none; }
.pdp-bundle-config {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(244, 238, 220, 0.16);
    animation: pdp-bundle-config-in 0.22s ease-out;
}
@keyframes pdp-bundle-config-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: none; }
}
.pdp-bundle-slot {
    /* Two-column grid: thumb on the left (spans both rows), label + size
       pills stacked on the right. Makes it obvious every shirt in the
       bundle is the same design. */
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.7rem;
    row-gap: 0.35rem;
    align-items: center;
    background: rgba(11, 11, 31, 0.55);
    border: 1px solid rgba(244, 238, 220, 0.12);
    border-radius: 10px;
    padding: 0.6rem 0.65rem;
}
.pdp-bundle-slot-thumb {
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid rgba(244, 238, 220, 0.2);
    border-radius: 8px;
    padding: 3px;
    display: block;
}
.pdp-bundle-slot-label {
    grid-column: 2;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(244, 238, 220, 0.7);
    text-transform: uppercase;
}
/* Bundle slot uses a dropdown across all viewports - simpler scan for the
   shopper, less visual noise next to the thumbnail. The pill grid is
   kept in the DOM for accessibility / fallback but hidden visually. */
.pdp-bundle-slot-pills {
    display: none;
}
.pdp-bundle-slot-select {
    grid-column: 2;
    display: block;
    width: 100%;
    padding: 10px 40px 10px 14px;
    background: linear-gradient(180deg, rgba(244, 238, 220, 0.06), rgba(244, 238, 220, 0.02)),
                url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' fill='none' stroke='%23E9C46A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat;
    background-position: right 14px center;
    background-size: auto, 12px 7px;
    background-color: transparent;
    color: #F4EEDC;
    border: 1px solid rgba(244, 238, 220, 0.2);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.pdp-bundle-slot-select:focus,
.pdp-bundle-slot-select:hover {
    border-color: #E9C46A;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(233, 196, 106, 0.18);
}
.pdp-bundle-slot-select option { background: #0a0a1a; color: #F4EEDC; font-weight: 600; }
@media (max-width: 480px) {
    .pdp-bundle-slot-pills { grid-template-columns: repeat(5, 1fr); }
}
/* Match the top-of-page size pills exactly so the bundle pills feel native. */
.pdp-bundle-pill {
    background: rgba(244, 238, 220, 0.04);
    border: 1px solid rgba(244, 238, 220, 0.18);
    color: #F4EEDC;
    border-radius: 8px;
    padding: 0.55rem 0.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease,
                color 0.15s ease, transform 0.15s ease;
    text-align: center;
}
.pdp-bundle-pill:hover { border-color: #E9C46A; color: #E9C46A; }
.pdp-bundle-pill.is-active {
    background: #F4EEDC;
    color: #05010F;
    border-color: #F4EEDC;
}
.pdp-bundle-pill:focus-visible {
    outline: 2px solid #E9C46A;
    outline-offset: 1px;
}

/* The "Add N for $X each" CTA - only visible once activated */
.pdp-bundle-confirm[hidden] { display: none; }
.pdp-bundle-confirm {
    margin-top: 0.85rem;
    padding: 0.85rem 1rem;
    background: #E9C46A;
    color: #05010F;
    border: 0;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 0.86rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
    width: 100%;
}
.pdp-bundle-confirm:hover {
    background: #F3D17A;
    transform: translateY(-1px);
}
.pdp-bundle-confirm[disabled] { opacity: 0.7; cursor: default; transform: none; }

/* Highlight the activated card */
.pdp-bundle-btn.is-active {
    border-color: #E9C46A;
    box-shadow:
        0 18px 36px -18px rgba(233, 196, 106, 0.55),
        0 0 0 2px rgba(233, 196, 106, 0.18) inset;
}

/* Added-to-cart success state + big Checkout CTA */
.pdp-bundle-btn.is-added {
    border-color: #6dd86d;
    background: linear-gradient(180deg, rgba(109, 216, 109, 0.14), rgba(11, 11, 31, 0.7));
    box-shadow:
        0 18px 36px -18px rgba(109, 216, 109, 0.55),
        0 0 0 2px rgba(109, 216, 109, 0.18) inset;
}
.pdp-bundle-added {
    margin: 0.85rem 0 0;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: #6dd86d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    animation: pdp-bundle-config-in 0.22s ease-out;
}
.pdp-bundle-added i { font-size: 1rem; }
.pdp-bundle-confirm.is-checkout {
    margin-top: 0.7rem;
    padding: 1.1rem 1rem;
    background: linear-gradient(180deg, #F3D17A, #E9C46A);
    color: #05010F;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    border-radius: 12px;
    box-shadow:
        0 14px 28px -14px rgba(233, 196, 106, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}
.pdp-bundle-confirm.is-checkout:hover {
    background: linear-gradient(180deg, #FFE7A1, #F3D17A);
    transform: translateY(-1px);
}
.pdp-bundle-confirm.is-checkout span {
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.15s ease;
}
.pdp-bundle-confirm.is-checkout:hover span { transform: translateX(3px); }
.pdp-bundle-btn { cursor: pointer; }
.pdp-bundle-btn[role="button"]:focus-visible {
    outline: 2px solid #E9C46A;
    outline-offset: 3px;
}

/* 3-Pack: featured / most popular - gold-tinted background, gold border */
.pdp-bundle-btn--featured {
    border-color: rgba(233, 196, 106, 0.65);
    background: linear-gradient(180deg, rgba(233, 196, 106, 0.14), rgba(11, 11, 31, 0.7));
    box-shadow: 0 12px 26px -16px rgba(233, 196, 106, 0.55);
}
.pdp-bundle-btn--featured .pdp-bundle-pack { color: #FFE7A1; }

/* 5-Pack: best value - cooler palette, secondary action */
.pdp-bundle-btn--best {
    border-color: rgba(184, 158, 255, 0.45);
}
.pdp-bundle-btn--best .pdp-bundle-action {
    background: #F4EEDC;
    color: #1a1428;
}
.pdp-bundle-btn--best:hover .pdp-bundle-action { background: #FFFFFF; }

.pdp-bundle-mixed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    background: rgba(233, 196, 106, 0.08);
    border: 1.5px dashed rgba(233, 196, 106, 0.55);
    border-radius: 10px;
    color: #F4EEDC;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-align: center;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
}
.pdp-bundle-mixed::before {
    content: '\f074';   /* fa-shuffle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #E9C46A;
    font-size: 0.9em;
}
.pdp-bundle-mixed:hover {
    background: rgba(233, 196, 106, 0.18);
    border-color: #E9C46A;
    color: #E9C46A;
    transform: translateY(-1px);
}

/* Top-of-config nudge inside an active bundle card: tells the customer they
   can mix in other designs instead of buying N of this one. */
.pdp-bundle-mix-row {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    background: rgba(233, 196, 106, 0.06);
    border: 1px solid rgba(233, 196, 106, 0.18);
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    margin-bottom: 0.85rem;
}
.pdp-bundle-mix-label {
    font-size: 0.78rem;
    color: rgba(244, 238, 220, 0.7);
    line-height: 1.4;
}
.pdp-bundle-mix-label b { color: #F4EEDC; font-weight: 700; }
.pdp-bundle-mix-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: transparent;
    color: #E9C46A;
    border: 1.5px solid #E9C46A;
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.pdp-bundle-mix-link:hover { background: #E9C46A; color: #1a1428; }
.pdp-bundle-mix-link i { font-size: 0.85em; }

/* ====== Bundle row: locked to variant A (fanned 3D shirts) ================
   The A/B test was removed; B markup is also stripped from new builds and
   legacy pages. This rule keeps any leftover B blocks invisible on pages
   that haven't been re-scrubbed yet. */
.pdp-bundle-variant--b { display: none !important; }
.pdp-bundle-variant--a { display: block; }

/* ====== Variant B · Hero tier (Buy 3, Get 2 FREE) ====================== */
.pdp-tier-hero {
    padding: 1.6rem 1.4rem 1.3rem;
    background:
        radial-gradient(circle at 100% 0%, rgba(233, 196, 106, 0.18), transparent 55%),
        linear-gradient(160deg, rgba(60, 45, 95, 0.85), rgba(11, 11, 31, 0.85));
    border: 2px solid #E9C46A;
    border-radius: 16px;
    box-shadow: 0 14px 38px -16px rgba(233, 196, 106, 0.45);
    align-items: stretch;
}
.pdp-tier-flag {
    display: inline-block;
    background: #E9C46A;
    color: #1a1428;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    padding: 0.32rem 0.7rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    width: fit-content;
}
.pdp-tier-name {
    font-family: 'Cinzel', 'DM Sans', serif;
    font-size: 1.55rem;
    color: #F4EEDC;
    margin: 0 0 0.35rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.pdp-tier-headline-price {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #E9C46A;
    line-height: 1;
    margin: 0.2rem 0 0.1rem;
    letter-spacing: -0.025em;
    font-feature-settings: "tnum", "lnum";
    font-variant-numeric: tabular-nums lining-nums;
}
.pdp-tier-per {
    color: rgba(244, 238, 220, 0.78);
    font-size: 0.92rem;
    margin: 0 0 0.4rem;
}
.pdp-tier-per b { color: #F4EEDC; font-weight: 700; }
.pdp-tier-save {
    color: #6dd86d;
    font-weight: 800;
    font-size: 0.92rem;
    margin: 0.55rem 0 0.5rem;
    letter-spacing: 0.01em;
}
.pdp-tier-perks {
    color: rgba(244, 238, 220, 0.72);
    font-size: 0.78rem;
    margin: 0.4rem 0 0.2rem;
    line-height: 1.5;
}

/* ====== Variant B · Radio row tier (Buy 2, Get 1 FREE) ================= */
.pdp-tier-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.95rem;
    padding: 1rem 1.15rem;
    background: rgba(20, 12, 38, 0.55);
    border: 1.5px solid rgba(233, 196, 106, 0.18);
    border-radius: 12px;
    margin-top: 0.7rem;
}
.pdp-tier-row:hover { border-color: #E9C46A; transform: none; }
.pdp-tier-row.is-active,
.pdp-tier-row.is-added {
    border-color: #E9C46A;
    background: rgba(40, 28, 64, 0.8);
}
.pdp-tier-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(244, 238, 220, 0.28);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.18s ease;
}
.pdp-tier-row:hover .pdp-tier-dot { border-color: #E9C46A; }
.pdp-tier-row.is-active .pdp-tier-dot,
.pdp-tier-row.is-added .pdp-tier-dot {
    border-color: #E9C46A;
}
.pdp-tier-row.is-active .pdp-tier-dot::after,
.pdp-tier-row.is-added .pdp-tier-dot::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #E9C46A;
}
.pdp-tier-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}
.pdp-tier-row-name {
    font-size: 0.98rem;
    font-weight: 800;
    color: #F4EEDC;
    letter-spacing: 0.01em;
}
.pdp-tier-row-name em {
    font-style: normal;
    color: #E9C46A;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: 0.45rem;
    padding: 0.18rem 0.45rem;
    background: rgba(233, 196, 106, 0.16);
    border-radius: 4px;
}
.pdp-tier-row-pps {
    color: rgba(244, 238, 220, 0.72);
    font-size: 0.82rem;
    font-feature-settings: "tnum", "lnum";
    font-variant-numeric: tabular-nums lining-nums;
}
.pdp-tier-row-pps b { color: #F4EEDC; font-weight: 700; }
.pdp-tier-row-pps s { color: rgba(244, 238, 220, 0.4); margin-left: 0.3rem; }
.pdp-tier-row-save {
    color: #6dd86d;
    font-weight: 800;
    font-size: 0.88rem;
    text-align: right;
    white-space: nowrap;
    line-height: 1.15;
}
.pdp-tier-row-save small {
    display: block;
    color: rgba(244, 238, 220, 0.42);
    font-weight: 500;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.1rem;
}

/* ====== Variant B · Single shirt (plain text line) ===================== */
.pdp-tier-single {
    text-align: center;
    color: rgba(244, 238, 220, 0.6);
    font-size: 0.9rem;
    margin: 1rem 0 0.5rem;
    font-family: 'DM Sans', sans-serif;
}
.pdp-tier-single-link {
    color: rgba(244, 238, 220, 0.85);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(233, 196, 106, 0.45);
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.pdp-tier-single-link b {
    color: #E9C46A;
    font-weight: 700;
}
.pdp-tier-single-link:hover {
    color: #E9C46A;
    text-decoration-color: #E9C46A;
}

/* Variant B: when a radio-row or hero card is active, dim the others a touch
   so the choice is visible. Mirrors the Variant A flow. */
.pdp-bundle-variant--b .pdp-bundle-btn.is-active { border-color: #E9C46A; }
.pdp-bundle-variant--b .pdp-bundle-config { padding-top: 0.85rem; }

/* Grid plumbing for the radio-row: hide the generic "Tap to choose sizes"
   hint (looks odd next to the row's own copy) and span the config + confirm
   buttons across all three grid columns once activated. */
.pdp-tier-row .pdp-bundle-hint { display: none; }
.pdp-tier-row .pdp-bundle-config,
.pdp-tier-row .pdp-bundle-confirm {
    grid-column: 1 / -1;
}

@media (max-width: 520px) {
    .pdp-tier-headline-price { font-size: 2.2rem; }
    .pdp-tier-name { font-size: 1.3rem; }
    .pdp-tier-row { gap: 0.7rem; padding: 0.85rem 0.95rem; }
    .pdp-tier-row-name { font-size: 0.92rem; }
    .pdp-tier-row-pps { font-size: 0.78rem; }
    .pdp-tier-row-save { font-size: 0.82rem; }
    .pdp-tier-perks { font-size: 0.74rem; line-height: 1.45; }
}

/* --- Bundle size-picker modal ---------------------------------------- */
.mm-bundle-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 1, 15, 0.78);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    animation: mm-bundle-fade 0.18s ease-out;
}
@keyframes mm-bundle-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.mm-bundle-modal-card {
    position: relative;
    background: #14102b;
    border: 1px solid rgba(233, 196, 106, 0.32);
    border-radius: 18px;
    color: #F4EEDC;
    width: min(440px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.6rem 1.5rem 1.4rem;
    box-shadow:
        0 32px 60px -28px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(233, 196, 106, 0.1) inset;
    animation: mm-bundle-pop 0.22s cubic-bezier(.2,.85,.4,1.05);
    font-family: 'DM Sans', sans-serif;
}
@keyframes mm-bundle-pop {
    from { transform: translateY(8px) scale(0.97); opacity: 0; }
    to { transform: none; opacity: 1; }
}
.mm-bundle-modal-close {
    position: absolute;
    top: 0.65rem;
    right: 0.85rem;
    background: transparent;
    border: 0;
    color: rgba(244, 238, 220, 0.55);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.2rem 0.45rem;
    border-radius: 8px;
    transition: color 0.15s ease, background 0.15s ease;
}
.mm-bundle-modal-close:hover {
    color: #FFFFFF;
    background: rgba(244, 238, 220, 0.08);
}
.mm-bundle-modal-eyebrow {
    margin: 0 0 0.15rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E9C46A;
}
.mm-bundle-modal-title {
    margin: 0 0 0.25rem;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}
.mm-bundle-modal-sub {
    margin: 0 0 1rem;
    color: rgba(244, 238, 220, 0.65);
    font-size: 0.86rem;
}
.mm-size-rows {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.mm-size-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.75rem;
    background: rgba(244, 238, 220, 0.04);
    border: 1px solid rgba(244, 238, 220, 0.1);
    border-radius: 10px;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.mm-size-row.has-pick {
    border-color: rgba(233, 196, 106, 0.5);
    background: rgba(233, 196, 106, 0.08);
}
.mm-size-label {
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 0.86rem;
    color: #F4EEDC;
    min-width: 2.4em;
}
.mm-size-stepper {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.mm-step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(244, 238, 220, 0.22);
    background: rgba(11, 11, 31, 0.6);
    color: #F4EEDC;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.mm-step:hover { background: rgba(233, 196, 106, 0.18); border-color: #E9C46A; }
.mm-size-count {
    min-width: 1.5em;
    text-align: center;
    font-weight: 700;
    font-feature-settings: "tnum", "lnum";
}
.mm-bundle-modal-foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 0 0.75rem;
    border-top: 1px dashed rgba(244, 238, 220, 0.12);
    margin-top: 0.25rem;
}
.mm-bundle-modal-count {
    margin: 0.4rem 0 0;
    font-size: 0.92rem;
    color: rgba(244, 238, 220, 0.78);
}
.mm-bundle-modal-count .mm-picked {
    font-weight: 800;
    color: #F4EEDC;
    font-feature-settings: "tnum", "lnum";
}
.mm-bundle-modal-count .mm-picked.over {
    color: #ff7e7e;
}
.mm-bundle-modal-total {
    margin: 0.4rem 0 0;
    font-size: 0.92rem;
    color: rgba(244, 238, 220, 0.78);
    font-feature-settings: "tnum", "lnum";
}
.mm-bundle-modal-total strong { color: #E9C46A; font-weight: 800; }
.mm-bundle-modal-confirm {
    width: 100%;
    padding: 0.95rem 1rem;
    background: rgba(233, 196, 106, 0.35);
    color: rgba(244, 238, 220, 0.55);
    border: 0;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: not-allowed;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.mm-bundle-modal-confirm.is-ready {
    background: #E9C46A;
    color: #05010F;
    cursor: pointer;
}
.mm-bundle-modal-confirm.is-ready:hover {
    background: #F3D17A;
    transform: translateY(-1px);
}

/* Divider between bundles and the single-tee CTA */
.pdp-or-single {
    margin: 0.4rem 0 -0.2rem;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 238, 220, 0.4);
}

/* Compact text-link fallback for "or grab a single tee". Replaces the
   old full-width button so the bundle picker remains the primary CTA. */
.pdp-single-link {
    margin: 0.5rem 0 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(244, 238, 220, 0.55);
}
.pdp-single-link .pdp-add-to-cart {
    /* Override the prior button styling so it renders as an inline link. */
    display: inline;
    background: transparent;
    border: 0;
    padding: 0;
    margin-left: 0.3rem;
    color: #E9C46A;
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: underline;
    text-decoration-color: rgba(233, 196, 106, 0.45);
    text-underline-offset: 3px;
    cursor: pointer;
    box-shadow: none;
    width: auto;
}
.pdp-single-link .pdp-add-to-cart:hover {
    color: #F4B942;
    text-decoration-color: #F4B942;
    background: transparent;
    transform: none;
}
.pdp-single-link .pdp-add-total {
    display: inline;
    margin: 0;
    padding: 0;
    background: none;
    color: inherit;
    font-weight: 700;
}

/* Secondary "Buy it now" link */
.pdp-buy-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    background: transparent;
    color: #F4EEDC;
    border: 1px solid rgba(244, 238, 220, 0.25);
    border-radius: 12px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pdp-buy-now:hover {
    background: rgba(244, 238, 220, 0.06);
    border-color: #E9C46A;
    color: #E9C46A;
}

/* Feature grid: prominent icon tiles that anchor the buy box and break up
   the long-form text in the tabs below. Replaces the old single-line trust
   strip - same facts, more visual rhythm. */
.pdp-feature-grid {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 1rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    border-top: 1px solid rgba(244, 238, 220, 0.08);
}
.pdp-feature {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    background: rgba(244, 238, 220, 0.035);
    border: 1px solid rgba(244, 238, 220, 0.08);
    border-radius: 11px;
    transition: background 0.18s ease, border-color 0.18s ease;
}
.pdp-feature:hover {
    background: rgba(233, 196, 106, 0.06);
    border-color: rgba(233, 196, 106, 0.3);
}
.pdp-feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 196, 106, 0.12);
    border: 1px solid rgba(233, 196, 106, 0.3);
    border-radius: 9px;
    color: #E9C46A;
    font-size: 0.95rem;
}
.pdp-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
    line-height: 1.2;
}
.pdp-feature-text strong {
    color: #F4EEDC;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.005em;
}
.pdp-feature-text span {
    color: rgba(244, 238, 220, 0.6);
    font-size: 0.74rem;
    letter-spacing: 0.005em;
}
@media (max-width: 420px) {
    .pdp-feature-grid { grid-template-columns: 1fr; }
}

/* --- Collapsible Shopify-style tabs ------------------------------------ */
.pdp-tabs { display: flex; flex-direction: column; }
.pdp-tab {
    border-top: 1px solid rgba(244, 238, 220, 0.1);
    padding: 0.1rem 0;
}
.pdp-tab:last-of-type { border-bottom: 1px solid rgba(244, 238, 220, 0.1); }
.pdp-tab summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    color: #F4EEDC;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-transform: none;
}
.pdp-tab summary::-webkit-details-marker { display: none; }
.pdp-tab summary::after {
    content: "+";
    color: #E9C46A;
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.2s ease;
}
.pdp-tab[open] summary::after { transform: rotate(45deg); }
.pdp-tab-body {
    padding: 0 0 1rem;
    color: rgba(244, 238, 220, 0.78);
    line-height: 1.7;
    font-size: 0.95rem;
}
.pdp-tab-body p { margin: 0 0 0.65rem; }
.pdp-tab-body p:last-child { margin-bottom: 0; }
.pdp-key-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.pdp-key-bullets li {
    padding-left: 1.25rem;
    position: relative;
    color: #F4EEDC;
    font-size: 0.97rem;
    line-height: 1.55;
}
.pdp-key-bullets li::before {
    content: "★";
    color: #E9C46A;
    position: absolute;
    left: 0;
    top: 0.1em;
}
.pdp-trait-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.pdp-trait-list li {
    background: rgba(244, 238, 220, 0.04);
    border: 1px solid rgba(244, 238, 220, 0.1);
    padding: 0.75rem 0.95rem;
    border-radius: 10px;
    color: rgba(244, 238, 220, 0.78);
}
.pdp-trait-list strong { color: #E9C46A; margin-right: 0.4rem; }
.pdp-spec-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 0.75rem;
    margin: 0;
}
@media (max-width: 600px) { .pdp-spec-list { grid-template-columns: 1fr; } }
.pdp-spec-list > div {
    background: rgba(244, 238, 220, 0.04);
    border: 1px solid rgba(244, 238, 220, 0.08);
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
}
.pdp-spec-list dt {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(244, 238, 220, 0.55);
    margin: 0 0 0.2rem;
    font-weight: 700;
}
.pdp-spec-list dd {
    margin: 0;
    color: #F4EEDC;
    font-size: 0.92rem;
    line-height: 1.45;
}
.pdp-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(244, 238, 220, 0.78);
}
.pdp-bullets li {
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.6;
}
.pdp-bullets li::before {
    content: "★";
    color: #E9C46A;
    position: absolute;
    left: 0;
    top: 0.05em;
}

/* --- Reviews section (full-width below the product shell) -------------- */
.product-reviews {
    max-width: 1180px;
    margin: 3.5rem auto;
    padding: 0 clamp(0.5rem, 2vw, 1.25rem);
}
.product-reviews-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(244, 238, 220, 0.1);
}
.product-reviews h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    margin: 0;
    text-align: left;
    color: #F4EEDC;
    letter-spacing: -0.005em;
}
.reviews-write {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #E9C46A;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(233, 196, 106, 0.45);
    border-radius: 999px;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.reviews-write:hover {
    background: rgba(233, 196, 106, 0.1);
    border-color: #E9C46A;
    color: #F4EEDC;
}

/* Aggregate header: big score + star distribution bars */
.reviews-aggregate {
    display: grid;
    grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
    background: linear-gradient(180deg, rgba(20, 16, 40, 0.55), rgba(12, 10, 26, 0.55));
    border: 1px solid rgba(244, 238, 220, 0.08);
    border-radius: 16px;
    padding: 1.25rem clamp(1rem, 2.5vw, 1.75rem);
    margin: 0 auto 1.75rem;
    max-width: 680px;
}
.reviews-aggregate-score {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}
.reviews-aggregate-number {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    line-height: 1;
    color: #F4EEDC;
    letter-spacing: -0.02em;
}
.reviews-aggregate-stars {
    color: #ffd25c;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    line-height: 1;
}
.reviews-aggregate-count {
    color: rgba(244, 238, 220, 0.6);
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}
.reviews-aggregate-distribution {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}
.review-dist-row {
    display: grid;
    grid-template-columns: 56px 1fr 38px;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.8rem;
    color: rgba(244, 238, 220, 0.7);
}
.review-dist-label { font-variant-numeric: tabular-nums; }
.review-dist-bar {
    height: 6px;
    background: rgba(244, 238, 220, 0.08);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.review-dist-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #E9C46A, #ffd25c);
    border-radius: inherit;
    transition: width 0.4s ease;
}
.review-dist-pct {
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-size: 0.78rem;
    color: rgba(244, 238, 220, 0.55);
}
@media (max-width: 640px) {
    .reviews-aggregate {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.1rem;
    }
}

/* Review cards: masonry columns so short reviews don't leave blank space */
.reviews-list {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 1rem;
}
.review-item {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 1rem;
}
@media (max-width: 760px) {
    .reviews-list { columns: 1; }
}
.review-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.95rem;
    background: rgba(244, 238, 220, 0.035);
    border: 1px solid rgba(244, 238, 220, 0.09);
    border-radius: 14px;
    padding: 1.1rem 1.15rem 1.15rem;
    transition: background 0.18s ease, border-color 0.18s ease;
}
.review-item:hover {
    background: rgba(244, 238, 220, 0.05);
    border-color: rgba(233, 196, 106, 0.25);
}
.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #F4EEDC;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 4px 10px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    overflow: hidden;
}
.review-avatar--photo {
    padding: 0;
    background: rgba(244, 238, 220, 0.06);
    border: 1px solid rgba(233, 196, 106, 0.3);
}
.review-avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.review-content { min-width: 0; }
.review-meta { margin-bottom: 0.55rem; }
.review-meta-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.review-meta-line + .review-meta-line { margin-top: 0.2rem; }
.review-meta-line--sub {
    font-size: 0.78rem;
    color: rgba(244, 238, 220, 0.55);
}
.review-author {
    color: #F4EEDC;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
}
.review-stars {
    color: #ffd25c;
    letter-spacing: 0.08em;
    font-size: 1.0rem;
    line-height: 1;
}
.review-stars-dim { color: rgba(255, 210, 92, 0.25); }
.review-meta-sep { opacity: 0.55; }
.review-date {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}
.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.45);
    color: #7CCB7F;
    padding: 0.12rem 0.55rem 0.12rem 0.45rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.5;
}
.review-verified svg { flex-shrink: 0; }
.review-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.02rem;
    margin: 0 0 0.4rem;
    color: #F4EEDC;
    line-height: 1.3;
    letter-spacing: -0.005em;
}
.review-body {
    margin: 0;
    color: rgba(244, 238, 220, 0.82);
    line-height: 1.6;
    font-size: 0.93rem;
}
.review-image-wrap {
    margin-top: 10px;
}
.reviews-others-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-muted, #888);
    padding: 8px 0 4px;
    margin: 0;
}
.review-image {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    cursor: zoom-in;
}

/* Hidden-by-default reviews (revealed by Read More button) */
.review-item--hidden { display: none; }
.reviews-list.reviews-list--expanded .review-item--hidden { display: grid; }

.reviews-more-wrap {
    margin-top: 1.5rem;
    text-align: center;
}
.reviews-more-btn {
    appearance: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    background: rgba(233, 196, 106, 0.08);
    border: 1px solid rgba(233, 196, 106, 0.45);
    border-radius: 999px;
    color: #E9C46A;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.reviews-more-btn:hover {
    background: rgba(233, 196, 106, 0.18);
    border-color: #E9C46A;
    color: #F4EEDC;
    transform: translateY(-1px);
}
.reviews-more-btn svg { transition: transform 0.2s ease; }
.reviews-more-btn.is-expanded svg { transform: rotate(180deg); }

/* Empty state when the design has no curated written reviews yet */
.reviews-empty-state {
    text-align: center;
    padding: 2.25rem 1.5rem;
    background: rgba(244, 238, 220, 0.035);
    border: 1px dashed rgba(244, 238, 220, 0.14);
    border-radius: 14px;
    margin-top: 0.5rem;
}
.reviews-empty-state p {
    margin: 0 auto 1.1rem;
    color: rgba(244, 238, 220, 0.72);
    font-size: 0.98rem;
    line-height: 1.5;
    max-width: 520px;
}
.reviews-empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.4rem;
    background: rgba(233, 196, 106, 0.1);
    border: 1px solid rgba(233, 196, 106, 0.45);
    border-radius: 999px;
    color: #E9C46A;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.reviews-empty-cta:hover {
    background: rgba(233, 196, 106, 0.2);
    border-color: #E9C46A;
    color: #F4EEDC;
    transform: translateY(-1px);
}

/* --- FAQ section ------------------------------------------------------- */
.product-faq { max-width: 880px; margin: 3rem auto; }
.product-faq h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin: 0 0 1.25rem;
    text-align: center;
    color: #F4EEDC;
}
.faq-item {
    background: rgba(244, 238, 220, 0.04);
    border: 1px solid rgba(244, 238, 220, 0.1);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    margin-bottom: 0.6rem;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: #F4EEDC;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.faq-item summary::after {
    content: "+";
    color: #E9C46A;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    color: rgba(244, 238, 220, 0.78);
    margin: 0.6rem 0 0;
    line-height: 1.6;
}

/* --- Related products (Shopify "You may also like") -------------------- */
.related-designs {
    max-width: 1280px;
    margin: 3.5rem auto 0;
}
.related-designs h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin: 0 0 1.5rem;
    text-align: center;
    color: #F4EEDC;
}
.related-grid {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .related-grid { grid-template-columns: 1fr; } }

/* Browse-more CTA below the related grid - routes to catalog with the
   category filter pre-applied. */
.related-cta-wrap {
    text-align: center;
    margin-top: 1.5rem;
}
.related-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: rgba(233, 196, 106, 0.1);
    border: 1px solid rgba(233, 196, 106, 0.45);
    color: #E9C46A;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.related-cta:hover {
    background: rgba(233, 196, 106, 0.2);
    border-color: #E9C46A;
    color: #F4EEDC;
    transform: translateY(-1px);
}
.related-cta svg { transition: transform 0.18s ease; }
.related-cta:hover svg { transform: translateX(2px); }

/* --- Tagline & lede inside the buy box ------------------------------- */
.pdp-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: #E9C46A;
    margin: -0.25rem 0 0.75rem;
    line-height: 1.35;
    letter-spacing: 0.005em;
}
.pdp-lede {
    color: rgba(244, 238, 220, 0.78);
    font-size: 0.97rem;
    line-height: 1.6;
    margin: 0.5rem 0 1.1rem;
    padding: 0.75rem 0.95rem;
    border-left: 2px solid rgba(233, 196, 106, 0.55);
    background: rgba(233, 196, 106, 0.04);
    border-radius: 0 8px 8px 0;
}

/* --- Gift-occasion + LLM-recommendation sections --------------------- */
.pdp-section {
    max-width: 1280px;
    margin: 3rem auto 0;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(180deg, rgba(20, 16, 40, 0.55), rgba(12, 10, 26, 0.65));
    border: 1px solid rgba(233, 196, 106, 0.18);
    border-radius: 18px;
}
.pdp-section h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    margin: 0 0 1.1rem;
    color: #F4EEDC;
    text-align: center;
    letter-spacing: 0.01em;
}

/* Section header that's reused by gift-occasions + llm-hooks */
.pdp-section-head {
    text-align: center;
    margin: 0 0 1.5rem;
}
.pdp-section-eyebrow {
    display: inline-block;
    color: #E9C46A;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 0.5rem;
}
.pdp-section-head h2 {
    text-align: center;
    margin: 0 0 0.55rem;
}
.pdp-section-sub {
    margin: 0 auto;
    max-width: 540px;
    color: rgba(244, 238, 220, 0.65);
    font-size: 0.92rem;
    line-height: 1.5;
    font-style: italic;
}

.pdp-gift-occasions .pdp-occasion-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.7rem;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1000px;
    margin-inline: auto;
}
.pdp-occasion {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding: 0.85rem 1rem;
    background: linear-gradient(180deg, rgba(244, 238, 220, 0.04), rgba(244, 238, 220, 0.02));
    border: 1px solid rgba(233, 196, 106, 0.18);
    border-radius: 14px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.pdp-occasion:hover {
    background: linear-gradient(180deg, rgba(233, 196, 106, 0.08), rgba(233, 196, 106, 0.03));
    border-color: rgba(233, 196, 106, 0.5);
    transform: translateY(-1px);
}
.pdp-occasion-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(233, 196, 106, 0.28), rgba(233, 196, 106, 0.08) 70%);
    border: 1px solid rgba(233, 196, 106, 0.38);
    border-radius: 50%;
    color: #E9C46A;
    font-size: 1.05rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease, border-color 0.2s ease;
}
.pdp-occasion:hover .pdp-occasion-icon {
    color: #F4EEDC;
    border-color: #E9C46A;
}
.pdp-occasion-text {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-width: 0;
    line-height: 1.35;
}
.pdp-occasion-text strong {
    color: #F4EEDC;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.005em;
}
.pdp-occasion-text span {
    color: rgba(244, 238, 220, 0.65);
    font-size: 0.83rem;
    letter-spacing: 0.005em;
}

.pdp-llm-hooks .pdp-llm-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
    max-width: 880px;
    margin-inline: auto;
}
.pdp-llm-hooks .pdp-llm-list li {
    position: relative;
    background: rgba(244, 238, 220, 0.04);
    border-left: 3px solid #E9C46A;
    padding: 0.85rem 1.1rem 0.85rem 1.25rem;
    border-radius: 0 10px 10px 0;
    color: rgba(244, 238, 220, 0.92);
    font-size: 0.98rem;
    line-height: 1.55;
}
.pdp-llm-hooks .pdp-llm-list li::before {
    content: "★";
    color: #E9C46A;
    margin-right: 0.4rem;
    font-size: 0.85em;
    opacity: 0.8;
}

@media (max-width: 600px) {
    .pdp-section { padding: 1.25rem 1rem; border-radius: 14px; }
    .pdp-gift-occasions .pdp-occasion-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .pdp-gift-occasions .pdp-occasion-grid li { font-size: 0.85rem; padding: 0.45rem 0.7rem; }
}

/* Footer All Reviews Counter — sits inline between copyright and payment cards */
.footer-bottom .jdgm-all-reviews-text { align-self: center; }
