/* ═══════════════════════════════════════════════
   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; }

/* ─────────── 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); }

.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 {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.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 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); }

.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;
  cursor: pointer;
}

.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 input { 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: none;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 31px;
}
.kit-item.is-open .kit-opts { display: flex; }
.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.on { border-color: var(--black); background: var(--gray-50); }

.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;
}

.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; }

.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);
}

.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;
}

.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; }

.order-items { display: grid; gap: 14px; margin-bottom: 18px; max-height: 320px; overflow-y: auto; padding-right: 4px; }

.order-item { display: flex; gap: 12px; align-items: center; }
.order-item .oi-img { position: relative; flex-shrink: 0; }
.order-item img { width: 58px; height: 58px; object-fit: cover; border-radius: var(--radius-sm); }
.order-item .oi-qty {
  position: absolute;
  top: -7px; right: -7px;
  background: var(--black);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.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-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); }

.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; }
  .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; }
}
