/* ════════════════════════════════════════════════════════════════
   PRODUCT PAGE  —  "LUMINA" quiet-luxury editorial system.
   Off-white canvas · Playfair Display + Inter · obsidian + champagne gold.
   Loaded last (wins cascade). Selectors preserved for JS hooks.
   ════════════════════════════════════════════════════════════════ */
:root {
    --lx-serif: "Playfair Display", "IBM Plex Sans Arabic", Georgia, serif;
    --lx-sans:  "Inter", "IBM Plex Sans Arabic", system-ui, -apple-system, sans-serif;
    --lx-bg:      #f9f9f9;
    --lx-surface: #ffffff;
    --lx-tint:    #f1f1f0;
    --lx-ink:     #1a1c1c;
    --lx-soft:    #5a5e60;
    --lx-line:    #e5e5e5;
    --lx-line-2:  #c9cacb;
    --lx-black:   #121212;
    --lx-gold:    #d4af37;
    --lx-radius:  3px;
}
body { background: var(--lx-bg); }

/* ════════ DARK MODE — remap the luxe tokens to dark surfaces ════════
   (lx-black & lx-gold stay fixed: dark text on the gold badge in both modes) */
[data-theme="dark"] {
    --lx-bg:      #101418;
    --lx-surface: #181c20;
    --lx-tint:    #23282e;
    --lx-ink:     #eef1f6;
    --lx-soft:    #aab0bb;
    --lx-line:    #2b313a;
    --lx-line-2:  #3b424c;
}
[data-theme="dark"] .pdp-subnav { background: rgba(22,26,30,.8); }
[data-theme="dark"] .pdp2__main-wrap { background: #f3f4f6; }  /* keep product photos on white */
[data-theme="dark"] .review-card__avatar { color: var(--lx-bg); }
/* product pages: kill the huge inter-section gap + trim header clearance
   (each PDP section carries its own margin-bottom instead), and cap the
   overall width so the right column / CTA buttons aren't stretched into
   giant full-screen bars on the 1440px container. */
.main { gap: 0; padding-top: 96px; max-width: 1080px; }

.pdp2, .pdp2 *, .pdp2-tabs, .pdp2-tabs *, .reviews, .reviews *, .pdp-subnav, .pdp-bar, .crumbs {
    font-family: var(--lx-sans);
}
/* keep the icon font — the broad rule above must not clobber Material Symbols */
.pdp2 .material-symbols-outlined, .pdp2-tabs .material-symbols-outlined,
.reviews .material-symbols-outlined, .pdp-subnav .material-symbols-outlined,
.pdp-bar .material-symbols-outlined, .crumbs .material-symbols-outlined,
.pdp-lightbox .material-symbols-outlined {
    font-family: "Material Symbols Outlined" !important;
}

/* ── Breadcrumb ── */
.crumbs { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--lx-soft); margin: 20px 0 30px; display: flex; align-items: center; gap: 8px; font-weight: 600; }
.crumbs a { color: var(--lx-soft); } .crumbs a:hover { color: var(--lx-ink); }
.crumbs .sep { font-size: 1rem; color: var(--lx-line-2); }

/* ── Top grid : gallery (7) | sticky info (5) ── */
.pdp2.pdp2--2col {
    display: grid;
    grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
    margin: 0 0 64px;
    animation: lxUp .5s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes lxUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ════════ GALLERY ════════ */
.pdp2__gallery { position: static; display: flex; flex-direction: column; gap: 12px; }
.pdp2__main-wrap {
    position: relative; width: 100%; max-width: none; aspect-ratio: 4 / 5;
    background: var(--lx-surface); border: 1px solid var(--lx-line);
    border-radius: var(--lx-radius); overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,.02), 0 10px 22px rgba(0,0,0,.04), 0 18px 38px rgba(0,0,0,.02);
}
.pdp2__zoom { width: 100%; height: 100%; display: grid; place-items: center; padding: 9%; cursor: crosshair; overflow: hidden; }
/* intrinsic size capped to the frame → full image always visible, never cropped
   (independent of any object-fit override elsewhere) */
.pdp2__main-img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; display: block; margin: auto; }
.pdp2__sale-badge { position: absolute; inset-block-start: 16px; inset-inline-start: 16px; z-index: 2; background: var(--lx-gold); color: var(--lx-black); font-weight: 700; font-size: 11px; letter-spacing: .08em; padding: 6px 12px; border-radius: 999px; }
.pdp2__video-pill { position: absolute; inset-block-end: 16px; inset-inline-start: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; background: rgba(18,18,18,.85); color: #fff; font-weight: 600; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 9px 15px; border: none; border-radius: 999px; cursor: pointer; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.pdp2__video-pill .material-symbols-outlined { font-size: 1.05rem; }
.pdp2__zoom-hint { position: absolute; inset-block-end: 16px; inset-inline-end: 16px; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.92); color: var(--lx-ink); box-shadow: 0 2px 12px rgba(0,0,0,.12); border: 1px solid var(--lx-line); cursor: pointer; transition: background .15s, transform .15s; z-index: 3; }
.pdp2__zoom-hint:hover { background: #fff; transform: scale(1.08); }

.pdp2__thumbs-wrap { display: flex; align-items: center; gap: 8px; }
.pdp2__thumbs.pdp2__thumbs--row { display: flex; flex-direction: row; gap: 10px; max-height: none; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x proximity; -ms-overflow-style: none; scrollbar-width: none; padding: 2px; }
.pdp2__thumbs--row::-webkit-scrollbar { display: none; }
.pdp2__thumbs--row .pdp2__thumb { flex: 0 0 auto; width: 76px; height: 76px; scroll-snap-align: start; border: 1px solid var(--lx-line); border-radius: var(--lx-radius); padding: 9px; background: var(--lx-surface); cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.pdp2__thumbs--row .pdp2__thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp2__thumbs--row .pdp2__thumb:hover { border-color: var(--lx-line-2); }
.pdp2__thumbs--row .pdp2__thumb.is-active { border-color: var(--lx-ink); box-shadow: inset 0 0 0 1px var(--lx-ink); }
.pdp2__thumb-nav { flex: 0 0 auto; width: 30px; height: 76px; display: grid; place-items: center; border: 1px solid var(--lx-line); border-radius: var(--lx-radius); background: var(--lx-surface); color: var(--lx-ink); cursor: pointer; transition: border-color .18s; }
.pdp2__thumb-nav:hover { border-color: var(--lx-ink); }
.pdp2__thumb-nav .material-symbols-outlined { font-size: 1.2rem; }

/* ════════ STICKY INFO COLUMN ════════ */
.pdp2__summary { position: relative; min-width: 0; }
.pdp2__sticky { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; min-width: 0; }

.pdp2__head { display: flex; flex-direction: column; }
.pdp2__eyebrow-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.pdp2__brand { font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--lx-soft); }
.pdp2__badge { font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.pdp2__badge--in  { background: var(--lx-gold); color: var(--lx-black); }
.pdp2__badge--out { background: var(--lx-tint); color: var(--lx-soft); }

.pdp2__title { font-family: var(--lx-serif); font-weight: 700; font-size: 34px; line-height: 1.12; letter-spacing: 0; color: var(--lx-ink); margin: 0; }
.pdp2__subtitle { font-size: 14px; color: var(--lx-soft); margin: 8px 0 0; letter-spacing: .01em; }

.pdp2__price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 12px; margin-top: 16px; }
.pdp2__price-now { font-family: var(--lx-serif); font-weight: 600; font-size: clamp(21px, 2.2vw, 27px); line-height: 1; color: var(--lx-ink); }
.pdp2__price-was { color: var(--lx-soft); text-decoration: line-through; font-size: 15px; }
.pdp2__save { background: var(--lx-black); color: #fff; font-weight: 700; font-size: 10.5px; letter-spacing: .04em; padding: 3px 8px; border-radius: 999px; align-self: center; }
.pdp2__price-vat { flex-basis: 100%; color: var(--lx-soft); font-size: 11.5px; margin-top: 2px; }

.pdp2__rating-row { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-top: 12px; font-size: 12.5px; }
.pdp2__stars { display: inline-flex; }
.pdp2__star { font-size: 1rem; color: var(--lx-line-2); font-variation-settings: "FILL" 0; }
.pdp2__star--filled { color: var(--lx-ink); font-variation-settings: "FILL" 1; }
.pdp2__rating-num { color: var(--lx-ink); font-weight: 600; }
.pdp2__rating-count { color: var(--lx-soft); font-weight: 400; }
.pdp2__rating-sep { color: var(--lx-line-2); }
.pdp2__write-link { color: var(--lx-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.pdp2__write-link:hover { opacity: .7; }

.pdp2__divider { height: 1px; background: var(--lx-line); width: 100%; }

/* ── Spec highlights (2×2) / teaser ── */
.pdp2__specs { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.pdp2__spec { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--lx-ink); }
.pdp2__spec .material-symbols-outlined { font-size: 1.1rem; color: var(--lx-ink); flex: 0 0 auto; }
.pdp2__lead { margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--lx-soft); }

/* ════════ BUY SECTION (qty + price · Add to Cart · Buy Now + icons) ════════ */
.pdp2__buy-block { display: flex; flex-direction: column; gap: 14px; align-items: stretch; max-width: 460px; }

/* Row 1: qty stepper (left) + price (right) */
.pdp2__buy-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pdp2__qty { display: inline-flex; align-items: center; gap: 8px; }
.pdp2__qty-btn { width: 44px; height: 44px; border-radius: 8px; border: none; background: var(--lx-tint); color: var(--lx-ink); display: grid; place-items: center; cursor: pointer; transition: background .15s; }
.pdp2__qty-btn:hover { background: color-mix(in srgb, var(--lx-ink) 10%, var(--lx-tint)); }
.pdp2__qty-btn .material-symbols-outlined { font-size: 1.15rem; }
#pdp-qty { width: 54px; height: 44px; text-align: center; border: 1.5px solid var(--lx-ink); border-radius: 8px; outline: none; background: var(--lx-surface); font-weight: 700; font-size: 1.05rem; color: var(--lx-ink); -moz-appearance: textfield; }
#pdp-qty::-webkit-outer-spin-button, #pdp-qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp2__buy-price { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.pdp2__buy-price-now { font-size: 1.5rem; font-weight: 800; letter-spacing: 0; color: var(--lx-ink); }
.pdp2__buy-price-was { font-size: .9rem; color: var(--lx-soft); text-decoration: line-through; }
.pdp2__buy-price-sub { font-size: .72rem; color: var(--lx-soft); margin-top: 1px; }

/* Row 2: ADD TO CART — beautiful brand-blue block */
.pdp2__add-btn {
    flex: 0 0 auto; width: 100%; height: 56px; border: none; border-radius: 6px;
    background: linear-gradient(180deg, #2aa3dd 0%, #0284c7 100%); color: #fff; cursor: pointer;
    font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(2,132,199,.34);
    transition: filter .16s, box-shadow .16s, transform .12s; }
.pdp2__add-btn:hover { filter: brightness(1.05); box-shadow: 0 10px 22px rgba(2,132,199,.46); transform: translateY(-1px); }
.pdp2__add-btn:active { transform: translateY(0); }
.pdp2__add-btn--out { background: var(--lx-tint); color: var(--lx-soft); cursor: not-allowed; box-shadow: none; }

/* Row 3: BUY NOW outlined + square icon buttons */
.pdp2__cta2 { display: flex; gap: 12px; }
.pdp2__buynow-btn {
    flex: 1; height: 56px; border: 2px solid var(--lx-ink); border-radius: 6px;
    background: var(--lx-surface); color: var(--lx-ink); cursor: pointer;
    font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .16s, color .16s; }
.pdp2__buynow-btn:hover { background: var(--lx-ink); color: var(--lx-bg); }
.pdp2__sq-btn { width: 56px; height: 56px; flex: 0 0 auto; border: 2px solid var(--lx-line-2); border-radius: 6px; background: var(--lx-surface); color: var(--lx-ink); display: grid; place-items: center; cursor: pointer; transition: border-color .16s, color .16s; }
.pdp2__sq-btn:hover { border-color: var(--lx-ink); }
.pdp2__sq-btn .material-symbols-outlined { font-size: 1.35rem; }
.pdp2__wish-btn.active { border-color: var(--lx-ink); color: var(--error); }
.pdp2__wish-btn.active .material-symbols-outlined { font-variation-settings: "FILL" 1; }

/* ── Delivery + payment reassurance (Noon-style) ── */
.pdp2__deliver { display: flex; flex-direction: column; gap: 8px; padding: 14px 16px; background: var(--lx-tint); border-radius: 10px; }
.pdp2__deliver-row { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--lx-ink); font-weight: 600; }
.pdp2__deliver-row .material-symbols-outlined { font-size: 1.15rem; color: var(--primary); flex: 0 0 auto; }
.pdp2__deliver-pay { color: var(--lx-soft); font-weight: 500; }

/* ── Trust + foot ── */
.pdp2__trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; padding-top: 20px; border-top: 1px solid var(--lx-line); }
.pdp2__trust-item { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 500; color: var(--lx-soft); }
.pdp2__trust-item .material-symbols-outlined { font-size: 1.1rem; color: var(--lx-ink); }

.pdp2__foot { display: flex; flex-direction: column; gap: 8px; padding-top: 18px; border-top: 1px solid var(--lx-line); }
.pdp2__soldby { font-size: 12px; color: var(--lx-soft); }
.pdp2__soldby strong { color: var(--lx-ink); font-weight: 600; }
.pdp2__meta-codes { display: flex; gap: 18px; flex-wrap: wrap; font-size: 11px; letter-spacing: .04em; color: var(--lx-soft); }
.pdp2__meta-codes strong { color: var(--lx-ink); font-weight: 600; }
.pdp2__more-link { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; color: var(--lx-ink); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pdp2__more-link .material-symbols-outlined { font-size: 1rem; transition: transform .2s; }
.pdp2__more-link:hover .material-symbols-outlined { transform: translateY(3px); }

/* ════════ TABS + EDITORIAL DESCRIPTION ════════ */
/* ════════ STACKED CONTENT SECTIONS (Description → Video → Reviews) ════════ */
.pdp-section { margin: 0 0 56px; padding-top: 44px; border-top: 1px solid var(--lx-line); }
.pdp-section--reviews { }
.pdp-section__title { font-family: var(--lx-serif); font-weight: 700; font-size: 30px; letter-spacing: 0; color: var(--lx-ink); margin: 0 0 28px; }
.pdp-section__count { color: var(--lx-soft); font-weight: 400; font-size: .8em; }

/* Editorial description — readable text column, full-width media (Amazon style) */
.pdp2-desc { font-family: var(--lx-sans); font-size: 16.5px; line-height: 1.8; letter-spacing: .005em; color: var(--lx-soft); max-width: none; margin: 0; }
.pdp2-desc > *:first-child { margin-top: 0; }
.pdp2-desc p, .pdp2-desc ul, .pdp2-desc ol, .pdp2-desc h1, .pdp2-desc h2, .pdp2-desc h3 { max-width: 860px; margin-left: auto; margin-right: auto; }
.pdp2-desc p { margin-top: 0; margin-bottom: 18px; }
.pdp2-desc h1, .pdp2-desc h2 { font-family: var(--lx-serif); font-weight: 700; font-size: 30px; line-height: 1.25; letter-spacing: 0; color: var(--lx-ink); margin: 44px auto 16px; }
.pdp2-desc h3 { font-family: var(--lx-serif); font-weight: 700; font-size: 20px; color: var(--lx-ink); margin: 32px auto 12px; }
.pdp2-desc ul, .pdp2-desc ol { padding-inline-start: 22px; margin-bottom: 18px; }
.pdp2-desc li { margin: 0 0 8px; }
.pdp2-desc strong { color: var(--lx-ink); }
/* large wide images & videos span the full section width */
.pdp2-desc img { width: 100%; max-width: 100%; height: auto; display: block; margin: 32px auto; border-radius: 10px; }
.pdp2-desc .rich-video { position: relative; width: 100%; max-width: 980px; padding-top: 52%; margin: 32px auto; border-radius: 10px; overflow: hidden; background: #000; }
.pdp2-desc .rich-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pdp-video-wrap video { width: 100%; max-width: 980px; display: block; margin: 0 auto; border-radius: 10px; background: #000; }
.pdp-video-wrap video { width: 100%; max-width: 860px; display: block; margin: 0 auto; border-radius: var(--lx-radius); background: #000; }

/* ════════ REVIEWS ════════ */
.reviews { display: flex; flex-direction: column; gap: 24px; }
.reviews__overview { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; background: var(--lx-surface); border: 1px solid var(--lx-line); border-radius: var(--lx-radius); padding: 28px 32px; }
.reviews__score { text-align: center; }
.reviews__big-num { font-family: var(--lx-serif); font-weight: 700; font-size: 44px; line-height: 1; color: var(--lx-ink); }
.reviews__big-stars { margin: 10px 0 6px; }
.rvstar { color: var(--lx-line-2); font-size: 1.1rem; font-variation-settings: "FILL" 1; } .rvstar--on { color: var(--lx-ink); }
.reviews__score-sub { color: var(--lx-soft); font-size: 12px; letter-spacing: .04em; }
.reviews__bars { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.reviews__bar-row { display: grid; grid-template-columns: 30px 1fr 32px; align-items: center; gap: 14px; font-size: 12px; color: var(--lx-soft); }
.reviews__bar-track { height: 6px; background: var(--lx-tint); border-radius: 999px; overflow: hidden; }
.reviews__bar-fill { height: 100%; background: var(--lx-ink); border-radius: 999px; }
.reviews__list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-card { background: var(--lx-surface); border: 1px solid var(--lx-line); border-radius: var(--lx-radius); padding: 22px; }
.review-card__head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; margin-bottom: 14px; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--lx-ink); color: #fff; font-family: var(--lx-serif); font-weight: 700; }
.review-card__meta { display: flex; flex-direction: column; }
.review-card__author { color: var(--lx-ink); font-weight: 600; font-size: 14px; }
.review-card__date { color: var(--lx-soft); font-size: 12px; }
.review-card__stars { grid-column: 1 / -1; }
.review-card__verified { display: inline-flex; align-items: center; gap: 4px; color: var(--lx-soft); font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.review-card__verified .material-symbols-outlined { font-size: 1rem; color: var(--lx-ink); }
.review-card__title { font-family: var(--lx-serif); margin: 0 0 7px; font-size: 16px; font-weight: 600; color: var(--lx-ink); }
.review-card__body { margin: 0; color: var(--lx-soft); line-height: 1.7; font-size: 14px; }
.reviews__empty { color: var(--lx-soft); padding: 8px 0; }
.reviews__write { background: var(--lx-surface); border: 1px solid var(--lx-line); border-radius: var(--lx-radius); padding: 28px; }
.reviews__write-title { font-family: var(--lx-serif); margin: 0 0 18px; font-size: 22px; font-weight: 600; color: var(--lx-ink); }
.review-form__input, .review-form__textarea { width: 100%; border: 1px solid var(--lx-line-2); border-radius: var(--lx-radius); padding: 13px 14px; font: inherit; background: var(--lx-surface); color: var(--lx-ink); }
.review-form__input:focus, .review-form__textarea:focus { outline: none; border-color: var(--lx-ink); }
.review-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.review-form__stars { display: flex; align-items: center; gap: 4px; margin-bottom: 16px; }
.rf-star { font-size: 1.7rem; color: var(--lx-line-2); background: none; font-variation-settings: "FILL" 1; } .rf-star--on { color: var(--lx-ink); }
.review-form__footer { display: flex; align-items: center; gap: 18px; margin-top: 16px; flex-wrap: wrap; }
.review-form__note { color: var(--lx-soft); font-size: 12px; }

/* ════════ STICKY SUB-NAV + MINI BAR ════════ */
.pdp-subnav { position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 200; background: rgba(255,255,255,.72); -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid var(--lx-line); transform: translateY(-105%); transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.pdp-subnav.is-visible { transform: translateY(0); }
.pdp-subnav__inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 24px; }
.pdp-subnav__tabs { display: flex; gap: 28px; }
.pdp-subnav__tabs a { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lx-soft); padding: 6px 0; border-bottom: 1px solid transparent; white-space: nowrap; }
.pdp-subnav__tabs a:hover { color: var(--lx-ink); border-color: var(--lx-ink); }
.pdp-subnav__buy { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.pdp-subnav__img { width: 40px; height: 40px; object-fit: contain; border-radius: var(--lx-radius); background: #fff; border: 1px solid var(--lx-line); }
.pdp-subnav__price { font-family: var(--lx-serif); font-weight: 600; font-size: 17px; color: var(--lx-ink); }
.pdp-subnav__btn { height: 44px; padding: 0 26px; border-radius: var(--lx-radius); background: var(--lx-black); color: #fff; border: none; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.pdp-subnav__btn:hover { opacity: .85; }

/* ════════ FULL-SCREEN LIGHTBOX ════════ */
.pdp-lightbox { position: fixed; inset: 0; z-index: 1000; display: none; background: rgba(12,12,12,.94); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.pdp-lightbox.is-open { display: grid; place-items: center; animation: lxFade .2s ease; }
.pdp-lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; }
.pdp-lightbox__close { position: absolute; top: 24px; inset-inline-end: 28px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; border: none; cursor: pointer; }
.pdp-lightbox__close:hover { background: rgba(255,255,255,.2); }
.pdp-lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; border: none; cursor: pointer; }
.pdp-lightbox__nav:hover { background: rgba(255,255,255,.2); }
.pdp-lightbox__nav--prev { inset-inline-start: 28px; } .pdp-lightbox__nav--next { inset-inline-end: 28px; }
@keyframes lxFade { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
    .pdp2.pdp2--2col, .pdp-lightbox.is-open { animation: none; }
    .pdp2__main-img, .pdp2__add-btn, .pdp2__thumb { transition: none; }
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1000px) {
    .pdp2.pdp2--2col { grid-template-columns: minmax(0, 1fr); gap: 28px; margin-bottom: 56px; }
    /* Single-column: keep the gallery at its 2-col size (460px) and centre it, so the
       image box doesn't stretch full-width on tablets and leave the photo tiny in a
       huge 4:5 frame. On phones the viewport is already < 460, so this is a no-op there. */
    .pdp2--2col .pdp2__gallery { max-width: 460px; margin-inline: auto; width: 100%; }
    .pdp2__sticky { position: static; }
    .pdp2__buy-block { max-width: none; }
    .reviews__list { grid-template-columns: 1fr; }
    .pdp-subnav { display: none; }
    .pdp2__title { font-size: clamp(26px, 6vw, 38px); }
    .pdp-section { margin-bottom: 44px; padding-top: 32px; }
}
@media (max-width: 640px) {
    .pdp2__specs { grid-template-columns: 1fr; }
    .pdp2__trust { grid-template-columns: 1fr; }
    .reviews__overview { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .review-form__row { grid-template-columns: 1fr; }
    .pdp2__buy-block { gap: 12px; }
    .pdp2__add-btn, .pdp2__buynow-btn, .pdp2__sq-btn { height: 52px; }
    .pdp2__buy-price-now { font-size: 1.3rem; }
    .pdp2__qty-btn, #pdp-qty { height: 46px; }
    .pdp2-desc { font-size: 15.5px; }
    .pdp2-desc img { margin: 22px auto; border-radius: 8px; }
    .pdp-section__title { font-size: 21px; margin-bottom: 18px; }
    .reviews__big-num { font-size: 38px; }
    .crumbs { margin: 12px 0 18px; }
}
@media (max-width: 380px) {
    .pdp2__cta2 { flex-wrap: wrap; }
    .pdp2__buynow-btn { flex: 1 1 100%; }
}
