/* ═══════════════════════════════════════
   PRODUCT SHOWCASE — "THE DROP"
   Dain's Global · SS'26
   ═══════════════════════════════════════ */

/* ── Section ── */
.product-showcase {
  background: var(--bg-warm);
  padding: 64px 0 0;
  overflow: hidden;
}
.product-showcase .sec-head { margin-bottom: 24px; }

/* ── Layout ── */
.product-layout { margin-top: 0; }

/* ── Gallery ── */
.product-gallery { position: relative; width: 100%; }

.product-gallery-main {
  overflow: hidden;
  position: relative;
  touch-action: pan-y pinch-zoom;
}

.product-gallery-track {
  display: flex;
  transition: transform .5s var(--ease);
  will-change: transform;
  cursor: grab;
}
.product-gallery-track.dragging {
  transition: none;
  cursor: grabbing;
}

.product-gallery-slide {
  flex: 0 0 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 50%, var(--charcoal) 100%);
}
.product-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.gallery-counter {
  position: absolute;
  bottom: 16px;
  right: var(--gut);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: rgba(245,243,238,.7);
  z-index: 2;
  pointer-events: none;
}

/* Dots (mobile) */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 0 6px;
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; padding: 0;
  cursor: pointer;
  transition: all .35s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.gallery-dot.active {
  background: var(--navy);
  transform: scale(1.4);
}

/* Thumbs (desktop — hidden on mobile) */
.gallery-thumbs { display: none; }
.gallery-thumb {
  width: 72px; height: 96px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .3s var(--ease), opacity .3s var(--ease);
  padding: 0;
  background: var(--bg-warm);
  opacity: .5;
  -webkit-tap-highlight-color: transparent;
}
.gallery-thumb.active {
  border-color: var(--navy);
  opacity: 1;
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── Product Info ── */
.product-info { padding: 12px var(--gut) 48px; }

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 14px;
}

.product-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.12;
  color: var(--navy);
}

.product-variant {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.product-price-block {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.product-price {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
  position: relative;
}
.product-price::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .8s var(--ease);
}
.product-price.revealed::after { width: 100%; }

.product-mrp {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-muted);
  text-decoration: line-through;
}
.product-discount {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #1a6b3c;
  background: rgba(26,107,60,.08);
  padding: 3px 8px;
}
.product-price-note {
  width: 100%;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Features ── */
.product-features {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-soft);
}
.product-feature svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex: none;
}

/* ── Size Selector ── */
.size-selector { margin-top: 28px; }
.size-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.size-guide-link {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
  cursor: pointer;
  background: none; border: none;
  -webkit-tap-highlight-color: transparent;
}
.size-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.size-pill {
  min-width: 52px; min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink);
  cursor: pointer;
  transition: all .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.size-pill:hover { border-color: var(--ink-soft); }
.size-pill:active { transform: scale(.93); }
.size-pill.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: #F5F3EE;
  animation: pillSelect .4s var(--ease);
}
@keyframes pillSelect {
  0% { transform: scale(.93); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.size-fit-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-muted);
  font-style: italic;
}

/* ═══════════════════════════════════════
   ORDER BUTTON — TRUCK ANIMATION
   ═══════════════════════════════════════ */
.order-btn-wrap { margin-top: 28px; }

.order-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 82px;
  padding: 0; border: 0;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(var(--navy), var(--navy-deep));
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.08),
    0 8px 24px rgba(15,22,40,.25);
  -webkit-tap-highlight-color: transparent;
}
.order-btn-label {
  position: absolute; inset: 0;
  z-index: 20;
  display: grid; place-items: center;
  color: #F5F3EE;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: opacity .18s ease, transform .35s ease;
}
.order-btn .street {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .25s ease;
}
.order-btn.running .order-btn-label {
  opacity: 0;
  transform: translateY(-8px);
}
.order-btn.running .street { opacity: 1; }

/* Street */
.order-btn .horizon {
  position: absolute;
  left: 0; right: 0; bottom: 20px;
  height: 1.5px;
  background: rgba(184,146,46,.25);
}
.order-btn .road {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 21px;
  background: linear-gradient(#12172a, #0a0e1c);
  border-radius: 0 0 999px 999px;
}
.order-btn .road-edge {
  position: absolute;
  left: 0; right: 0; bottom: 19px;
  height: 1.5px;
  background: rgba(184,146,46,.2);
}
.order-btn .road-ticks {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  height: 1.5px;
  background: repeating-linear-gradient(
    90deg, transparent 0 28px,
    rgba(184,146,46,.3) 28px 56px,
    transparent 56px 86px
  );
  opacity: .55;
}

/* Depot */
.order-btn .depot {
  position: absolute;
  right: 22px; bottom: 20px;
  width: 50px; height: 50px;
  border: 1.5px solid var(--gold-soft);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background: repeating-linear-gradient(
    0deg, rgba(184,146,46,.3) 0 4px,
    rgba(27,37,71,.5) 4px 6px
  );
  transform-origin: bottom;
}
.order-btn .depot.open {
  animation: shutterOpen .42s ease forwards;
}
@keyframes shutterOpen {
  to { transform: scaleY(.08); }
}

/* Truck */
.order-btn .truck {
  position: absolute;
  left: -160px; bottom: 22px;
  width: 140px; height: 56px;
  z-index: 8;
}
.order-btn .truck.drive-in {
  animation: truckIn 1.05s cubic-bezier(.22,1,.36,1) forwards;
}
.order-btn .truck.drive-out {
  animation: truckOut .72s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes truckIn {
  from { left: -160px; }
  to   { left: calc(100% - 170px); }
}
@keyframes truckOut {
  from { left: calc(100% - 170px); }
  to   { left: calc(100% + 30px); }
}
.order-btn .truck-body {
  position: absolute;
  left: 4px; top: 8px;
  width: 94px; height: 37px;
  background: var(--bg-warm);
  border: 1px solid rgba(184,146,46,.3);
  border-radius: 3px 2px 2px 3px;
}
.order-btn .truck-body::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: var(--gold);
}
.order-btn .depot-word {
  position: absolute;
  left: 7px; top: 9px;
  font-family: var(--serif);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .8px;
  color: var(--navy);
}
.order-btn .shutter {
  position: absolute;
  left: 36px; top: 4px;
  width: 50px; height: 31px;
  border: 1px solid rgba(184,146,46,.3);
  border-radius: 2px;
  background: repeating-linear-gradient(
    0deg, rgba(27,37,71,.15) 0 3px,
    rgba(245,243,238,.8) 3px 5px
  );
}
.order-btn .cab {
  position: absolute;
  right: 4px; top: 20px;
  width: 42px; height: 26px;
  background: var(--bg-warm);
  border: 1px solid rgba(184,146,46,.3);
  border-radius: 2px 8px 3px 2px;
}
.order-btn .cab::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: var(--gold);
}
.order-btn .window {
  position: absolute;
  right: 12px; top: 23px;
  width: 24px; height: 12px;
  background: var(--navy);
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
}
.order-btn .window-split {
  position: absolute;
  right: 24px; top: 23px;
  width: 1.5px; height: 12px;
  background: var(--bg-warm);
  z-index: 2;
}
.order-btn .wheel {
  position: absolute;
  bottom: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 4px solid rgba(245,243,238,.7);
  box-shadow: 0 0 0 1.5px var(--navy);
}
.order-btn .wheel::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(184,146,46,.5);
}
.order-btn .wheel.one { left: 18px; }
.order-btn .wheel.two { right: 18px; }

.order-btn .parcel {
  position: absolute;
  right: 48px; bottom: 50px;
  width: 15px; height: 15px;
  border-radius: 2px;
  background: var(--gold);
  border: 1.5px solid var(--gold-soft);
  opacity: 0;
  z-index: 12;
}
.order-btn .parcel.deliver {
  animation: parcelHop .72s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes parcelHop {
  0%   { opacity: 0; transform: translate(0,0) rotate(0); }
  15%  { opacity: 1; }
  48%  { opacity: 1; transform: translate(-7px,-32px) rotate(-9deg); }
  100% { opacity: 1; transform: translate(-28px,-4px) rotate(0); }
}
.order-btn.success .order-btn-label {
  opacity: 1;
  transform: none;
}

/* Wishlist row */
.wish-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  align-items: center;
}
.product-wish-btn {
  width: 52px; height: 52px;
  flex: none;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s var(--ease);
  -webkit-tap-highlight-color: transparent;
  border-radius: 50%;
}
.product-wish-btn:hover { border-color: var(--gold); color: var(--gold); }
.product-wish-btn:active { transform: scale(.9); }
.product-wish-btn.liked { background: var(--gold); border-color: var(--gold); color: white; }
.product-wish-btn svg { width: 20px; height: 20px; }

/* ── Accordion ── */
.product-accordions {
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.product-accordion { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: none; border: none;
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.accordion-icon {
  width: 20px; height: 20px;
  position: relative;
  flex: none;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--ink);
  transition: transform .3s var(--ease);
}
.accordion-icon::before {
  width: 12px; height: 1.5px;
  transform: translate(-50%,-50%);
}
.accordion-icon::after {
  width: 1.5px; height: 12px;
  transform: translate(-50%,-50%);
}
.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%,-50%) rotate(90deg);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.accordion-panel-inner {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ── Trust Signals ── */
.trust-signals {
  display: flex;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.trust-item {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
}
.trust-item:not(:last-child) {
  border-right: 1px solid var(--border);
}
.trust-icon {
  width: 28px; height: 28px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.trust-text {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* ── Sticky CTA (mobile) ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
  will-change: transform;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-info { flex: none; }
.sticky-cta-price {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  line-height: 1;
}
.sticky-cta-name {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 3px;
}
.sticky-cta-btn {
  flex: 1;
  min-height: 44px;
  background: var(--navy);
  color: #F5F3EE;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.sticky-cta-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184,146,46,.25), transparent);
  transition: left .7s var(--ease);
  pointer-events: none;
}
.sticky-cta-btn:hover::after { left: 100%; }
.sticky-cta-btn:active { transform: scale(.97); }

/* Dots (mobile) */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0 6px;
}
.gallery-dot {
  width: 44px; height: 44px;
  background: transparent;
  border: none; padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.gallery-dot::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all .35s var(--ease);
}
.gallery-dot.active::after {
  background: var(--navy);
  transform: scale(1.4);
}

/* ── Size Guide Modal ── */
.size-guide-modal {
  position: fixed; inset: 0;
  z-index: 350;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.size-guide-modal.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.size-guide-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,22,40,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.size-guide-card {
  position: relative;
  width: min(560px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  transform: translateY(16px);
  transition: transform .35s var(--ease);
  z-index: 2;
}
.size-guide-modal.open .size-guide-card {
  transform: translateY(0);
}
.size-guide-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--ink);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}
.size-guide-close:hover { background: var(--border); }
.size-guide-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.size-guide-head h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 6px;
}
.size-guide-head p {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.6;
}
.size-guide-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}
.size-guide-table th {
  background: var(--navy);
  color: #F5F3EE;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 14px;
}
.size-guide-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.size-guide-table tr.highlighted {
  background: rgba(184,146,46,.12);
}
.size-guide-table tr:last-child td {
  border-bottom: none;
}
.size-guide-tips {
  margin-top: 18px;
  padding: 14px;
  background: rgba(27,37,71,.04);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(15,22,40,.96);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-close {
  position: absolute;
  top: 12px; right: 12px;
  color: rgba(245,243,238,.8);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: none; border: none;
  min-width: 44px; min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.lightbox img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  transform: scale(.92);
  transition: transform .4s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox-counter {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(245,243,238,.5);
  letter-spacing: .1em;
}

/* ── Stagger Reveal ── */
.product-info .reveal-el {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.product-info.in-view .reveal-el {
  opacity: 1;
  transform: translateY(0);
}
.product-info.in-view .reveal-el:nth-child(1) { transition-delay: 0s; }
.product-info.in-view .reveal-el:nth-child(2) { transition-delay: .07s; }
.product-info.in-view .reveal-el:nth-child(3) { transition-delay: .14s; }
.product-info.in-view .reveal-el:nth-child(4) { transition-delay: .21s; }
.product-info.in-view .reveal-el:nth-child(5) { transition-delay: .28s; }
.product-info.in-view .reveal-el:nth-child(6) { transition-delay: .35s; }
.product-info.in-view .reveal-el:nth-child(7) { transition-delay: .42s; }
.product-info.in-view .reveal-el:nth-child(8) { transition-delay: .49s; }
.product-info.in-view .reveal-el:nth-child(9) { transition-delay: .56s; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (768px+)
   ═══════════════════════════════════════ */
@media (min-width: 768px) {
  .product-showcase { padding: 48px 0 36px; }
  .product-showcase .sec-head { margin-bottom: 24px; }
  .product-layout {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gut);
    display: grid;
    grid-template-columns: minmax(300px, 420px) 1fr;
    gap: 28px;
    align-items: start;
  }
  .gallery-dots { padding: 10px 0; }
  .product-info { padding: 0 0 24px 16px; }
  .product-name { font-size: 28px; }
  .sticky-cta { display: none; }
  .order-btn { height: 72px; }
  .order-btn-label { font-size: 15px; }
  .product-gallery-slide { max-height: 520px; border-radius: 8px; }
  .product-gallery-main { max-height: 520px; border-radius: 8px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — DESKTOP (1024px+)
   ═══════════════════════════════════════ */
@media (min-width: 1024px) {
  .product-showcase {
    padding: 56px 0 40px;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .product-showcase .sec-head { margin-bottom: 20px; }
  .product-layout {
    grid-template-columns: 460px 1fr;
    gap: 36px;
    align-items: center;
  }
  .product-gallery {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 12px;
    max-height: 520px;
  }
  .product-gallery-main {
    grid-column: 2;
    grid-row: 1;
    max-height: 520px;
    border-radius: 8px;
  }
  .product-gallery-slide {
    max-height: 520px;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
  }
  .product-gallery-slide img {
    object-fit: cover;
    object-position: top center;
  }
  .gallery-dots { display: none; }
  .gallery-counter { display: none; }
  .gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-column: 1;
    grid-row: 1;
    max-height: 520px;
  }
  .gallery-thumb {
    width: 68px;
    height: 88px;
    border-radius: 4px;
  }
  .product-info { padding: 0 0 0 20px; }
  .product-name { font-size: 32px; }
  .product-price { font-size: 32px; }
  .product-badge { margin-bottom: 8px; }
  .product-price-block { margin-top: 12px; }
  .product-features { margin-top: 14px; gap: 16px; }
  .size-selector { margin-top: 18px; }
  .size-pill { min-width: 44px; min-height: 44px; font-size: 12px; }
  .order-btn-wrap { margin-top: 20px; }
  .order-btn { height: 74px; }
  .order-btn-label { font-size: 16px; }
  .product-accordions { margin-top: 20px; }
  .trust-signals { margin-top: 18px; padding-top: 14px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP (1280px+)
   ═══════════════════════════════════════ */
@media (min-width: 1280px) {
  .product-layout { grid-template-columns: 480px 1fr; gap: 48px; }
  .product-name { font-size: 34px; }
  .product-info { padding: 0 0 0 24px; }
}

