/* ═══════════════════════════════════════════════
   ICASE.COM.PK — Inner Pages Styles
   Loaded after css/style.css (reuses its tokens).
   ═══════════════════════════════════════════════ */

/* ─────────── Page hero / breadcrumb ─────────── */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 54px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: 'ICASE';
  position: absolute;
  right: -30px; top: 50%;
  translate: 0 -50%;
  font-family: var(--font-head);
  font-size: 180px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  line-height: 1;
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,.85); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 9px; }

.faq-hero-lead {
  margin: 10px 0 0;
  max-width: 520px;
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.faq-page { padding-top: 48px; }
.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.faq-intro { position: sticky; top: 100px; }
.faq-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.faq-intro h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.faq-intro p { color: var(--gray-600); line-height: 1.65; margin-bottom: 22px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--black);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-400);
  flex-shrink: 0;
}
.faq-q {
  flex: 1;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.35;
}
.faq-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.faq-item[open] .faq-ico { background: var(--black); color: #fff; }
.faq-item[open] .faq-ico i { transform: rotate(45deg); }
.faq-a {
  padding: 0 20px 20px 54px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
}
.faq-empty { color: var(--gray-500); padding: 24px; border: 1px dashed var(--gray-300); border-radius: 14px; }

/* ─────────── Forms (shared) ─────────── */
.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.field label .req { color: #c00; }

.input, .select, .textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}

.input:focus, .select:focus, .textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,.08);
}

.textarea { resize: vertical; min-height: 100px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.input-wrap { position: relative; }

.input-wrap .toggle-pass {
  position: absolute;
  right: 14px; top: 50%;
  translate: 0 -50%;
  color: var(--gray-500);
  font-size: 15px;
}

.input-wrap .toggle-pass:hover { color: var(--black); }

.check-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
  user-select: none;
}

.check-line input { accent-color: var(--black); width: 16px; height: 16px; }

.btn-block { width: 100%; justify-content: center; }

/* ─────────── SHOP PAGE ─────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 265px 1fr;
  gap: 40px;
  align-items: start;
}

.filters { position: sticky; top: 96px; display: grid; gap: 26px; }

.filter-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
}

.filter-card h4 {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-card .check-line { padding: 7px 0; }
.filter-card .check-line small { margin-left: auto; color: var(--gray-500); }

.price-inputs { display: flex; align-items: center; gap: 10px; }
.price-inputs .input { padding: 10px 12px; font-size: 14px; }

.filter-clear {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-500);
  text-decoration: underline;
}
.filter-clear:hover { color: var(--black); }

.filter-more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 14px 18px;
  background: var(--white);
  font: inherit;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--black);
}
.filter-more-btn i { transition: transform .2s; color: var(--gray-500); }
.filter-more-btn.is-open i { transform: rotate(180deg); }
.more-filters { display: grid; gap: 26px; }
.more-filters[hidden] { display: none !important; }
.model-filter-list {
  max-height: 260px;
  overflow: auto;
  padding-right: 4px;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.shop-toolbar .result-count { font-size: 14.5px; color: var(--gray-500); }
.shop-toolbar .result-count strong { color: var(--black); }

.toolbar-right { display: flex; align-items: center; gap: 12px; }

.sort-select {
  padding: 11px 38px 11px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='black' stroke-width='1.6' fill='none'/></svg>") no-repeat right 16px center;
  appearance: none;
  outline: none;
  cursor: pointer;
}

.filters-toggle { display: none; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pager, .shop-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding: 6px 0 8px;
}
.pager-info { font-size: 13.5px; color: var(--gray-500); font-weight: 500; }
.pager-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.pager-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1.5px solid var(--gray-300); border-radius: 100px;
  background: var(--white); color: var(--black);
  font-family: var(--font-head); font-size: 13.5px; font-weight: 700;
  text-decoration: none; cursor: pointer;
}
a.pager-btn:hover, button.pager-btn:hover { border-color: var(--black); }
.pager-btn.is-on { background: var(--black); color: var(--white); border-color: var(--black); }
.pager-btn.is-off { opacity: .35; pointer-events: none; }
.pager-gap { color: var(--gray-400); padding: 0 4px; font-weight: 700; }

.empty-state {
  text-align: center;
  padding: 90px 20px;
  grid-column: 1 / -1;
}

.empty-state i { font-size: 52px; color: var(--gray-300); margin-bottom: 18px; }
.empty-state h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; text-transform: uppercase; }
.empty-state p { color: var(--gray-500); margin: 8px 0 24px; }

.active-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
}

.active-chip button { color: rgba(255,255,255,.7); font-size: 11px; }
.active-chip button:hover { color: var(--white); }

/* ─────────── PRODUCT DETAIL ─────────── */
.pd-section { padding: 60px 0; }

.pd-layout {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.pd-gallery { position: sticky; top: 100px; }

.pd-main-wrap { position: relative; }

.pd-main {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  touch-action: pan-y;
}

.pd-main-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
  color: var(--black);
  display: none;
  place-items: center;
  cursor: pointer;
  font-size: 14px;
}
.pd-main-nav.prev { left: 10px; }
.pd-main-nav.next { right: 10px; }
.pd-main-nav[hidden] { display: none !important; }

.pd-main img, .pd-main iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
}

.pd-main.zoomable { cursor: zoom-in; }
.pd-main.zoomable img {
  transition: transform .12s linear;
  transform-origin: var(--zx, 50%) var(--zy, 50%);
  will-change: transform;
}
.pd-main.zoomable.is-zoom img { transform: scale(2.15); }

.pd-main .p-tag { top: 18px; left: 18px; }

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.pd-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--gray-50);
  transition: border-color .25s;
  padding: 0;
}

.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active { border-color: var(--black); }

.pd-thumb.video-thumb::after {
  content: '\f04b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(0,0,0,.45);
  font-size: 18px;
}

/* Info column */
.pd-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.pd-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  margin: 10px 0 14px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.pd-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.pd-meta .p-rating { font-size: 14px; }
.pd-meta .stock-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
}
.pd-meta .stock-pill.in { border-color: #1a7f37; color: #1a7f37; }
.pd-meta .stock-pill.out { border-color: #b91c1c; color: #b91c1c; }

.pd-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px 14px; margin-bottom: 8px; }
.pd-price .now { font-family: var(--font-head); font-size: 36px; font-weight: 900; }
.pd-price .old { font-size: 19px; color: var(--gray-500); text-decoration: line-through; }
.pd-price .save-pill {
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
}
.pd-price-note {
  font-size: 13.5px;
  font-weight: 600;
  color: #1a7f37;
  margin: -4px 0 12px;
}
.pd-price-note[hidden] { display: none !important; }

.pd-short { color: var(--gray-500); font-size: 15px; margin-bottom: 26px; max-width: 520px; }

.pd-divider { border: 0; border-top: 1px solid var(--gray-100); margin: 24px 0; }

/* Variations */
.variation { margin-bottom: 22px; }
.variation[hidden] { display: none !important; }
.variation.is-invalid .opt-text { border-color: #dc2626; }
.variation.is-invalid h4 .req { color: #dc2626; }

.variation h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 11px;
}

.variation h4 span { color: var(--gray-500); font-weight: 600; text-transform: none; letter-spacing: 0; }

.color-select-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 420px;
}
.color-select-swatch {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--gray-300); flex-shrink: 0;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
#colorSelect {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  font: inherit;
  font-size: 14.5px;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
}

.variation h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 11px;
}

.variation h4 span { color: var(--gray-500); font-weight: 600; text-transform: none; letter-spacing: 0; }

.chips { display: flex; gap: 9px; flex-wrap: wrap; }

.chip {
  padding: 10px 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  background: var(--white);
  transition: all .22s;
}

.chip:hover { border-color: var(--black); }
.chip.active { background: var(--black); color: var(--white); border-color: var(--black); }
.chip.is-oos { opacity: .45; }

.color-chip {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  padding: 3px;
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.color-chip span { display: block; width: 100%; height: 100%; border-radius: 50%; }
.color-chip span.has-img { background-size: cover; background-position: center; }
.color-chip:hover { border-color: var(--black); transform: scale(1.08); }
.color-chip.active { border-color: var(--black); transform: scale(1.12); box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--black); }

.pd-viewing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 100px;
  margin: 0 0 18px;
}
.pd-viewing i { font-size: 13px; }
.pd-viewing b { font-weight: 800; }

@keyframes atc-shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-8px) rotate(-3deg); }
  30% { transform: translateX(8px) rotate(3deg); }
  45% { transform: translateX(-6px); }
  60% { transform: translateX(6px); }
  75% { transform: translateX(-3px); }
}
#addToCart.atc-shake {
  animation: atc-shake .6s ease;
  transition: none;
}

@keyframes buy-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-10px) scale(1.04); }
  55% { transform: translateY(0) scale(1); }
  75% { transform: translateY(-5px) scale(1.02); }
}
.buy-now-btn.buy-bounce {
  animation: buy-bounce .75s cubic-bezier(.22, 1, .36, 1);
  transition: none;
}

/* Buy row */
.pd-buy { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; margin: 26px 0 14px; }

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--gray-300);
  border-radius: 100px;
  overflow: hidden;
}

.qty-stepper button {
  width: 46px; height: 52px;
  font-size: 15px;
  transition: background .2s;
}

.qty-stepper button:hover { background: var(--gray-100); }

.qty-stepper input {
  width: 46px;
  text-align: center;
  border: 0;
  outline: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  -moz-appearance: textfield;
}

.qty-stepper input::-webkit-inner-spin-button { display: none; }

.pd-buy .btn-dark { flex: 1; justify-content: center; min-width: 190px; }

.pd-wish-btn {
  width: 52px; height: 52px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  font-size: 18px;
  display: grid;
  place-items: center;
  transition: all .25s;
}

.pd-wish-btn:hover, .pd-wish-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.buy-now-btn { width: 100%; justify-content: center; margin-bottom: 26px; }

.pd-eta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  margin: 4px 0 8px;
  padding: 6px 0 2px;
}

.pd-eta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pd-eta-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
}

.pd-eta-icon svg { width: 42px; height: 42px; display: block; }

.pd-eta-step.is-done .pd-eta-icon,
.pd-eta-step.is-active .pd-eta-icon {
  background: radial-gradient(circle at 50% 50%,
    rgba(255, 176, 90, .72) 0%,
    rgba(255, 196, 120, .38) 38%,
    rgba(255, 220, 170, .12) 62%,
    transparent 74%);
}

.pd-eta-step.is-next .pd-eta-icon {
  background: radial-gradient(circle at 50% 50%,
    rgba(110, 190, 255, .7) 0%,
    rgba(150, 210, 255, .34) 40%,
    rgba(200, 230, 255, .1) 62%,
    transparent 74%);
}

.pd-eta-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 37px;
  left: calc(50% + 30px);
  width: calc(100% - 60px);
  height: 4px;
  border-radius: 99px;
  z-index: 0;
}

.pd-eta-step.is-done::after { background: #ff8a3d; }
.pd-eta-step.is-active::after { background: #d5dbe3; }

.pd-eta-step strong {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 2px;
  line-height: 1.2;
}

.pd-eta-step small {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-500);
  line-height: 1.25;
}

.pd-sku { font-size: 13px; color: var(--gray-500); margin-top: 14px; }
.pd-sku strong { color: var(--ink); font-weight: 600; }

/* Protection kit */
.kit-box[hidden] { display: none !important; }
.kit-box {
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  margin: 22px 0 8px;
  position: relative;
}

.kit-box::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -11px; left: 22px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .18em;
  padding: 4px 14px;
  border-radius: 100px;
}

.kit-box h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.kit-box > p { font-size: 13.5px; color: var(--gray-500); margin-bottom: 18px; }

.kit-items { display: grid; gap: 12px; margin-bottom: 18px; }

.kit-item {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  background: var(--white);
}
.kit-item:has(.kit-check:checked) { border-color: var(--black); }

.kit-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.kit-check-wrap {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 6px 0;
}
.kit-peek {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.kit-peek:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }

.kit-item img, .kit-item .ki-ph {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.kit-item .ki-ph {
  display: grid;
  place-items: center;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 18px;
}
.kit-item .ki-name { font-weight: 600; font-size: 14px; flex: 1; line-height: 1.35; }
.kit-item .ki-name small { display: block; color: var(--gray-500); font-weight: 500; }
.kit-item .kit-check { accent-color: var(--black); width: 17px; height: 17px; flex-shrink: 0; }
.kit-item .ki-price { font-family: var(--font-head); font-weight: 800; font-size: 14.5px; white-space: nowrap; }

.kit-item .ki-name small:empty { display: none; }

.kit-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 0 2px 31px;
}
.kit-opts-caption {
  flex: 1 0 100%;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: .02em;
}
.kit-colors { display: flex; flex-wrap: wrap; gap: 8px; flex: 1 0 100%; }
.kit-color-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  border-radius: 100px;
  padding: 5px 12px 5px 6px;
  cursor: pointer;
  font: 600 12px var(--font-body);
}
.kit-color-chip i {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12); display: block;
}
.kit-color-chip em { font-style: normal; }
.kit-color-chip.on { border-color: var(--black); background: var(--gray-50); }

.opt-text {
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  font: 500 14px var(--font-body);
}
.opt-text:focus { outline: none; border-color: var(--black); }
.pd-info .req { color: #b91c1c; }

.opt-dd { position: relative; flex: 1 0 100%; max-width: 420px; }
.opt-dd-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  background: var(--white);
  font: 600 13.5px var(--font-body);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.opt-dd-btn:hover, .opt-dd.open .opt-dd-btn { border-color: var(--black); }
.opt-dd-val { flex: 1; color: var(--gray-500); }
.opt-dd-val[data-picked] { color: var(--ink); }
.opt-dd-panel {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 6px);
  z-index: 8;
  background: var(--white);
  border: 1.5px solid var(--gray-200, #e5e5e5);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
}
.opt-dd-panel[hidden] { display: none !important; }
.kit-item .opt-dd-search,
.kit-pop .opt-dd-search,
.opt-dd-search {
  display: block !important;
  width: 100% !important;
  min-width: 0;
  max-width: none;
  height: 42px !important;
  min-height: 42px;
  padding: 10px 12px !important;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font: 500 13.5px var(--font-body);
  margin: 0 0 8px;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.opt-dd-search::-webkit-search-decoration,
.opt-dd-search::-webkit-search-cancel-button,
.opt-dd-search::-webkit-search-results-button,
.opt-dd-search::-webkit-search-results-decoration {
  display: none !important;
  -webkit-appearance: none;
}
.opt-dd-search:focus { outline: none; border-color: var(--black); }
.opt-dd-list { max-height: 220px; overflow-y: auto; display: grid; gap: 2px; }
.opt-dd-item {
  width: 100%;
  text-align: left;
  padding: 9px 10px;
  border: none;
  background: none;
  border-radius: 8px;
  font: 600 13px var(--font-body);
  cursor: pointer;
}
.opt-dd-item:hover, .opt-dd-item.on { background: var(--gray-50); }
.opt-dd-empty { font-size: 12.5px; color: var(--gray-500); padding: 8px 4px 2px; }
.kit-opt-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  border-radius: 100px;
  padding: 5px 10px 5px 6px;
  cursor: pointer;
  font: 600 12px var(--font-body);
  color: var(--ink);
}
.kit-opt-chip i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  border: 1px solid rgba(0,0,0,.12);
}
.kit-opt-chip em { font-style: normal; }
.kit-opt-chip[data-kind="model"] { padding: 6px 12px; }
.kit-opt-chip.on { border-color: var(--black); background: var(--gray-50); }

.kit-pop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 18px;
}
.kit-pop[hidden] { display: none !important; }
.kit-pop-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, .62);
  backdrop-filter: blur(4px);
}
.kit-pop-box {
  position: relative;
  z-index: 1;
  width: min(920px, 96vw);
  max-height: min(90vh, 820px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.kit-pop-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  box-shadow: 0 4px 14px rgba(0,0,0,.14);
  cursor: pointer;
}
.kit-pop-gallery {
  position: relative;
  background: var(--gray-50);
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.kit-pop-stage {
  flex: 1;
  min-height: 320px;
  display: grid;
  place-items: center;
  background: var(--gray-50);
  overflow: hidden;
  touch-action: pan-y;
}
.kit-pop-stage img,
.kit-pop-stage iframe,
.kit-pop-stage .kit-pop-yt,
.kit-pop-stage .ki-ph {
  width: 100%;
  height: 100%;
  max-height: min(68vh, 620px);
  object-fit: contain;
  display: block;
  border: 0;
  background: var(--gray-50);
}
.kit-pop-stage .ki-ph {
  display: grid;
  place-items: center;
  color: var(--gray-400);
  font-size: 42px;
  max-height: none;
  min-height: 280px;
}
.kit-pop-yt {
  position: relative;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #111;
}
.kit-pop-yt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
}
.kit-pop-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
}
.kit-pop-play i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,.58);
  display: grid;
  place-items: center;
  font-size: 22px;
  padding-left: 3px;
}
.kit-pop-yt-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 9px;
  border-radius: 100px;
}
.kit-pop-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  box-shadow: 0 6px 18px rgba(0,0,0,.16);
  color: var(--black);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 14px;
}
.kit-pop-nav.prev { left: 12px; }
.kit-pop-nav.next { right: 12px; }
.kit-pop-nav[hidden] { display: none !important; }
.kit-pop-count {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  background: rgba(0,0,0,.62);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.kit-pop-count[hidden] { display: none !important; }
.kit-pop-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 14px 14px;
  background: var(--gray-50);
}
.kit-pop-thumbs[hidden] { display: none !important; }
.kit-pop-thumbs button {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}
.kit-pop-thumbs button.on { border-color: var(--black); }
.kit-pop-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kit-pop-thumbs .is-vid i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0,0,0,.35);
  font-size: 11px;
}
.kit-pop-body {
  padding: 28px 26px 24px;
  overflow-y: auto;
  min-height: 0;
}
.kit-pop-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
  padding-right: 36px;
}
.kit-pop-price { font-family: var(--font-head); font-weight: 800; font-size: 20px; margin: 0 0 8px; }
.kit-pop-opts {
  margin: 2px 0 18px;
  padding: 16px 16px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 70%);
  display: grid;
  gap: 16px;
}
.kit-pop-opts[hidden] { display: none !important; }
.kpo-block h4 {
  margin: 0 0 9px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.kpo-colors { display: flex; flex-wrap: wrap; gap: 8px; }
.kit-pop-opts .opt-dd { max-width: none; }
.kit-pop-opts .opt-text { max-width: none; }
.kit-pop-meta { font-size: 13px; color: var(--gray-500); margin: 0 0 14px; }
.kit-pop-meta.is-oos { color: #b91c1c; }
.kit-pop-desc { font-size: 14.5px; color: var(--gray-700); line-height: 1.6; margin: 0 0 16px; }
.kit-pop-desc p { margin: 0 0 10px; }
.kit-pop-desc p:last-child { margin-bottom: 0; }
.kit-pop-specs { margin-top: 6px; }
.kit-pop-specs td { padding: 10px 6px; font-size: 13.5px; }
.kit-pop-specs td:first-child { width: 38%; }
body.kit-pop-open { overflow: hidden; }

.kit-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.kit-total .kt-label { font-size: 13px; color: var(--gray-500); }
.kit-total .kt-price { font-family: var(--font-head); font-weight: 900; font-size: 22px; }
.kit-total .kt-price .old { font-size: 14px; color: var(--gray-500); text-decoration: line-through; font-weight: 600; margin-left: 8px; }

/* Tabs */
.pd-tabs { margin-top: 70px; }

.tab-nav {
  display: flex;
  gap: 6px;
  border-bottom: 1.5px solid var(--gray-100);
  overflow-x: auto;
}

.tab-btn {
  padding: 15px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-500);
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  white-space: nowrap;
  transition: all .25s;
}

.tab-btn:hover { color: var(--black); }
.tab-btn.active { color: var(--black); border-color: var(--black); }

.tab-panel { display: none; padding: 36px 0 0; }
.tab-panel.active { display: block; animation: fadeUp .45s var(--ease); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.desc-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: start; }
.desc-cols h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 14px; }
.desc-cols p { color: var(--gray-700); margin-bottom: 14px; font-size: 15px; }

.desc-list { list-style: none; display: grid; gap: 12px; }
.desc-list li { display: flex; gap: 12px; font-size: 14.5px; color: var(--gray-700); }
.desc-list i { color: var(--black); margin-top: 3px; }

/* ─────────── Rich description ─────────── */
.desc-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
  padding: 34px 26px;
  background: var(--gray-50);
  border-radius: var(--radius);
  text-align: center;
}

.desc-icon i {
  width: 56px; height: 56px;
  display: inline-grid;
  place-items: center;
  font-size: 21px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  margin-bottom: 13px;
  transition: transform .35s var(--ease);
}

.desc-icon:hover i { transform: rotate(-8deg) scale(1.1); }
.desc-icon h5 { font-family: var(--font-head); font-size: 15px; font-weight: 800; text-transform: uppercase; }
.desc-icon p { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

.desc-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 64px;
}

.desc-feature.reverse .df-media { order: 2; }
.desc-feature.reverse .df-text { order: 1; }

.df-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  background: var(--gray-100);
}

.df-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.desc-feature:hover .df-media img { transform: scale(1.05); }

.df-text .eyebrow { margin-bottom: 10px; }

.df-text h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 14px;
}

.df-text p { color: var(--gray-700); font-size: 15px; margin-bottom: 18px; }

.df-text ul { list-style: none; display: grid; gap: 10px; }
.df-text li { display: flex; gap: 11px; font-size: 14.5px; color: var(--gray-700); align-items: baseline; }
.df-text li i { color: var(--black); font-size: 13px; }

/* Video block */
.desc-video {
  margin-top: 70px;
  background: var(--black);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 54px);
  color: var(--white);
}

.dv-head { text-align: center; max-width: 560px; margin: 0 auto 32px; }
.dv-head .eyebrow { color: rgba(255,255,255,.6); }

.dv-head h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.12;
  margin: 6px 0 12px;
}

.dv-head p { color: rgba(255,255,255,.65); font-size: 14.5px; }

.dv-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-900);
}

.dv-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .75;
  transition: all .5s var(--ease);
}

.dv-frame:hover img { opacity: .55; transform: scale(1.03); }

.dv-frame iframe { width: 100%; height: 100%; border: 0; }

.dv-play {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: clamp(66px, 8vw, 88px);
  height: clamp(66px, 8vw, 88px);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: clamp(20px, 2.4vw, 26px);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 0 rgba(255,255,255,.35);
  animation: play-pulse 2s infinite;
  transition: transform .3s var(--ease);
}

.dv-frame:hover .dv-play { transform: scale(1.1); }

@keyframes play-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.35); }
  70% { box-shadow: 0 0 0 26px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.dv-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 100px;
  pointer-events: none;
}

.dv-badge i { color: #f00; font-size: 15px; }

.desc-body {
  max-width: 820px;
  color: var(--gray-700);
  font-size: 15.5px;
  line-height: 1.75;
}
.desc-body p { margin-bottom: 14px; }
.desc-body h3, .desc-body h4 {
  font-family: var(--font-head);
  color: var(--black);
  font-weight: 800;
  text-transform: uppercase;
  margin: 22px 0 10px;
}
.desc-body ul, .desc-body ol { margin: 0 0 16px 1.2em; display: grid; gap: 8px; }
.desc-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 12px 0 20px;
  display: block;
}

/* Description gallery — full photos, click to expand */
.desc-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.desc-shot {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-50);
  cursor: zoom-in;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.desc-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}

.desc-shot:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.desc-shot:hover img { transform: scale(1.015); }

.desc-shot-zoom {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(10,10,10,.82);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  pointer-events: none;
}
.desc-shot:hover .desc-shot-zoom,
.desc-shot:focus-visible .desc-shot-zoom {
  opacity: 1;
  transform: none;
}

/* Fullscreen description lightbox */
.desc-lb {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(6, 6, 6, .94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 72px 72px;
}
.desc-lb[hidden] { display: none !important; }
body.desc-lb-open { overflow: hidden; }

.desc-lb-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
}
.desc-lb-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
  transform-origin: left center;
}
.desc-lb.playing .desc-lb-progress span {
  animation: descLbFill 3s linear forwards;
}
.desc-lb.paused .desc-lb-progress span { animation-play-state: paused; }
@keyframes descLbFill {
  from { width: 0; }
  to { width: 100%; }
}

.desc-lb-close,
.desc-lb-nav,
.desc-lb-play {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.desc-lb-close:hover,
.desc-lb-nav:hover,
.desc-lb-play:hover {
  background: rgba(255,255,255,.18);
}

.desc-lb-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 18px;
  z-index: 2;
}

.desc-lb-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 18px;
  z-index: 2;
}
.desc-lb-nav.prev { left: 18px; }
.desc-lb-nav.next { right: 18px; }
.desc-lb-nav[hidden] { display: none !important; }

.desc-lb-stage {
  flex: 1;
  width: 100%;
  display: grid;
  place-items: center;
  min-height: 0;
}
.desc-lb-stage img {
  max-width: min(1200px, 92vw);
  max-height: calc(100vh - 140px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  opacity: 1;
  transition: opacity .25s var(--ease);
}
.desc-lb-stage img.is-swap { opacity: 0; }

.desc-lb-foot {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}

.desc-lb-play {
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 12px;
}

.desc-lb-dots {
  display: flex;
  gap: 7px;
}
.desc-lb-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  padding: 0;
}
.desc-lb-dots button.on {
  background: #fff;
  transform: scale(1.2);
}

/* Guarantee banner */
.desc-banner {
  margin-top: 64px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 38px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.desc-banner > i { font-size: 40px; }
.desc-banner div { flex: 1; min-width: 220px; }
.desc-banner h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; text-transform: uppercase; }
.desc-banner p { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 5px; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--gray-100); }
.spec-table td { padding: 15px 10px; font-size: 14.5px; }
.spec-table td:first-child { font-weight: 700; font-family: var(--font-head); width: 220px; text-transform: uppercase; font-size: 12.5px; letter-spacing: .06em; }
.spec-table td:last-child { color: var(--gray-700); }

/* Reviews */
.rev-layout { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }

.rev-summary {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: sticky;
  top: 100px;
}

.rev-summary .big { font-family: var(--font-head); font-size: 56px; font-weight: 900; line-height: 1; }
.rev-summary .stars { margin: 8px 0 4px; }
.rev-summary > p { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }

.rev-bar { display: flex; align-items: center; gap: 10px; font-size: 12.5px; margin-bottom: 8px; }
.rev-bar .track { flex: 1; height: 7px; background: var(--gray-100); border-radius: 10px; overflow: hidden; }
.rev-bar .fill { height: 100%; background: var(--black); border-radius: 10px; }
.rev-bar span:last-child { width: 30px; text-align: right; color: var(--gray-500); }

.rev-list { display: grid; gap: 0; }

.rev-item { padding: 24px 0; border-bottom: 1px solid var(--gray-100); }
.rev-item:first-child { padding-top: 0; }

.rev-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.rev-head .avatar { width: 44px; height: 44px; font-size: 14px; }
.rev-head h5 { font-family: var(--font-head); font-size: 15px; font-weight: 700; }
.rev-head .verified { font-size: 11.5px; color: #1a7f37; font-weight: 600; }
.rev-head .rev-date { margin-left: auto; font-size: 12.5px; color: var(--gray-500); }

.rev-item .stars { font-size: 13px; margin-bottom: 8px; }
.rev-item p { font-size: 14.5px; color: var(--gray-700); }

.rev-form {
  margin-top: 30px;
  padding: 28px;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.rev-form h4 { font-family: var(--font-head); font-size: 17px; font-weight: 800; text-transform: uppercase; margin-bottom: 18px; }

.star-input { display: flex; gap: 6px; font-size: 24px; color: var(--gray-300); margin-bottom: 18px; cursor: pointer; }
.star-input i.hot { color: var(--black); }

/* Related */
.related-section { padding: 80px 0; }
.rel-swiper { overflow: hidden; padding: 4px; margin: -4px; }
.rel-swiper .swiper-slide { height: auto; }
.rel-swiper .product-card { height: 100%; }

/* ─────────── CART ─────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.cart-list { display: grid; gap: 16px; }

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  align-items: center;
  background: var(--white);
}

.cart-item img { width: 100px; height: 100px; object-fit: cover; border-radius: var(--radius-sm); }

.ci-info h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; line-height: 1.3; }
.ci-info h4 a:hover { opacity: .65; }
.ci-info .ci-variant { font-size: 12.5px; color: var(--gray-500); margin: 4px 0 10px; }
.ci-info .ci-price { font-family: var(--font-head); font-weight: 800; font-size: 15px; }
.ci-oos { color: #b91c1c; font-size: 12.5px; font-weight: 700; margin-top: 8px; }
.cart-item.is-oos img { opacity: .55; }
.cart-stock-note {
  color: #b91c1c;
  font-size: 13.5px;
  font-weight: 600;
  margin: 12px 0 0;
  line-height: 1.45;
}
#checkoutBtn.is-disabled { opacity: .45; pointer-events: none; cursor: not-allowed; }
#addToCart:disabled,
#buyNow:disabled,
#descAddBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

.ci-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.ci-controls .qty-stepper button { height: 40px; width: 38px; }
.ci-controls .qty-stepper input { width: 36px; font-size: 14px; }

.ci-remove { font-size: 13px; color: var(--gray-500); display: inline-flex; align-items: center; gap: 6px; }
.ci-remove:hover { color: #c00; }

.ci-line-total { font-family: var(--font-head); font-weight: 900; font-size: 17px; }

.summary-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 100px;
  background: var(--white);
}

.summary-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.summary-card h3 + .co-edit-cart { margin-top: -8px; }

.sum-line { display: flex; justify-content: space-between; font-size: 14.5px; padding: 9px 0; color: var(--gray-700); }
.sum-line strong { color: var(--black); }
.sum-line.total { border-top: 1.5px solid var(--gray-100); margin-top: 12px; padding-top: 18px; font-size: 17px; }
.sum-line.total strong { font-family: var(--font-head); font-size: 22px; font-weight: 900; }
.sum-line .free { color: #1a7f37; font-weight: 700; }

.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-row .input { padding: 12px 16px; font-size: 14px; }
.coupon-row .btn { padding: 12px 20px; font-size: 12px; }

.ship-progress { margin: 18px 0; }
.ship-progress p { font-size: 13px; color: var(--gray-700); margin-bottom: 8px; }
.ship-progress p strong { font-weight: 700; }
.ship-progress .track { height: 8px; background: var(--gray-100); border-radius: 10px; overflow: hidden; }
.ship-progress .fill { height: 100%; background: var(--black); border-radius: 10px; transition: width .5s var(--ease); }

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 14px;
}

/* ─────────── CHECKOUT ─────────── */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 34px 0 10px;
}

.step { display: flex; align-items: center; gap: 10px; }
a.step { text-decoration: none; color: inherit; }
a.step:hover .dot { transform: scale(1.06); }
a.step:hover span:not(.dot) { text-decoration: underline; }

.step .dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13.5px;
  border: 1.5px solid var(--gray-300);
  color: var(--gray-500);
  background: var(--white);
  transition: transform .2s ease;
}

.step span { font-family: var(--font-head); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500); }
.step.done .dot, .step.current .dot { background: var(--black); color: var(--white); border-color: var(--black); }
.step.done span, .step.current span { color: var(--black); }

.step-line { width: 70px; height: 1.5px; background: var(--gray-300); margin: 0 16px; }

.co-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.co-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 24px;
  background: var(--white);
}

.co-card > h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.co-card > h3 .num {
  width: 28px; height: 28px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.co-city-field .co-city-dd { max-width: none; }
.co-city-meta { margin-top: 10px; display: grid; gap: 8px; }
.co-city-suggestions { display: flex; flex-wrap: wrap; gap: 8px; }
.co-city-chip {
  border: 1px solid var(--gray-300);
  background: var(--white);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.co-city-chip:hover, .co-city-chip.active {
  border-color: var(--black);
  background: var(--gray-50);
}
.co-city-count { font-size: 12px; color: var(--gray-500); }

.pay-options { display: grid; gap: 12px; }

.pay-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s;
}

.pay-option:hover { border-color: var(--gray-700); }
.pay-option.active { border-color: var(--black); background: var(--gray-50); box-shadow: 0 0 0 1px var(--black); }

.pay-option input { accent-color: var(--black); width: 17px; height: 17px; }
.pay-option i { font-size: 22px; width: 30px; text-align: center; }
.pay-option .po-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.pay-option .po-desc { font-size: 12.5px; color: var(--gray-500); }
.pay-option .po-badge { margin-left: auto; font-size: 10.5px; font-weight: 800; letter-spacing: .1em; background: var(--black); color: var(--white); padding: 4px 10px; border-radius: 100px; }
.pay-option .po-badge.perk { flex-shrink: 0; }
#onlineOffLine strong { color: #1a7f37; }

.co-place-btn {
  padding: 18px;
  min-height: 58px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.co-place-btn:disabled,
.co-place-btn.is-placing {
  opacity: 1;
  transform: none !important;
  box-shadow: none !important;
  background: var(--black);
  color: var(--white);
  cursor: wait;
  pointer-events: none;
}
.co-place-busy { display: none; }
.co-place-btn.is-placing .co-place-idle { display: none; }
.co-place-btn.is-placing .co-place-busy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.co-place-spin {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255,255,255,.25);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: paySpin .8s linear infinite;
}
.co-place-busy-txt { letter-spacing: .04em; }

.co-placing {
  --ok: #166534;
  --err: #991b1b;
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  position: fixed;
  inset: 0;
  z-index: 1700;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 10, 10, .72);
  backdrop-filter: blur(8px);
}
.co-placing[hidden] { display: none !important; }
body.co-is-placing { overflow: hidden; }

.co-placing-card {
  width: min(400px, 100%);
  background: var(--white);
  border-radius: 24px;
  padding: 38px 30px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: payIn .45s var(--ease);
}

.co-progress {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto 22px;
}
.co-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.co-ring-track, .co-ring-fill {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
}
.co-ring-track { stroke: var(--gray-100); }
.co-ring-fill {
  stroke: var(--black);
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset linear, stroke .3s ease;
}
.co-progress-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: var(--black);
}
.co-progress-icon i { animation: iconBreathe 1.8s ease-in-out infinite; }
.co-progress.is-done .co-progress-icon i,
.co-progress.is-error .co-progress-icon i { animation: iconPop .45s var(--ease-spring) both; }
.co-progress.is-done .co-ring-fill { stroke: var(--ok); }
.co-progress.is-error .co-ring-fill { stroke: var(--err); }
.co-progress.is-done .co-progress-icon { color: var(--ok); }
.co-progress.is-error .co-progress-icon { color: var(--err); }

@keyframes iconBreathe {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes iconPop {
  0% { transform: scale(.4); opacity: 0; }
  70% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

.co-placing-card h2 {
  font-family: var(--font-head);
  font-size: clamp(18px, 3.4vw, 21px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.25;
  margin: 0 0 6px;
  min-height: 27px;
}

.co-placing-card p {
  color: var(--gray-500);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 auto 24px;
  max-width: 300px;
  min-height: 40px;
}

.co-steps {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.co-step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.co-step::before {
  content: '';
  position: absolute;
  top: 11px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--gray-100);
  z-index: 0;
}
.co-step:first-child::before { display: none; }
.co-step-dot {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 10px;
  color: transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .2s ease, transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.co-step-label {
  font-size: 10.5px;
  color: var(--gray-500);
  line-height: 1.3;
  max-width: 68px;
  transition: color .3s ease;
}
.co-step.is-active .co-step-dot {
  border-color: var(--black);
  transform: scale(1.1);
  box-shadow: 0 0 0 4px var(--gray-100);
}
.co-step.is-active .co-step-label { color: var(--ink); font-weight: 600; }
.co-step.is-done .co-step-dot {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: scale(1);
  box-shadow: none;
}
.co-step.is-done::before { background: var(--black); transition: background .4s ease; }
.co-step.is-done .co-step-label { color: var(--ink); }
.co-step.is-error .co-step-dot {
  background: var(--err);
  border-color: var(--err);
  color: var(--white);
  box-shadow: none;
}
.co-step.is-error .co-step-label { color: var(--err); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .co-place-spin, .co-progress-icon i { animation: none; }
  .co-ring-fill { transition: stroke .3s ease; }
}

.order-items { display: grid; gap: 14px; margin-bottom: 18px; max-height: 320px; overflow-y: auto; padding: 10px 12px 6px 2px; }

.co-edit-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200, #e5e5e5);
  color: var(--gray-700, #333);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
}
.co-edit-cart:hover { border-color: var(--black); color: var(--black); }
.co-edit-cart i { color: var(--black); font-size: 12px; flex-shrink: 0; }
.co-edit-cart strong { font-weight: 800; text-decoration: underline; }

.order-item { display: flex; gap: 12px; align-items: center; }
.order-item .oi-img { position: relative; flex-shrink: 0; margin: 4px 8px 0 0; }
.order-item img { width: 58px; height: 58px; object-fit: cover; border-radius: var(--radius-sm); }
.order-item .oi-qty {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--black);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  min-width: 20px; height: 20px;
  padding: 0 4px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
  z-index: 1;
}
.order-item .oi-name { font-size: 13.5px; font-weight: 600; flex: 1; line-height: 1.35; }
.order-item .oi-name small { color: var(--gray-500); display: block; font-weight: 500; }
.order-item .oi-edit {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600, #555);
  text-decoration: underline;
}
.order-item .oi-edit:hover { color: var(--black); }
.order-item .oi-price { font-family: var(--font-head); font-weight: 800; font-size: 13.5px; white-space: nowrap; }

/* Order success */
.order-success { text-align: center; padding: 90px 0; }

.order-success .big-check {
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 40px;
  animation: pop .6s var(--ease);
}

@keyframes pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.order-success h2 { font-family: var(--font-head); font-size: clamp(26px, 4vw, 40px); font-weight: 900; text-transform: uppercase; }
.order-success .order-no { font-family: var(--font-head); font-weight: 800; font-size: 17px; margin: 14px 0 6px; }
.order-success p { color: var(--gray-500); max-width: 460px; margin: 0 auto 30px; }
.order-success .big-check.is-wait { background: var(--black); }
.order-success .big-check.is-fail { background: var(--black); }
.order-success .os-actions { margin: -8px 0 22px; }
.order-success .os-summary {
  max-width: 520px;
  margin: 26px auto;
  text-align: left;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 22px 26px;
}
.order-success .os-summary h3 {
  font-size: 15px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.order-success .os-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.order-success .os-line small { color: #888; }
.order-success .os-line.is-kit span { padding-left: 8px; }
.order-success .os-line.muted { font-size: 13.5px; color: #555; border-bottom: none; }
.order-success .os-line.discount { font-size: 13.5px; color: #16a34a; border-bottom: none; }
.order-success .os-line.total {
  padding: 10px 0 0;
  font-size: 16px;
  font-weight: 800;
  border-bottom: none;
  color: var(--ink);
}
.order-success .os-hint { font-size: 14px; color: #555; max-width: 520px; margin: 0 auto 22px; }
.order-success .os-hint a { font-weight: 700; text-decoration: underline; }

/* ─────────── PAY HANDOFF ─────────── */
.pay-stage {
  min-height: calc(100vh - 150px);
  display: grid;
  place-items: center;
  padding: 48px 16px 80px;
  background:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(10,10,10,.06), transparent 58%),
    var(--gray-50);
}

.pay-card {
  width: min(440px, 100%);
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 42px 34px 34px;
  text-align: center;
  animation: payIn .55s var(--ease);
}

@keyframes payIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: none; }
}

.pay-logo {
  height: 34px;
  width: auto;
  margin: 0 auto 26px;
  object-fit: contain;
}

.pay-spinner {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 3px solid var(--gray-100);
  border-top-color: var(--black);
  animation: paySpin .75s linear infinite;
}

@keyframes paySpin { to { transform: rotate(360deg); } }

.pay-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  background: var(--black);
  color: var(--white);
}

.pay-card h1 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.6vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.pay-lead {
  color: var(--gray-500);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 auto 26px;
  max-width: 340px;
}

.pay-meta {
  background: var(--gray-50);
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  margin-bottom: 22px;
}

.pay-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-size: 14px;
}

.pay-row + .pay-row { border-top: 1px solid #eee; }
.pay-row span { color: var(--gray-500); font-weight: 500; }
.pay-row strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
}
.pay-row.total strong {
  font-size: 22px;
  font-weight: 900;
}

.pay-redirect {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--ink);
}

.pay-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.pay-chip {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 100px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--ink);
}

.pay-bar {
  height: 3px;
  background: var(--gray-100);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 16px;
}

.pay-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--black);
  animation: payFill 1.55s var(--ease) forwards;
}

@keyframes payFill { to { width: 100%; } }

.pay-secure {
  font-size: 12.5px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pay-card .btn-block {
  width: 100%;
  justify-content: center;
}

@media (max-width: 640px) {
  .pay-stage { padding: 28px 14px 64px; }
  .pay-card { padding: 32px 22px 26px; border-radius: 20px; }
  .pay-row.total strong { font-size: 20px; }
}

/* ─────────── AUTH PAGES ─────────── */
.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 115px);
}

.auth-media {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.auth-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  filter: grayscale(70%);
}

.auth-media-copy {
  position: absolute;
  left: 48px; right: 48px; bottom: 48px;
  color: var(--white);
}

.auth-media-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

.auth-media-copy p { margin-top: 12px; color: rgba(255,255,255,.75); max-width: 400px; }

.auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.auth-card { width: min(440px, 100%); }

.auth-card .eyebrow { margin-bottom: 8px; }

.auth-card h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 10px;
}

.auth-card .sub { color: var(--gray-500); font-size: 15px; margin-bottom: 32px; }
.auth-card .sub a { font-weight: 700; color: var(--black); text-decoration: underline; }

.auth-row { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 22px; }
.auth-row a { font-size: 13.5px; font-weight: 600; color: var(--gray-700); text-decoration: underline; }
.auth-row a:hover { color: var(--black); }

.divider-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 26px 0;
  color: var(--gray-500);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
}

.divider-line::before, .divider-line::after { content: ''; flex: 1; height: 1px; background: var(--gray-100); }

.social-auth { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px;
  border: 1.5px solid var(--gray-300);
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: all .25s;
}

.social-btn:hover { border-color: var(--black); background: var(--gray-50); }

/* ─────────── ACCOUNT ─────────── */
.acc-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 40px;
  align-items: start;
}

.acc-side {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 96px;
}

.acc-user {
  background: var(--black);
  color: var(--white);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.acc-user .avatar { width: 52px; height: 52px; background: var(--white); color: var(--black); font-size: 17px; }
.acc-user h4 { font-family: var(--font-head); font-size: 16px; font-weight: 800; }
.acc-user span { font-size: 12.5px; color: rgba(255,255,255,.65); }

.acc-nav { display: grid; padding: 10px; }

.acc-nav button, .acc-nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-700);
  text-align: left;
  transition: all .2s;
}

.acc-nav button:hover, .acc-nav a:hover { background: var(--gray-50); color: var(--black); }
.acc-nav button.active { background: var(--black); color: var(--white); }
.acc-nav i { width: 18px; text-align: center; }

.acc-panel { display: none; }
.acc-panel.active { display: block; animation: fadeUp .4s var(--ease); }

.acc-panel > h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.acc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }

.acc-stat {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
}

.acc-stat i { font-size: 22px; margin-bottom: 12px; }
.acc-stat h3 { font-family: var(--font-head); font-size: 28px; font-weight: 900; line-height: 1; }
.acc-stat p { font-size: 13px; color: var(--gray-500); margin-top: 6px; }

.order-table { width: 100%; border-collapse: collapse; }
.order-table th {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1.5px solid var(--gray-100);
  color: var(--gray-500);
}
.order-table td { padding: 17px 12px; border-bottom: 1px solid var(--gray-100); font-size: 14.5px; }
.order-table td:first-child { font-family: var(--font-head); font-weight: 800; }

.status-pill {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid var(--gray-300);
}
.status-pill.delivered { border-color: #1a7f37; color: #1a7f37; }
.status-pill.transit { border-color: var(--black); color: var(--black); }
.status-pill.cancelled { border-color: #dc2626; color: #dc2626; background: #fef2f2; }

.track-cancel-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 18px 0 8px;
  color: #991b1b;
}
.track-cancel-box > i { font-size: 22px; margin-top: 2px; }
.track-cancel-box strong { display: block; font-size: 17px; margin-bottom: 6px; color: #7f1d1d; }
.track-cancel-box p { margin: 0; font-size: 14.5px; line-height: 1.55; color: #b91c1c; }
.track-cancel-contact { margin-top: 10px !important; font-weight: 600; }
.track-cancel-contact a { color: #7f1d1d; text-decoration: underline; }

.track-live-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0 6px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
  border: 1px solid #bbf7d0;
}
.track-live-banner strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: #166534; }
.track-live-banner p { margin: 4px 0 0; font-size: 16px; font-weight: 700; color: #111; }
.track-live-dot {
  width: 10px; height: 10px; border-radius: 50%; margin-top: 5px;
  background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: track-pulse 1.8s ease-in-out infinite;
}
@keyframes track-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}
.track-timeline-title {
  margin: 24px 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.track-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 4px;
  display: grid;
  gap: 0;
}
.track-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding: 0 0 18px 0;
}
.track-timeline li:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 14px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.track-timeline-dot {
  width: 12px; height: 12px; border-radius: 50%;
  margin-top: 4px;
  background: var(--gray-300);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--gray-300);
}
.track-timeline li.is-latest .track-timeline-dot {
  background: var(--black);
  box-shadow: 0 0 0 1px var(--black);
}
.track-timeline li strong { display: block; font-size: 14.5px; }
.track-timeline li small { color: var(--gray-500); font-size: 12px; }

.address-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.address-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.address-card.default { border: 2px solid var(--black); }
.address-card .ac-tag {
  position: absolute;
  top: -10px; left: 18px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 3px 12px;
  border-radius: 100px;
}
.address-card h4 { font-family: var(--font-head); font-weight: 800; margin-bottom: 8px; }
.address-card p { font-size: 14px; color: var(--gray-700); }
.address-card .ac-actions { margin-top: 16px; display: flex; gap: 14px; }
.address-card .ac-actions a { font-size: 13px; font-weight: 600; text-decoration: underline; color: var(--gray-700); }
.address-card .ac-actions a:hover { color: var(--black); }

.wish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filters {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(320px, 85vw);
    background: var(--white);
    z-index: 970;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .4s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .filters.open { transform: none; }
  .filters-toggle { display: inline-flex; }

  .pd-layout { grid-template-columns: 1fr; gap: 40px; }
  .pd-gallery { position: static; }
  .pd-main-nav { display: grid; }
  .kit-pop-box {
    grid-template-columns: 1fr;
    max-height: min(92vh, 860px);
    overflow: auto;
  }
  .kit-pop-stage img,
  .kit-pop-stage iframe,
  .kit-pop-stage .kit-pop-yt {
    max-height: min(48vh, 420px);
  }
  .kit-pop-nav.prev { left: 8px; }
  .kit-pop-nav.next { right: 8px; }
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .faq-intro { position: static; }
  .rev-layout { grid-template-columns: 1fr; }
  .rev-summary { position: static; }
  .desc-cols { grid-template-columns: 1fr; }
  .desc-feature { grid-template-columns: 1fr; gap: 26px; }
  .desc-feature.reverse .df-media { order: 0; }
  .desc-feature.reverse .df-text { order: 1; }
  .desc-icons { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }

  .cart-layout, .co-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }

  .acc-layout { grid-template-columns: 1fr; }
  .acc-side { position: static; }
  .acc-cards, .wish-grid { grid-template-columns: repeat(2, 1fr); }

  .auth-wrap { grid-template-columns: 1fr; }
  .auth-media { display: none; }
}

@media (max-width: 640px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pager, .shop-pager { justify-content: center; }
  .pager-info { width: 100%; text-align: center; }
  .pd-thumbs { grid-template-columns: repeat(5, 1fr); gap: 7px; }
  .pd-eta-icon { width: 64px; height: 64px; }
  .pd-eta-icon svg { width: 34px; height: 34px; }
  .pd-eta-step:not(:last-child)::after { top: 30px; left: calc(50% + 24px); width: calc(100% - 48px); height: 3px; }
  .pd-eta-step strong { font-size: 11.5px; }
  .pd-eta-step small { font-size: 11px; }
  .field-row { grid-template-columns: 1fr; }
  .step span { display: none; }
  .step-line { width: 34px; }
  .cart-item { grid-template-columns: 78px 1fr; }
  .cart-item img { width: 78px; height: 78px; }
  .ci-controls { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .address-cards { grid-template-columns: 1fr; }
  .acc-cards, .wish-grid { grid-template-columns: 1fr; }
  .social-auth { grid-template-columns: 1fr; }
  .order-table th:nth-child(3), .order-table td:nth-child(3) { display: none; }
  .page-hero::before { display: none; }
  .desc-gallery { grid-template-columns: 1fr; }
  .desc-shot-zoom { opacity: 1; transform: none; }
  .desc-lb { padding: 52px 16px 70px; }
  .desc-lb-nav { width: 42px; height: 42px; }
  .desc-lb-nav.prev { left: 8px; }
  .desc-lb-nav.next { right: 8px; }
  .desc-lb-stage img { max-height: calc(100vh - 130px); }
  .desc-banner { padding: 26px 22px; text-align: center; justify-content: center; }
  .desc-banner .btn { width: 100%; justify-content: center; }
}

/* ─────────── Phone / model page ─────────── */
.phone-hero {
  background: linear-gradient(180deg, #f4f5f7 0%, #fff 72%);
  padding: 36px 0 20px;
  border-bottom: 1px solid var(--gray-100);
}
.phone-hero-grid {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.phone-visual {
  background: var(--white);
  border-radius: 32px;
  padding: 36px 28px;
  display: grid;
  place-items: center;
  min-height: 360px;
  box-shadow: 0 18px 48px rgba(15,18,24,.08);
}
.phone-visual img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}
.phone-visual-empty {
  width: 120px; height: 120px;
  display: grid; place-items: center;
  font-size: 48px; color: var(--gray-400);
}
.phone-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  text-transform: none;
}
.phone-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.phone-lead {
  margin-top: 12px;
  font-size: 16px;
  color: var(--gray-500);
  max-width: 460px;
  line-height: 1.55;
}
.phone-count {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
}
.phone-crumb {
  color: var(--gray-500);
  margin-bottom: 18px;
}
.phone-crumb a { color: var(--gray-700); }
.phone-crumb a:hover { color: var(--black); }
.phone-siblings {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.phone-siblings a {
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}
.phone-siblings a:hover { border-color: var(--black); }
.phone-products { padding-top: 48px; }
.phone-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .phone-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .phone-hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .phone-visual { min-height: 260px; padding: 24px; border-radius: 24px; }
  .phone-visual img { max-height: 280px; }
  .phone-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
