/* ============================================================
   HAZE STUDIO — Product Page + Header + Footer CSS  v3
   ============================================================ */
:root {
  --hz-black:   #000;
  --hz-dark:    #1a1a1a;
  --hz-white:   #fff;
  --hz-off:     #f7f7f7;
  --hz-light:   #efefef;
  --hz-border:  #e5e5e5;
  --hz-gray:    #999;
  --hz-mid:     #555;
  --hz-red:     #c62828;
  --hz-font:    'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --hz-max:     1440px;  /* wider overall layout */
}

/* ── Reset ──────────────────────────────────────────────────── */
.haze-pdp, .haze-pdp * { box-sizing: border-box; }
.haze-pdp { font-family: var(--hz-font); color: var(--hz-dark); background: var(--hz-white); line-height: 1.6; overflow-x: clip; }
/* NOTE: overflow-x:clip (not hidden) — "hidden" breaks position:sticky on .haze-gallery__col */
.haze-pdp a { color: inherit; text-decoration: none; }
.haze-pdp img { max-width: 100%; display: block; }
.haze-pdp button { font-family: var(--hz-font); }
.haze-pdp ul { padding-left: 1.3em; }
.haze-pdp li { margin-bottom: 5px; font-size: 13.5px; color: var(--hz-mid); }
.haze-pdp p  { margin: 0 0 8px; }

/* ══════════════════════════════════════════════════════════════
   MAIN LAYOUT — flex row so gallery col can be position:sticky
   ═════════════════════════════════════════════════════════════= */
.haze-pdp__main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  max-width: var(--hz-max);
  margin: 0 auto;
  padding: 40px 32px 72px;
}

/* ── Gallery column — STICKY as a unit ──────────────────────── */
.haze-gallery__col {
  flex: 0 0 clamp(320px, 44%, 500px);
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-self: flex-start;
  /* Ensure it can't exceed viewport */
  max-height: calc(100vh - 110px);
}

/* ── Thumbnail strip ────────────────────────────────────────── */
.haze-gallery__strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}
.haze-gallery__strip::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 60px; height: 60px;
  border: 2px solid transparent; border-radius: 6px;
  overflow: hidden; cursor: pointer; padding: 0; background: none;
  flex-shrink: 0; transition: border-color .15s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active  { border-color: var(--hz-black); }
.gallery-thumb:hover:not(.active) { border-color: #bbb; }

/* ── Main gallery image ─────────────────────────────────────── */
.haze-gallery__main {
  flex: 1;
  background: #f5f5f5; border-radius: 10px;
  overflow: hidden;
  height: 520px;
  cursor: zoom-in;
  position: relative;
}
.gallery-slide { display: none; width: 100%; height: 100%; }
.gallery-slide.active { display: block; }
.gallery-slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  transition: transform .3s ease;
  background: #f5f5f5;
}
.haze-gallery__main:hover .gallery-slide.active img { transform: scale(1.03); }

.gallery-zoom-btn {
  position: absolute; bottom: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.9); border: 1px solid var(--hz-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--hz-dark); transition: background .15s;
}
.gallery-zoom-btn:hover { background: var(--hz-white); }

/* ── Info panel ─────────────────────────────────────────────── */
.haze-info {
  flex: 1;
  min-width: 0;
}

.haze-info__title {
  font-size: 24px; font-weight: 800;
  line-height: 1.25; letter-spacing: -.02em;
  margin: 0 0 14px; color: var(--hz-dark);
}

/* Price */
.haze-info__price-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px; flex-wrap: wrap;
}
.price-current { font-size: 20px; font-weight: 700; }
.price-placeholder { font-size: 14px; color: var(--hz-gray); }
.price-regular del { font-size: 14px; color: var(--hz-gray); }
.price-save-badge {
  background: var(--hz-black); color: var(--hz-white);
  font-size: 11px; font-weight: 700; padding: 3px 9px;
  border-radius: 20px; letter-spacing: .04em;
}

/* Stars */
.haze-info__rating {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--hz-border);
}
.stars-row { display: flex; gap: 2px; }
.star { fill: none; stroke: #d0d0d0; stroke-width: 1.5; }
.star.filled { fill: #f59e0b; stroke: #f59e0b; }
.rating-text { font-size: 12.5px; color: var(--hz-gray); }
.no-reviews-link { text-decoration: underline; text-underline-offset: 3px; }
.no-reviews-link:hover { color: var(--hz-dark); }

/* Attr groups */
.haze-attr-group { margin-bottom: 14px; }
.attr-label-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.attr-label { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; }
.attr-selected { font-size: 12px; color: var(--hz-mid); }
.attr-options { display: flex; gap: 7px; flex-wrap: wrap; }
.attr-btn {
  min-width: 42px; height: 42px; padding: 0 14px;
  border: 2px solid var(--hz-border); border-radius: 6px;
  background: var(--hz-white); font-size: 12px; font-weight: 700;
  color: var(--hz-dark); cursor: pointer; letter-spacing: .04em;
  transition: border-color .15s, background .15s, color .15s;
}
.attr-btn:hover { border-color: var(--hz-dark); }
.attr-btn.active { background: var(--hz-black); color: var(--hz-white); border-color: var(--hz-black); }
.attr-error { font-size: 11.5px; color: var(--hz-red); margin: 6px 0 0; font-weight: 600; }
.attr-error::before { content: '⚠ '; }

.sizing-chart-link {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; color: var(--hz-mid);
  font-size: 12px; cursor: pointer; padding: 0;
  text-decoration: underline; text-underline-offset: 3px; margin-top: 6px;
}
.sizing-chart-link:hover { color: var(--hz-black); }

/* Qty */
.haze-qty-row { margin: 16px 0 13px; }
.haze-qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--hz-border); border-radius: 6px; overflow: hidden;
}
.qty-btn {
  width: 40px; height: 40px; background: none; border: none;
  font-size: 18px; font-weight: 300; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--hz-dark); transition: background .15s;
}
.qty-btn:hover { background: var(--hz-off); }
.qty-val {
  min-width: 38px; text-align: center; font-size: 15px; font-weight: 600;
  border-left: 1.5px solid var(--hz-border); border-right: 1.5px solid var(--hz-border);
  height: 40px; line-height: 40px;
}

/* CTA */
@keyframes hzShimmer {
  from { background-position: 200% center; }
  to   { background-position: -200% center; }
}
@keyframes hzPulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(0,0,0,.25); }
  70%  { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

.haze-cta-group { display: flex; flex-direction: column; gap: 9px; margin-bottom: 13px; }

.haze-atc-btn {
  width: 100%; height: 52px;
  background: var(--hz-black); color: var(--hz-white); border: none;
  border-radius: 6px; font-size: 14px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.haze-atc-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    transparent 35%,
    rgba(255,255,255,.18) 50%,
    transparent 65%);
  background-size: 300% 100%;
  background-position: 200% center;
  opacity: 0;
  transition: opacity .2s;
}
.haze-atc-btn:hover:not(:disabled) {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.haze-atc-btn:hover:not(:disabled)::before {
  opacity: 1;
  animation: hzShimmer .7s ease;
}
.haze-atc-btn:active:not(:disabled) { transform: translateY(0) scale(.98); }
.haze-atc-btn:disabled { background: #888; cursor: not-allowed; transform: none; }
.haze-atc-btn.loading .atc-label { opacity: 0; }
.haze-atc-btn.loading .atc-spinner { display: flex !important; position: absolute; }
.atc-sep { opacity: .35; }
@keyframes spinAnim { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.spin { animation: spinAnim .7s linear infinite; }

.haze-buy-btn {
  width: 100%; height: 46px;
  background: transparent; color: var(--hz-dark);
  border: 2px solid var(--hz-dark); border-radius: 6px;
  font-size: 13.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.haze-buy-btn:hover:not(:disabled) {
  background: var(--hz-dark); color: var(--hz-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.16);
}
.haze-buy-btn:active:not(:disabled) { transform: scale(.98); }
.haze-buy-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Payment icons */
.haze-payment-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 16px;
  flex-wrap: wrap;
  background: none !important;
  background-color: transparent !important;
}
.pay-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  padding: 4px 10px !important;
  box-shadow: none !important;
  height: 34px !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
}
.pay-icon svg {
  display: block !important;
  height: 22px !important;
  width: auto !important;
  overflow: visible !important;
  flex: none !important;
}

/* Short desc */
.haze-short-desc {
  font-size: 13.5px; line-height: 1.75; color: var(--hz-mid);
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--hz-border);
}

/* Accordions */
.haze-accordions { margin-bottom: 20px; }
.haze-acc { border-top: 1px solid var(--hz-border); }
.haze-acc:last-child { border-bottom: 1px solid var(--hz-border); }
.haze-acc__head {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 0; cursor: pointer; list-style: none; user-select: none;
}
.haze-acc__head::-webkit-details-marker { display: none; }
.acc-icon { color: var(--hz-mid); display: flex; flex-shrink: 0; }
.acc-title { flex: 1; font-size: 13px; font-weight: 600; }
.acc-chevron { color: var(--hz-gray); display: flex; transition: transform .2s; }
.haze-acc[open] .acc-chevron { transform: rotate(180deg); }
.haze-acc__body { padding: 0 0 16px 26px; font-size: 13px; color: var(--hz-mid); line-height: 1.75; }
.haze-acc__body ul { padding-left: 1.2em; }
.haze-acc__body li { margin-bottom: 5px; font-size: 13px; }
.acc-disclaimer { font-size: 11px; color: #bbb; margin-top: 10px; font-style: italic; }

/* Delivery */
.haze-delivery-estimate {
  display: flex; align-items: flex-start; gap: 9px;
  background: var(--hz-off); border: 1px solid var(--hz-border);
  border-radius: 8px; padding: 12px 14px;
  font-size: 13px; color: var(--hz-mid); margin-bottom: 16px;
}
.haze-delivery-estimate svg { flex-shrink: 0; margin-top: 2px; }
.haze-delivery-estimate strong { color: var(--hz-dark); }

/* Timeline */
.haze-timeline { margin-bottom: 16px; }
.haze-timeline__track { display: flex; align-items: center; margin-bottom: 10px; }
.tl-node { display: flex; align-items: center; flex: 1; }
.tl-node:last-child { flex: 0 0 auto; }
.tl-circle {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%; border: 2px solid var(--hz-border);
  background: #f0f0f0; color: var(--hz-gray);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
}
.tl-node.tl-node--done .tl-circle {
  background: var(--hz-black); border-color: var(--hz-black); color: var(--hz-white);
}
.tl-line { flex: 1; height: 2px; background: var(--hz-border); margin: 0 4px; }
.haze-timeline__labels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.tl-label { text-align: left; }
.tl-label--center { text-align: center; }
.tl-label--right { text-align: right; }
.tl-label strong { display: block; font-size: 11.5px; font-weight: 700; margin-bottom: 2px; color: var(--hz-dark); }
.tl-label span   { font-size: 11px; color: var(--hz-gray); display: block; }

/* Stock badge */
.haze-stock-badge {
  display: inline-block; border: 1.5px solid var(--hz-dark);
  color: var(--hz-dark); font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px; margin-bottom: 20px;
}
.haze-stock-badge--out { border-color: var(--hz-red); color: var(--hz-red); }

/* Bundle */
.haze-bundle { border: 1.5px solid var(--hz-border); border-radius: 10px; overflow: hidden; margin-top: 22px; }
.bundle-header { background: var(--hz-black); padding: 11px 16px; }
.bundle-tag { font-size: 12.5px; font-weight: 800; letter-spacing: .1em; color: var(--hz-white); }
.bundle-items { padding: 0 14px; }
.bundle-item { display: grid; grid-template-columns: 56px 1fr 24px; gap: 11px; align-items: start; padding: 12px 0; border-bottom: 1px solid var(--hz-border); position: relative; }
.bundle-item:last-child { border-bottom: none; }
.bundle-item__img { width: 56px; height: 56px; border-radius: 6px; overflow: hidden; background: var(--hz-off); }
.bundle-item__img img { width: 100%; height: 100%; object-fit: cover; }
.bundle-item__name { font-size: 12.5px; font-weight: 600; margin-bottom: 3px; line-height: 1.35; }
.bundle-item__price { font-size: 12.5px; display: flex; align-items: center; gap: 6px; }
.bundle-item__price del { color: var(--hz-gray); font-size: 11.5px; }
.bundle-item__selects { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 7px; }
.bundle-attr-select { height: 30px; padding: 0 7px; border: 1.5px solid var(--hz-border); border-radius: 4px; font-size: 11.5px; min-width: 85px; cursor: pointer; background: var(--hz-white); }
.bundle-attr-select.select-error { border-color: var(--hz-red); }
.bundle-plus { display: flex; align-items: center; justify-content: center; }
.bundle-footer { background: var(--hz-off); padding: 12px 14px; border-top: 1px solid var(--hz-border); }
.bundle-total-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.bundle-total-label { font-size: 12.5px; color: var(--hz-mid); font-weight: 600; }
.bundle-total-prices { display: flex; align-items: center; gap: 7px; }
.bundle-total-reg { font-size: 12.5px; color: var(--hz-gray); }
.bundle-total-prices strong { font-size: 18px; font-weight: 800; }
.bundle-cta-btn {
  width: 100%; height: 46px; background: var(--hz-black); color: var(--hz-white);
  border: none; border-radius: 6px; font-size: 12.5px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  margin-bottom: 7px; position: relative; overflow: hidden;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.bundle-cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  background-size: 300% 100%; background-position: 200% center; opacity: 0; transition: opacity .2s;
}
.bundle-cta-btn:hover:not(:disabled) { background: #111; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.bundle-cta-btn:hover:not(:disabled)::before { opacity: 1; animation: hzShimmer .7s ease; }
.bundle-cta-btn:active:not(:disabled) { transform: scale(.98); }
.bundle-cta-btn:disabled { background: #888; cursor: not-allowed; }
.bundle-pack-note { text-align: center; font-size: 11.5px; color: var(--hz-gray); font-style: italic; }

/* WHY YOU'LL LOVE IT */
.haze-why { padding: 80px 32px; max-width: var(--hz-max); margin: 0 auto; border-top: 1px solid var(--hz-border); background: #fafafa; }
.haze-why__title { text-align: center; font-size: 36px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.02em; }
.haze-why__sub {
  text-align: center !important;
  font-size: 14px; color: var(--hz-gray);
  margin: 0 auto 48px !important;
  max-width: 680px;
  /* Hidden on desktop — shown only on mobile via media query below */
  display: none;
  width: 100%;
}
.haze-why__grid { display: grid; grid-template-columns: 1fr 320px 1fr; gap: 48px; align-items: center; margin-top: 48px; }
.why-col { display: flex; flex-direction: column; gap: 20px; }
.why-feat { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--hz-border); border-radius: 12px; padding: 18px 20px; transition: box-shadow .2s; }
.why-feat:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); }
.why-feat--right { flex-direction: row-reverse; text-align: right; }
.why-check { width: 30px; height: 30px; border-radius: 50%; background: var(--hz-dark); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; margin-top: 1px; }
.why-feat h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--hz-dark); }
.why-feat p  { font-size: 12.5px; color: var(--hz-gray); margin: 0; line-height: 1.6; }
.why-center-img { width: 100%; border-radius: 16px; aspect-ratio: 3/4; object-fit: cover; box-shadow: 0 20px 60px rgba(0,0,0,.15); display: block; }
.why-center-placeholder { aspect-ratio: 3/4; background: var(--hz-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--hz-gray); font-size: 12px; }

/* RECOMMENDED */
.haze-recommended { padding: 72px 32px; max-width: var(--hz-max); margin: 0 auto; border-top: 1px solid var(--hz-border); }
.haze-rec__title { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 32px; letter-spacing: -.02em; }
.haze-rec-outer { position: relative; overflow: hidden; }
.haze-rec-track {
  display: flex; gap: 18px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  cursor: grab; user-select: none;
  touch-action: pan-y; /* allow vertical scroll, JS handles horizontal */
}
.haze-rec-track.is-dragging { cursor: grabbing; transition: none; }
.rec-card { display: flex; flex-direction: column; flex: 0 0 calc(33.333% - 12px); border-radius: 10px; overflow: hidden; border: 1px solid var(--hz-border); transition: transform .2s, box-shadow .2s; color: inherit; text-decoration: none; background: var(--hz-white); }
.rec-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.08); }
.rec-card__img { position: relative; aspect-ratio: 1/1; background: var(--hz-off); overflow: hidden; flex-shrink: 0; }
.rec-card__img img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.rec-card:hover .rec-card__img img { transform: scale(1.04); }
.rec-save { position: absolute; top: 10px; left: 10px; z-index: 1; background: var(--hz-black); color: var(--hz-white); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px; }
.rec-card__body { padding: 12px 14px 16px; }
.rec-card__body h4 { font-size: 13px; font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.rec-price { display: flex; align-items: center; gap: 7px; }
.rec-price span { font-size: 13.5px; font-weight: 700; }
.rec-price del  { font-size: 11.5px; color: var(--hz-gray); }
.rec-nav { position: absolute; top: 42%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; background: var(--hz-white); border: 1px solid var(--hz-border); font-size: 20px; cursor: pointer; z-index: 5; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.1); transition: all .15s; color: var(--hz-dark); }
.rec-nav:hover { background: var(--hz-black); color: var(--hz-white); }
.rec-prev { left: -19px; }
.rec-next { right: -19px; }
.rec-dots { display: flex; justify-content: center; gap: 7px; margin-top: 22px; }
.rec-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--hz-border); cursor: pointer; transition: all .2s; }
.rec-dot.active { background: var(--hz-black); transform: scale(1.3); }

/* ══════════════════════════════════════════════════════════════
   CUSTOM REVIEWS SECTION
   ═════════════════════════════════════════════════════════════= */
.haze-reviews { padding: 72px 32px; max-width: var(--hz-max); margin: 0 auto; border-top: 1px solid var(--hz-border); }
.haze-reviews__title { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 40px; letter-spacing: -.02em; }

.haze-rev-wrap { display: flex; flex-direction: column; gap: 40px; }

/* Summary panel */
.haze-rev-summary {
  display: flex; align-items: flex-start; gap: 40px;
  background: var(--hz-off); border-radius: 12px; padding: 28px 32px;
  flex-wrap: wrap;
}
.rev-avg-block { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 100px; }
.rev-avg-number { font-size: 52px; font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.rev-avg-stars { display: flex; gap: 3px; }
.rev-total-count { font-size: 12.5px; color: var(--hz-gray); }

.rev-dist { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 200px; }
.rev-dist-row { display: flex; align-items: center; gap: 10px; }
.rev-dist-label { display: flex; align-items: center; gap: 3px; font-size: 12.5px; font-weight: 600; width: 28px; flex-shrink: 0; }
.rev-dist-bar { flex: 1; height: 8px; background: #e5e5e5; border-radius: 4px; overflow: hidden; }
.rev-dist-fill { height: 100%; background: #f59e0b; border-radius: 4px; transition: width .4s ease; }
.rev-dist-count { font-size: 11.5px; color: var(--hz-gray); width: 22px; text-align: right; flex-shrink: 0; }

.rev-write-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--hz-black); color: var(--hz-white);
  border: none; padding: 12px 22px; border-radius: 8px;
  font-size: 13.5px; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: background .15s; align-self: center;
}
.rev-write-btn:hover { background: #222; }

/* Review cards */
.haze-rev-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.rev-card {
  border: 1px solid var(--hz-border); border-radius: 10px;
  padding: 18px; background: var(--hz-white);
  transition: box-shadow .2s;
}
.rev-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.rev-card__head { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 11px; }
.rev-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--hz-dark); color: var(--hz-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; flex-shrink: 0;
}
.rev-meta { flex: 1; }
.rev-author { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 1px; }
.rev-date   { font-size: 11.5px; color: var(--hz-gray); }
.rev-stars  { display: flex; gap: 2px; flex-shrink: 0; }
.rev-card__title { font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.rev-card__body  { font-size: 13px; color: var(--hz-mid); line-height: 1.65; margin-bottom: 10px; }
.rev-verified { font-size: 11px; color: #2e7d32; font-weight: 600; }
.rev-verified::before { content: ''; }

/* Empty state */
.rev-empty { text-align: center; padding: 48px 20px; color: var(--hz-gray); }
.rev-empty-icon { font-size: 40px; margin-bottom: 12px; }
.rev-empty p { font-size: 15px; }

/* Review form (slide-down panel) */
.haze-rev-form-wrap {
  background: var(--hz-off); border: 1.5px solid var(--hz-border);
  border-radius: 12px; overflow: hidden;
}
.haze-rev-form { padding: 28px 32px; }
.rev-form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.rev-form-head h3 { font-size: 20px; font-weight: 800; }
.rev-form-close { width: 34px; height: 34px; background: var(--hz-light); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--hz-dark); transition: background .15s; }
.rev-form-close:hover { background: var(--hz-border); }

.rev-star-picker { margin-bottom: 20px; }
.rev-field-label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.req { color: var(--hz-red); }
.star-picker { display: flex; align-items: center; gap: 4px; }
.star-pick-btn {
  background: none; border: none; cursor: pointer; padding: 2px;
  transition: transform .1s;
}
.star-pick-btn:hover { transform: scale(1.15); }
.star-pick-btn svg { fill: #e0e0e0; transition: fill .15s; }
.star-pick-btn.active svg, .star-pick-btn.hovered svg { fill: #f59e0b; }
.star-pick-label { font-size: 12.5px; color: var(--hz-gray); margin-left: 6px; }

.rev-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.rev-field { margin-bottom: 14px; }
.rev-field:last-child { margin-bottom: 0; }
.rev-field input,
.rev-field textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--hz-border); border-radius: 7px;
  font-family: var(--hz-font); font-size: 14px;
  background: var(--hz-white); color: var(--hz-dark);
  outline: none; transition: border-color .15s;
}
.rev-field input:focus,
.rev-field textarea:focus { border-color: var(--hz-black); }
.rev-field textarea { height: 110px; resize: vertical; }

.rev-form-actions { margin-top: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.rev-submit-btn {
  padding: 13px 36px;
  background: var(--hz-black); color: var(--hz-white);
  border: none; border-radius: 7px;
  font-family: var(--hz-font); font-weight: 700; font-size: 14px;
  cursor: pointer; letter-spacing: .04em; transition: background .2s;
}
.rev-submit-btn:hover { background: #222; }
.rev-note { font-size: 11.5px; color: var(--hz-gray); margin: 0; }
.rev-login-prompt { text-align: center; padding: 24px; }
.rev-login-prompt a { text-decoration: underline; }

/* STICKY ATC BAR */
.haze-sticky-atc {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--hz-white); border-top: 2px solid var(--hz-black);
  box-shadow: 0 -6px 24px rgba(0,0,0,.12);
  transform: translateY(100%); transition: transform .3s cubic-bezier(.25,.46,.45,.94);
  /* iOS safe area — background fills the notch, content stays above */
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.haze-sticky-atc.visible { transform: translateY(0); }
.sticky-inner {
  display: flex; align-items: center; gap: 14px;
  max-width: var(--hz-max); margin: 0 auto; padding: 10px 32px;
}
.sticky-product { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.sticky-img { width: 46px; height: 46px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.sticky-text { min-width: 0; }
.sticky-title { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; }
.sticky-price { font-size: 12.5px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin: 2px 0 0; }
.sticky-price del { color: var(--hz-gray); font-size: 11.5px; }
.sticky-save { background: var(--hz-black); color: var(--hz-white); font-size: 9.5px; font-weight: 700; padding: 2px 6px; border-radius: 10px; }
.sticky-selects { display: flex; gap: 8px; flex-shrink: 0; min-width: 0; }
.sticky-attr-select { height: 38px; padding: 0 10px; border: 1.5px solid var(--hz-border); border-radius: 6px; font-size: 12px; background: var(--hz-white); color: var(--hz-dark); min-width: 100px; cursor: pointer; }
.sticky-atc-btn {
  height: 42px; padding: 0 24px;
  background: var(--hz-black); color: var(--hz-white); border: none;
  border-radius: 6px; font-size: 13px; font-weight: 800; letter-spacing: .05em;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background .2s, transform .15s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.sticky-atc-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  background-size: 300% 100%; background-position: 200% center; opacity: 0; transition: opacity .2s;
}
.sticky-atc-btn:hover:not(:disabled) {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.sticky-atc-btn:hover:not(:disabled)::before { opacity: 1; animation: hzShimmer .7s ease; }
.sticky-atc-btn:active:not(:disabled) { transform: scale(.98); }
.sticky-atc-btn:disabled { background: #888; cursor: not-allowed; }

/* SIZE GUIDE MODAL */
.haze-modal-overlay { position: fixed; inset: 0; z-index: 99999; background: rgba(0,0,0,.55); backdrop-filter: blur(3px); display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s; }
.haze-modal-overlay.open { opacity: 1; pointer-events: all; }
.haze-modal { background: var(--hz-white); width: 100%; max-width: 640px; max-height: 88vh; border-radius: 14px 14px 0 0; overflow: hidden; display: flex; flex-direction: column; transform: translateY(16px); transition: transform .3s ease; }
.haze-modal-overlay.open .haze-modal { transform: translateY(0); }
.haze-modal__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--hz-border); }
.haze-modal__head h3 { font-size: 18px; font-weight: 800; }
.modal-close { width: 34px; height: 34px; background: var(--hz-off); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--hz-dark); transition: background .15s; }
.modal-close:hover { background: var(--hz-light); }
.haze-modal__body { padding: 20px; overflow-y: auto; }
.sg-note { font-size: 13px; background: var(--hz-off); padding: 10px 14px; border-radius: 6px; border-left: 3px solid var(--hz-black); margin-bottom: 18px; color: var(--hz-mid); }
.sg-table-wrap { overflow-x: auto; margin-bottom: 24px; }
.sg-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.sg-table th { background: var(--hz-black); color: var(--hz-white); padding: 10px 13px; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; text-align: left; }
.sg-table td { padding: 10px 13px; border-bottom: 1px solid var(--hz-border); }
.sg-table tr:nth-child(even) td { background: var(--hz-off); }
.sg-tips-title { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.sg-tips { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 16px; }
.sg-tip { background: var(--hz-off); padding: 10px 12px; border-radius: 6px; font-size: 12.5px; color: var(--hz-mid); line-height: 1.55; }
.sg-tip strong { color: var(--hz-dark); }
.sg-footer-note { font-size: 12px; color: var(--hz-gray); font-style: italic; border-top: 1px solid var(--hz-border); padding-top: 12px; }

/* TOAST */
.haze-toast {
  position: fixed;
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  left: 50%; z-index: 99998;
  transform: translateX(-50%) translateY(16px);
  background: var(--hz-black); color: var(--hz-white);
  padding: 12px 22px; border-radius: 40px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: all .3s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  max-width: 92vw; text-align: center; white-space: normal;
}
.haze-toast.show { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.toast-link { color: #adf; text-decoration: underline; margin-left: 8px; }

/* ══════════════════════════════════════════════════════════════
   HEADER
   ═════════════════════════════════════════════════════════════= */
.hz-header {
  font-family: var(--hz-font); background: var(--hz-white);
  position: sticky; top: 0; z-index: 8000;
  border-bottom: 1px solid var(--hz-border);
  transition: box-shadow .2s;
}
.hz-header--scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

/* Ticker */
.hz-ticker-bar { background: var(--hz-black); color: var(--hz-white); overflow: hidden; padding: 9px 0; font-size: 12.5px; letter-spacing: .04em; }
.hz-ticker-track { display: flex; gap: 40px; white-space: nowrap; animation: hzTickerScroll 28s linear infinite; }
.hz-ticker-item { flex-shrink: 0; }
.hz-ticker-sep { flex-shrink: 0; opacity: .5; }
@keyframes hzTickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* Promo bar */
.hz-promo-bar { background: var(--hz-dark); padding: 8px 20px; display: flex; align-items: center; justify-content: center; }
.hz-promo-inner { display: flex; align-items: center; gap: 14px; }
.hz-promo-bolt { font-size: 14px; }
.hz-promo-text { color: var(--hz-white); font-size: 13px; font-weight: 600; }
.hz-promo-coupon { display: flex; align-items: center; gap: 8px; }
.hz-coupon-code { background: rgba(255,255,255,.1); color: var(--hz-white); font-size: 13px; font-weight: 800; letter-spacing: .08em; padding: 4px 12px; border-radius: 4px; border: 1px solid rgba(255,255,255,.25); }
.hz-coupon-copy { display: flex; align-items: center; gap: 5px; background: var(--hz-white); color: var(--hz-dark); border: none; padding: 5px 12px; border-radius: 4px; font-size: 12.5px; font-weight: 700; cursor: pointer; transition: background .15s; white-space: nowrap; }
.hz-coupon-copy:hover { background: #e8e8e8; }
.hz-coupon-copy.copied { background: #d1fae5; color: #065f46; }

/* Main nav */
.hz-nav-wrap { max-width: var(--hz-max); margin: 0 auto; padding: 0 32px; }
.hz-nav { display: flex; align-items: center; height: 62px; gap: 24px; }
.hz-hamburger { background: none; border: none; cursor: pointer; padding: 4px; display: flex; flex-direction: column; gap: 5px; width: 30px; }
.hz-hamburger span { display: block; height: 2px; background: var(--hz-dark); border-radius: 2px; transition: all .25s; }
.hz-hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hz-hamburger.open span:nth-child(2) { opacity: 0; }
.hz-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }
.hz-logo { display: flex; align-items: center; margin-right: auto; }
.hz-logo__text { font-size: 22px; font-weight: 900; letter-spacing: .12em; color: var(--hz-black); }
.hz-logo__img { height: 36px; width: auto; }
.hz-nav__links { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; }
.hz-nav__links a { font-size: 13.5px; font-weight: 600; color: var(--hz-dark); letter-spacing: .02em; transition: color .15s; }
.hz-nav__links a:hover, .hz-nav__links a[aria-current="page"] { color: var(--hz-black); }
.hz-nav__icons { display: flex; align-items: center; gap: 10px; margin-left: 24px; }
.hz-icon-btn { background: none; border: none; cursor: pointer; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 6px; color: var(--hz-dark); transition: background .15s; position: relative; text-decoration: none; }
.hz-icon-btn:hover { background: var(--hz-off); }
.hz-cart-count { position: absolute; top: 3px; right: 3px; width: 17px; height: 17px; background: var(--hz-black); color: var(--hz-white); border-radius: 50%; font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; }

/* Search overlay */
.hz-search-overlay { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; background: rgba(0,0,0,.7); backdrop-filter: blur(6px); padding: 80px 20px; }
.hz-search-inner { max-width: 640px; margin: 0 auto; position: relative; display: flex; gap: 10px; }
.hz-search-input { flex: 1; height: 52px; padding: 0 16px; border: 2px solid var(--hz-border); border-radius: 8px; font-family: var(--hz-font); font-size: 16px; background: var(--hz-white); color: var(--hz-dark); outline: none; transition: border-color .15s; }
.hz-search-input:focus { border-color: var(--hz-black); }
.hz-search-submit { width: 52px; height: 52px; background: var(--hz-black); color: var(--hz-white); border: none; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.hz-search-close { position: absolute; top: -56px; right: 0; background: rgba(255,255,255,.15); border: none; color: var(--hz-white); width: 38px; height: 38px; border-radius: 50%; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* Mobile menu */
.hz-mobile-menu { position: fixed; top: 0; left: -320px; width: 300px; height: 100vh; background: var(--hz-white); z-index: 9999; transition: left .3s ease; display: flex; flex-direction: column; overflow-y: auto; }
.hz-mobile-menu.open { left: 0; }
.hz-mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9998; display: none; }
.hz-mobile-overlay.show { display: block; }
.hz-mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--hz-border); }
.hz-mobile-logo { font-size: 18px; font-weight: 900; letter-spacing: .1em; }
.hz-mobile-close { background: var(--hz-off); border: none; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; }
.hz-mobile-nav { flex: 1; padding: 12px 0; }
.hz-mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.hz-mobile-nav li a { display: block; padding: 14px 24px; font-size: 15px; font-weight: 600; color: var(--hz-dark); border-bottom: 1px solid var(--hz-border); transition: background .15s; }
.hz-mobile-nav li a:hover { background: var(--hz-off); }
.hz-mobile-bottom { padding: 20px 24px; border-top: 1px solid var(--hz-border); }
.hz-mobile-account { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--hz-dark); margin-bottom: 20px; text-decoration: none; }
.hz-mobile-social { display: flex; gap: 16px; }
.hz-mobile-social a { color: var(--hz-dark); opacity: .7; transition: opacity .15s; }
.hz-mobile-social a:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════= */
.hz-footer { font-family: var(--hz-font); background: #0d0d0d; color: rgba(255,255,255,.85); }
.hz-footer__wave { height: 60px; background: linear-gradient(180deg, var(--hz-white) 0%, var(--hz-white) 50%, transparent 100%); clip-path: ellipse(55% 100% at 50% 0%); }
.hz-footer__body { padding: 40px 32px 32px; max-width: var(--hz-max); margin: 0 auto; }
.hz-footer__inner { display: grid; grid-template-columns: 220px 1fr 180px; gap: 48px; margin-bottom: 36px; }

.hz-footer__logo-text { font-size: 20px; font-weight: 900; letter-spacing: .12em; color: var(--hz-white); display: block; margin-bottom: 10px; }
.hz-footer__logo-img { height: 40px; width: auto; margin-bottom: 10px; }
.hz-footer__tagline { font-size: 13px; color: rgba(255,255,255,.45); margin: 0; }

.hz-footer__col-title { font-size: 14.5px; font-weight: 700; color: var(--hz-white); margin-bottom: 18px; letter-spacing: .04em; }
.hz-footer__contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.hz-footer__contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.7); }
.hz-footer__contact-list svg { flex-shrink: 0; margin-top: 2px; opacity: .6; }
.hz-footer__contact-list a { color: rgba(255,255,255,.85); text-decoration: none; }
.hz-footer__contact-list a:hover { color: var(--hz-white); text-decoration: underline; }
.hz-footer__links-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.hz-footer__links-list a { font-size: 13.5px; color: rgba(255,255,255,.7); text-decoration: none; transition: color .15s; }
.hz-footer__links-list a:hover { color: var(--hz-white); }

.hz-footer__social { display: flex; gap: 16px; justify-content: center; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.hz-social-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--hz-white); transition: background .15s; }
.hz-social-icon:hover { background: rgba(255,255,255,.2); }

.hz-footer__bottom { padding: 18px 32px; max-width: var(--hz-max); margin: 0 auto; }
.hz-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.hz-footer__bottom-inner > span { font-size: 12.5px; color: rgba(255,255,255,.4); }
.hz-footer__bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.hz-footer__bottom-links a { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .15s; }
.hz-footer__bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ── Gallery mobile navigation (prev/next + dots) ───────────── */
.gallery-mob-prev,
.gallery-mob-next {
  display: none; /* revealed on tablet/mobile via media query below */
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: 1px solid var(--hz-border);
  font-size: 24px; line-height: 1; cursor: pointer; z-index: 6;
  align-items: center; justify-content: center;
  color: var(--hz-dark); box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: background .15s, opacity .15s;
  padding: 0;
}
.gallery-mob-prev:hover,
.gallery-mob-next:hover { background: var(--hz-white); }
.gallery-mob-prev { left: 10px; }
.gallery-mob-next { right: 10px; }
.gallery-mob-prev:disabled,
.gallery-mob-next:disabled { opacity: .3; cursor: default; }

.gallery-mob-dots {
  display: none; /* revealed on tablet/mobile via media query below */
  justify-content: center; gap: 7px;
  padding: 10px 0 2px;
}
.gallery-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--hz-border); cursor: pointer;
  transition: background .2s, transform .2s;
  border: none; padding: 0; flex-shrink: 0;
}
.gallery-dot.active { background: var(--hz-black); transform: scale(1.3); }

/* ══ RESPONSIVE ══════════════════════════════════════════════ */

/* ── 1200px ───────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .haze-pdp__main { gap: 28px; }
  .haze-gallery__col { flex: 0 0 clamp(300px, 42%, 460px); }
}

/* ── 960px (tablet) ───────────────────────────────────────── */
@media (max-width: 960px) {
  .haze-pdp__main {
    flex-direction: column;
    padding: 20px 16px 48px;
    gap: 24px;
  }
  /* Gallery col: static, full width, strip hidden */
  .haze-gallery__col {
    position: static;
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    max-height: none;
    gap: 0;
  }
  .haze-gallery__strip { display: none; }
  .haze-gallery__main {
    flex: none;
    height: 460px;
    width: 100%;
    border-radius: 10px;
  }

  /* ── Show gallery mobile nav on tablet/mobile ── */
  .gallery-mob-prev,
  .gallery-mob-next { display: flex; }
  .gallery-mob-dots  { display: flex; }

  .haze-why__grid   { grid-template-columns: 1fr; }
  .why-col--center  { order: -1; }
  .why-feat--right  { flex-direction: row; text-align: left; }
  .rec-card         { flex: 0 0 calc(50% - 9px); }
}

/* ── 640px (mobile) ───────────────────────────────────────── */
@media (max-width: 640px) {
  .haze-pdp__main { padding: 12px 12px 40px; gap: 16px; }
  .haze-info__title { font-size: 20px; }

  /* Gallery */
  .haze-gallery__main { flex: none; height: 360px; width: 100%; }

  /* Sections */
  .haze-why,
  .haze-recommended,
  .haze-reviews { padding: 48px 16px; }
  .haze-why__title,
  .haze-rec__title,
  .haze-reviews__title { font-size: 24px; }
  .haze-why__sub { display: block; font-size: 13.5px !important; }

  /* Recommended slider — single card + peek next */
  .rec-card { flex: 0 0 88%; }

  /* ── Bundle mobile fixes ─────────────────────────────────── */
  /* Shrink grid to drop the decorative plus column on small screens */
  .bundle-item { grid-template-columns: 50px 1fr; gap: 10px; }
  .bundle-item__img { width: 50px; height: 50px; }
  .bundle-plus { display: none; } /* decorative — not needed on mobile */
  /* Make variant selects fill their column instead of fixed min-width */
  .bundle-item__selects { flex-direction: column; gap: 5px; }
  .bundle-attr-select { min-width: 0; width: 100%; font-size: 11.5px; }

  /* Reviews */
  .haze-rev-summary   { flex-direction: column; gap: 20px; padding: 18px; }
  .haze-rev-list      { grid-template-columns: 1fr; }
  .haze-rev-form      { padding: 16px; }
  .rev-field-row      { grid-template-columns: 1fr; }

  /* Timeline */
  .tl-circle { width: 38px; height: 38px; }
  .tl-label strong { font-size: 10.5px; }
  .tl-label span   { font-size: 10px; }

  /* ── STICKY ATC BAR — mobile ────────────────────────────── */
  .sticky-product { display: none; }
  .sticky-inner {
    padding: 8px 12px;
    padding-bottom: max(8px, env(safe-area-inset-bottom, 8px));
    gap: 8px; flex-wrap: nowrap;
  }
  .sticky-selects {
    flex: 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; min-width: 0;
  }
  .sticky-attr-select { flex: 1; min-width: 0; height: 42px; padding: 0 8px; font-size: 12.5px; }
  .sticky-atc-btn     { height: 42px; padding: 0 16px; font-size: 12.5px; letter-spacing: .04em; }

  /* Modal */
  .haze-modal { border-radius: 12px 12px 0 0; }
  .sg-tips    { grid-template-columns: 1fr; }
}

/* ── Very small (380px and below) ─────────────────────────── */
@media (max-width: 380px) {
  .haze-gallery__main { height: 300px; }
  .haze-info__title   { font-size: 18px; }
  .sticky-atc-btn     { padding: 0 12px; font-size: 11.5px; }
  .sticky-attr-select { font-size: 11.5px; }
}
