/* ============================================================
     DESIGN TOKENS
     NOTE: font stack is Vazirmatn (900 weight) tuned for a heavy,
     luxury editorial voice. If licensed Morabba / Buffalo webfonts
     become available, just replace the @font-face/import above and
     swap --font-display / --font below â€” every rule already reads
     from these two variables, so the whole site re-themes at once.
     ============================================================ */
:root {
  --bg: #060503;
  --bg-elevated: #110f0a;
  --surface: #171409;
  --surface-2: #1e1a10;
  --border: rgba(243, 235, 214, 0.07);
  --border-strong: rgba(243, 235, 214, 0.15);
  --ivory: #f5efe2;
  --ivory-dim: #a89f8c;
  --ivory-faint: #6f6656;
  --gold: #b4915d;
  --gold-soft: #8c7248;
  --gold-bright: #e3c088;
  --gold-deep: #7c5f34;
  --gold-line: linear-gradient(90deg, transparent, rgba(227, 192, 136, 0.55) 50%, transparent);
  --success: #8ba17f;
  --success-dim: rgba(139, 161, 127, 0.12);
  --error: #a8695c;
  --error-dim: rgba(168, 105, 92, 0.12);

  --font: 'Vazirmatn', Tahoma, sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --radius-full: 999px;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1240px;
  --content-narrow: 640px;

  --reveal-dur: 900ms;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold-soft);
  color: var(--bg);
}

h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: -0.01em;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

.num {
  unicode-bidi: isolate;
  font-feature-settings: "tnum" 1;
}

/* ============================================================
     FILM GRAIN â€” fixed, whole-viewport, very low opacity
     ============================================================ */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
     SCROLL PROGRESS BAR
     ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  z-index: 210;
  background: transparent;
  pointer-events: none;
}

.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(227, 192, 136, 0.6);
  transition: width .12s linear;
}

/* ============================================================
     CUSTOM CURSOR (desktop only)
     ============================================================ */
@media (hover:hover) and (pointer:fine) {
  body {
    cursor: none;
  }

  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border: 1px solid var(--gold-bright);
    border-radius: 50%;
    z-index: 999;
    pointer-events: none;
    transition: transform .18s var(--ease-out), width .25s var(--ease), height .25s var(--ease), opacity .25s var(--ease), border-color .25s var(--ease);
    opacity: 0;
  }

  .cursor-ring.show {
    opacity: 0.85;
  }

  .cursor-ring.grow {
    width: 52px;
    height: 52px;
    margin: -26px 0 0 -26px;
    background: rgba(227, 192, 136, 0.08);
  }
}

/* ============================================================
     SCROLL REVEAL SYSTEM
     ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(4px);
  transition: opacity var(--reveal-dur) var(--ease-out), transform var(--reveal-dur) var(--ease-out), filter var(--reveal-dur) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ============================================================
     LAYOUT SHELL
     ============================================================ */
#app {
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  position: relative;
  opacity: 1;
  transition: opacity .22s var(--ease);
}

#app.app-fading {
  opacity: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

@media (min-width:900px) {
  .container {
    padding: 0 var(--sp-7);
  }
}

.narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

@media (min-width:900px) {
  .narrow {
    max-width: 1080px;
  }
}

/* ============================================================
     HEADER
     ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--sp-4);
  background: rgba(6, 5, 3, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease), padding .3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(6, 5, 3, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(227, 192, 136, 0.18);
}

@media (min-width:900px) {
  .site-header {
    padding: 22px var(--sp-7);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19.5px;
}

.brand-main {
  font-weight: 800;
  color: var(--ivory);
  letter-spacing: 0.2px;
}

.brand-gem {
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--gold-bright);
  transform: rotate(45deg);
  flex: none;
}

.brand-sub {
  font-weight: 400;
  color: var(--gold-bright);
  letter-spacing: 0.5px;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ivory);
  transition: background .25s var(--ease), transform .25s var(--ease);
}

.icon-btn:active {
  background: var(--surface);
  transform: scale(0.94);
}

@media (hover:hover) {
  .icon-btn:hover {
    background: var(--surface);
    border-color: var(--border-strong);
  }
}

.icon-btn svg {
  width: 19px;
  height: 19px;
}

.cart-badge {
  position: absolute;
  top: -2px;
  left: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--gold-bright);
  color: #0a0a08;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(.34, 1.8, .64, 1);
}

.cart-badge.bump {
  animation: badgeBump .45s cubic-bezier(.34, 1.8, .64, 1);
}

@keyframes badgeBump {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.55);
  }

  100% {
    transform: scale(1);
  }
}

.header-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--ivory-dim);
  background: none;
  border: none;
  font-weight: 500;
}

.header-back svg {
  width: 17px;
  height: 17px;
}

.header-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ivory);
}

/* ============================================================
     HERO â€” CINEMATIC SLIDER
     ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: #050403;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.2s var(--ease), visibility 1.2s;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 75% 20%, #241d11 0%, transparent 55%),
    linear-gradient(180deg, #0d0c0a 0%, #050403 100%);
}

.hero-bg-media {
  position: absolute;
  inset: -4%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  filter: brightness(0.94);
  background-image: var(--hero-img-md);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-gold-dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(227, 192, 136, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(227, 192, 136, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(227, 192, 136, 0.4), transparent),
    radial-gradient(2px 2px at 85% 25%, rgba(227, 192, 136, 0.45), transparent),
    radial-gradient(1px 1px at 55% 45%, rgba(227, 192, 136, 0.5), transparent);
}

.hero-glow {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  aspect-ratio: 1/1;
  background: radial-gradient(closest-side, rgba(216, 183, 132, 0.16), transparent 72%);
  filter: blur(6px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--sp-8) var(--sp-4) 108px;
  display: flex;
  justify-content: flex-start;
  background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(5, 4, 3, 0.72) 82%, rgba(5, 4, 3, 0.96) 100%);
}

.hero-cta-wrap {
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: .4s;
}

.hero-slide.active .hero-cta-wrap {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--ivory);
  color: #0a0a08;
}

.btn-primary:active {
  background: var(--gold-bright);
}

@media (hover:hover) {
  .btn-primary:hover {
    box-shadow: 0 10px 28px -8px rgba(227, 192, 136, 0.45);
    transform: translateY(-2px);
  }

  .btn-outline:hover {
    background: var(--surface);
    border-color: var(--gold-bright);
  }
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: var(--border-strong);
}

.btn-outline:active {
  background: var(--surface);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  height: 44px;
  padding: 0 20px;
  font-size: 14.5px;
}

/* Hero progress navigation (replaces plain dots) */
.hero-progress {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-4);
  left: var(--sp-4);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.hero-progress-track {
  flex: 1;
  display: flex;
  gap: 7px;
}

.hero-progress-seg {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: rgba(242, 234, 214, 0.22);
  border: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-progress-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--gold-bright);
  transform-origin: right;
}

.hero-progress-seg.done .hero-progress-fill {
  width: 100%;
}

.hero-progress-seg.active .hero-progress-fill {
  animation: heroFill 5.5s linear forwards;
}

@keyframes heroFill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.hero-counter {
  font-size: 13px;
  color: var(--ivory-faint);
  font-weight: 600;
  letter-spacing: 0.5px;
  flex: none;
}

.hero-counter .cur {
  color: var(--gold-bright);
}

@media (min-width:900px) {
  .hero {
    min-height: 100vh;
  }

  .hero-bg-media {
    background-image: var(--hero-img-des);
  }

  .hero-content {
    padding: var(--sp-9) var(--sp-7) 128px;
  }

  .hero-progress {
    right: var(--sp-7);
    left: var(--sp-7);
    bottom: var(--sp-6);
    max-width: 420px;
  }
}

/* ============================================================
     WEIGHT QUICK-SELECT CHIPS
     ============================================================ */
.chips-row {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  overflow-y: hidden;
  padding: var(--sp-5) var(--sp-4);
  scrollbar-width: none;
}

.chips-row::-webkit-scrollbar {
  display: none;
}

.weight-chip {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.weight-chip-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.weight-chip:active .weight-chip-circle {
  border-color: var(--gold-bright);
  transform: scale(0.94);
}

@media (hover:hover) {
  .weight-chip:hover .weight-chip-circle {
    border-color: var(--gold-bright);
    box-shadow: 0 6px 18px -6px rgba(227, 192, 136, 0.35);
  }
}

.weight-chip-circle svg {
  width: 22px;
  height: 22px;
}

.weight-chip-label {
  font-size: 12.5px;
  color: var(--ivory-dim);
  font-weight: 500;
}

@media (min-width:900px) {
  .chips-row {
    padding: var(--sp-6) var(--sp-7);
    justify-content: center;
  }
}

/* ============================================================
     SECTIONS
     ============================================================ */
.section {
  padding: var(--sp-8) 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  right: var(--sp-4);
  left: var(--sp-4);
  height: 1px;
  background: var(--gold-line);
  opacity: 0.35;
}

.section:first-child::before {
  display: none;
}

@media (min-width:900px) {
  .section::before {
    right: var(--sp-7);
    left: var(--sp-7);
  }
}

.section-head {
  margin-bottom: var(--sp-6);
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: var(--sp-2);
}

.section-desc {
  font-size: 15px;
  color: var(--ivory-dim);
  font-weight: 500;
  line-height: 1.7;
  max-width: 40ch;
}

@media (min-width:900px) {
  .section {
    padding: var(--sp-9) 0;
  }

  .section-title {
    font-size: 37px;
  }
}

/* ============================================================
     PRODUCT CARDS â€” EDITORIAL
     ============================================================ */
.featured-card {
  display: block;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  margin-bottom: var(--sp-5);
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}

.featured-card:active {
  border-color: var(--border-strong);
}

@media (hover:hover) {

  .featured-card:hover,
  .product-card:hover {
    border-color: rgba(227, 192, 136, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.6);
  }

  .featured-card:hover .card-media-img,
  .product-card:hover .card-media-img {
    transform: scale(1.06);
  }

  .featured-card:hover .light-sweep,
  .product-card:hover .light-sweep {
    transform: translateX(160%) skewX(-12deg);
  }

  .featured-card:hover .p-link svg,
  .product-card:hover .p-link svg {
    transform: translateX(-4px);
  }
}

.featured-media {
  aspect-ratio: 4/3.4;
  background: linear-gradient(160deg, #171410 0%, #0a0908 100%);
  position: relative;
  overflow: hidden;
}

.featured-body {
  padding: var(--sp-5);
}

.card-media-img {
  width: 100%;
  height: 100%;
  transition: transform .7s var(--ease);
}

.card-media-img svg {
  width: 100%;
  height: 100%;
}

.card-reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.light-sweep {
  position: absolute;
  top: -20%;
  bottom: -20%;
  width: 34%;
  left: -40%;
  background: linear-gradient(100deg, transparent, rgba(255, 246, 224, 0.16), transparent);
  transform: translateX(-40%) skewX(-12deg);
  transition: transform .9s var(--ease);
  pointer-events: none;
}

.product-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12.5px;
  color: var(--gold-bright);
  font-weight: 600;
  background: rgba(6, 5, 3, 0.6);
  border: 1px solid var(--border-strong);
  padding: 5px 11px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  background: rgba(227, 192, 136, 0.14);
  color: var(--gold-bright);
  border: 1px solid rgba(227, 192, 136, 0.4);
  backdrop-filter: blur(6px);
}

.quickadd-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(6, 5, 3, 0.55);
  border: 1px solid var(--border-strong);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.quickadd-btn svg {
  width: 15px;
  height: 15px;
  transition: transform .3s var(--ease);
}

.quickadd-btn.added {
  background: var(--gold-bright);
  color: #0a0a08;
  border-color: var(--gold-bright);
}

.quickadd-btn.added svg {
  transform: scale(1.15) rotate(90deg);
}

.quickadd-btn:active {
  transform: scale(0.9);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

.product-card {
  display: block;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}

.product-card:active {
  border-color: var(--border-strong);
}

.product-card-media {
  aspect-ratio: 16/11;
  background: linear-gradient(160deg, #141210 0%, #0a0908 100%);
  position: relative;
  overflow: hidden;
}

.product-card-body {
  padding: var(--sp-5);
}

.p-name {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 2px;
}

.p-weight {
  font-size: 13.5px;
  color: var(--ivory-faint);
  margin-bottom: var(--sp-3);
  font-weight: 400;
}

.p-price {
  font-size: 18.5px;
  font-weight: 900;
  color: var(--ivory);
}

.p-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  color: var(--gold-bright);
  margin-top: var(--sp-3);
  font-weight: 600;
  position: relative;
}

.p-link::after {
  content: '';
  position: absolute;
  right: 0;
  left: 20px;
  bottom: -3px;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.featured-card:active .p-link::after,
.product-card:active .p-link::after {
  transform: scaleX(1);
}

@media (hover:hover) {

  .featured-card:hover .p-link::after,
  .product-card:hover .p-link::after {
    transform: scaleX(1);
  }
}

.p-link svg {
  width: 13px;
  height: 13px;
  transition: transform .3s var(--ease);
}

.featured-body .p-name {
  font-size: 22px;
}

.featured-body .p-price {
  font-size: 26px;
}

@media (min-width:900px) {
  .home-grid-wrap {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: var(--sp-5);
  }

  .home-grid-wrap .featured-card {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .product-grid {
    display: contents;
  }

  .product-card-media {
    aspect-ratio: 1/1.1;
  }

  .product-card-body {
    padding: var(--sp-4) var(--sp-3) var(--sp-4);
  }
}

/* ============================================================
     BRAND STATEMENT (editorial split)
     ============================================================ */
.statement {
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.statement::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 50%;
  aspect-ratio: 1/1;
  background: radial-gradient(closest-side, rgba(227, 192, 136, 0.08), transparent 70%);
  pointer-events: none;
}

.statement-media {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 260px;
  margin: 0 auto var(--sp-6);
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.statement-media::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(216, 183, 132, 0.25);
}

.statement-eyebrow {
  font-size: 13.5px;
  color: var(--gold-bright);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--sp-3);
}

.statement-title {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--sp-4);
}

.statement-text {
  font-size: 15px;
  color: var(--ivory-dim);
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
  max-width: 44ch;
  margin: 0 auto var(--sp-6);
}

.statement-specs {
  display: flex;
  justify-content: center;
  gap: var(--sp-6);
}

.statement-spec {
  text-align: center;
}

.statement-spec .v {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold-bright);
  margin-bottom: 3px;
}

.statement-spec .l {
  font-size: 12.5px;
  color: var(--ivory-faint);
  font-weight: 500;
}

@media (min-width:900px) {
  .statement-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--sp-9);
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .statement-media {
    margin: 0;
    max-width: 340px;
  }

  .statement-eyebrow,
  .statement-title,
  .statement-text {
    text-align: right;
    margin-inline: 0;
  }

  .statement-specs {
    justify-content: flex-start;
  }
}

/* ============================================================
     TRUST SECTION
     ============================================================ */
.trust-section {
  padding: var(--sp-7) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-title {
  font-size: 20.5px;
  font-weight: 800;
  margin-bottom: var(--sp-6);
  color: var(--ivory);
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  transition: transform .3s var(--ease);
}

@media (hover:hover) {
  .trust-item:hover {
    transform: translateX(-4px);
  }
}

.trust-icon {
  width: 36px;
  height: 36px;
  flex: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}

.trust-icon svg {
  width: 16px;
  height: 16px;
}

.trust-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust-desc {
  font-size: 13.5px;
  color: var(--ivory-faint);
  font-weight: 400;
}

@media (min-width:900px) {
  .trust-list {
    flex-direction: row;
    justify-content: space-between;
    gap: var(--sp-6);
  }

  .trust-item {
    flex: 1;
  }
}

/* ============================================================
     HOW IT WORKS / TRUST SLIDER
     ============================================================ */
.reviews-wrap {
  position: relative;
}

.reviews-row {
  display: flex;
  align-items: stretch;
  gap: var(--sp-4);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 var(--sp-4) var(--sp-2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.reviews-row::-webkit-scrollbar {
  display: none;
}

.how-card {
  flex: none;
  width: 72%;
  max-width: 280px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: var(--sp-6) var(--sp-5);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 11px;
}

.how-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 70%;
  aspect-ratio: 1/1;
  background: radial-gradient(closest-side, rgba(227, 192, 136, 0.08), transparent 70%);
  pointer-events: none;
}

@media (hover:hover) {
  .how-card:hover {
    border-color: rgba(227, 192, 136, 0.4);
    transform: translateY(-4px);
  }
}

.how-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(155deg, rgba(227, 192, 136, 0.16), rgba(227, 192, 136, 0.04));
  border: 1px solid rgba(227, 192, 136, 0.3);
  color: var(--gold-bright);
}

.how-icon svg {
  width: 26px;
  height: 26px;
}

.how-title {
  font-size: 17.5px;
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 1;
}

.how-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ivory-dim);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.reviews-nav {
  display: none;
}

@media (min-width:900px) {
  .reviews-row {
    padding: 0;
  }

  .how-card {
    width: auto;
    flex: 1;
  }

  .reviews-nav {
    display: flex;
    gap: var(--sp-3);
    justify-content: flex-end;
    margin-top: var(--sp-5);
    padding: 0 var(--sp-7);
  }

  .reviews-nav button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s var(--ease), border-color .25s var(--ease);
  }

  .reviews-nav button:hover {
    background: var(--surface);
    border-color: var(--gold-bright);
  }

  .reviews-nav svg {
    width: 16px;
    height: 16px;
  }
}

/* ============================================================
     FAQ
     ============================================================ */
.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--ivory);
  padding: 18px 2px;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  transition: color .3s var(--ease);
}

@media (hover:hover) {
  .accordion-head:hover {
    color: var(--gold-bright);
  }
}

.accordion-head svg {
  width: 15px;
  height: 15px;
  color: var(--ivory-faint);
  transition: transform .4s var(--ease), color .3s var(--ease);
  flex: none;
}

.accordion-item.open .accordion-head svg {
  transform: rotate(45deg);
  color: var(--gold-bright);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}

.accordion-item.open .accordion-panel {
  max-height: 220px;
}

.accordion-panel p {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ivory-dim);
  font-weight: 400;
  padding: 0 2px var(--sp-4);
}

/* ============================================================
     BOTTOM NAV
     ============================================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  background: rgba(6, 5, 3, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  padding: 10px var(--sp-4) calc(10px + env(safe-area-inset-bottom));
}

.nav-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--ivory-faint);
  padding: 6px 0;
  font-size: 12px;
  font-weight: 500;
  transition: color .25s var(--ease);
}

.nav-item svg {
  width: 20px;
  height: 20px;
}

.nav-item.active {
  color: var(--ivory);
}

.nav-item.active svg {
  color: var(--gold-bright);
}

.nav-item .cart-badge {
  top: 0;
  left: calc(50% - 2px);
}

@media (min-width:900px) {
  .bottom-nav {
    display: none;
  }
}

.has-bottom-nav {
  padding-bottom: 86px;
}

/* ============================================================
     FOOTER
     ============================================================ */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-strong);
  position: relative;
  padding: calc(var(--sp-9) + 8px) 0 var(--sp-7);
  overflow: hidden;
  padding-bottom: 90px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--gold-line);
}

.site-footer::after {
  content: '';
  position: absolute;
  top: -140px;
  left: 50%;
  width: 420px;
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(227, 192, 136, 0.06), transparent 70%);
  pointer-events: none;
}

.footer-brand {
  margin-bottom: var(--sp-8);
  position: relative;
}

.footer-brand .brand {
  font-size: 22px;
}

.footer-tag {
  font-size: 14.5px;
  color: var(--ivory-dim);
  font-weight: 400;
  margin-top: var(--sp-4);
  max-width: 34ch;
  line-height: 1.9;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
  position: relative;
}

.footer-col-title {
  font-size: 12.5px;
  color: var(--gold-bright);
  font-weight: 700;
  margin-bottom: var(--sp-5);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ivory-dim);
  font-weight: 400;
  margin-bottom: var(--sp-4);
  line-height: 1.9;
}

.footer-info-row svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 2px;
  color: var(--gold-bright);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer-links button {
  background: none;
  border: none;
  color: var(--ivory-dim);
  font-size: 14.5px;
  text-align: right;
  padding: 0;
  position: relative;
  width: fit-content;
  transition: color .25s var(--ease);
}

.footer-links button::after {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  bottom: -3px;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

@media (hover:hover) {
  .footer-links button:hover {
    color: var(--gold-bright);
  }

  .footer-links button:hover::after {
    transform: scaleX(1);
  }
}

.footer-social {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory-dim);
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}

@media (hover:hover) {
  .footer-social a:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    background: rgba(227, 192, 136, 0.06);
  }
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-7);
  border-top: 1px solid var(--border);
  margin-bottom: var(--sp-7);
  position: relative;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--ivory-dim);
  font-weight: 500;
  background: rgba(227, 192, 136, 0.02);
}

.trust-badge svg {
  width: 15px;
  height: 15px;
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-size: 12.5px;
  color: var(--ivory-faint);
  font-weight: 400;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
  position: relative;
}

.footer-bottom span:last-child {
  color: var(--gold-soft);
}

.footer-credit {
  text-align: center;
  font-size: 11.5px;
  color: var(--ivory-faint);
  font-weight: 400;
  margin-top: var(--sp-5);
  opacity: 0.7;
}

.footer-credit a {
  color: var(--gold-bright);
  font-weight: 600;
  transition: opacity .25s var(--ease);
}

.footer-credit a:hover {
  opacity: 0.8;
}

@media (min-width:900px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-grid>div {
    min-width: 220px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================================
     PRODUCT DETAIL
     ============================================================ */
.pd-media {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(165deg, #171410 0%, #08080706 60%, #050504 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: pdReveal 0.9s var(--ease) both;
  border-radius: var(--radius-md);
}

@keyframes pdReveal {
  from {
    opacity: 0;
    transform: scale(1.04);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.pd-body {
  padding: var(--sp-6) var(--sp-4) var(--sp-9);
}

.pd-name {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}

.pd-sub {
  font-size: 15px;
  color: var(--ivory-dim);
  font-weight: 500;
  margin-bottom: var(--sp-6);
  line-height: 1.8;
}

.pd-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-6);
}

.spec-label {
  font-size: 12.5px;
  color: var(--ivory-faint);
  margin-bottom: 5px;
  font-weight: 500;
}

.spec-value {
  font-size: 16.5px;
  color: var(--ivory);
  font-weight: 700;
}

.pd-price-row {
  margin-bottom: var(--sp-6);
}

.pd-price-label {
  font-size: 13.5px;
  color: var(--ivory-faint);
  margin-bottom: 6px;
  font-weight: 500;
}

.pd-price {
  font-size: clamp(24px, 7.5vw, 39px);
  font-weight: 900;
  color: var(--ivory);
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pd-price .toman {
  font-size: clamp(13px, 3.6vw, 16.5px);
  font-weight: 500;
  color: var(--ivory-dim);
  margin-inline-start: 8px;
  white-space: normal;
}

.pd-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-7);
  padding: var(--sp-4);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.pd-qty-label {
  font-size: 14px;
  color: var(--ivory-dim);
  font-weight: 600;
}

.pd-qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.pd-qty-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease);
}

.pd-qty-btn:active {
  background: var(--surface-2);
}

.pd-qty-btn svg {
  width: 14px;
  height: 14px;
}

.pd-qty-val {
  min-width: 34px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  transition: transform .25s cubic-bezier(.34, 1.8, .64, 1);
}

.pd-qty-val.bump {
  animation: qtyBump .35s cubic-bezier(.34, 1.8, .64, 1);
}

@keyframes qtyBump {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  padding: 16px var(--sp-4) calc(16px + env(safe-area-inset-bottom));
  background: rgba(9, 8, 5, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-width: 100vw;
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-width: 0;
}

.sticky-cta-price {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 46%;
}

.sticky-cta-price .lbl {
  font-size: 12px;
  color: var(--ivory-faint);
  display: block;
  margin-bottom: 3px;
  font-weight: 500;
}

.sticky-cta-price .val {
  display: block;
  font-size: clamp(13px, 4.2vw, 18.5px);
  font-weight: 800;
  white-space: normal;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sticky-cta-btn {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 54px;
  padding: 0 var(--sp-4);
  white-space: nowrap;
}

.sticky-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 380px) {
  .sticky-cta-btn {
    font-size: 14px;
    padding: 0 var(--sp-3);
  }
}

@media (min-width:900px) {
  .pd-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    align-items: flex-start;
  }

  .pd-media {
    position: sticky;
    top: 110px;
    border-radius: var(--radius-lg);
    aspect-ratio: 1/1.05;
  }

  .pd-body {
    padding: var(--sp-6) 0 0;
  }

  .sticky-cta {
    position: static;
    background: none;
    padding: var(--sp-6) 0 0;
    backdrop-filter: none;
    border: none;
  }
}

/* ============================================================
     FORMS â€” floating label, gold focus
     ============================================================ */
.field {
  margin-bottom: var(--sp-5);
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  height: 56px;
  padding: 22px 16px 8px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--ivory);
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}

.field textarea {
  height: auto;
  min-height: 108px;
  padding-top: 26px;
  line-height: 1.8;
  resize: vertical;
}

.field label {
  position: absolute;
  right: 16px;
  top: 18px;
  font-size: 15px;
  color: var(--ivory-faint);
  font-weight: 500;
  pointer-events: none;
  transform-origin: right top;
  transition: transform .22s var(--ease), color .22s var(--ease), top .22s var(--ease);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-bright);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(227, 192, 136, 0.1);
}

.field input:focus+label,
.field input:not(:placeholder-shown)+label,
.field textarea:focus+label,
.field textarea:not(:placeholder-shown)+label {
  top: 9px;
  transform: scale(0.76);
  color: var(--gold-bright);
}

/* two-up layout for short, related fields (national id + phone) */
.field-row {
  display: flex;
  flex-direction: column;
}

@media (min-width:560px) {
  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--sp-4);
  }
}

/* inline validation state â€” replaces native browser "Please fill out this field" bubble */
.field.field-error input,
.field.field-error textarea {
  border-color: var(--error);
  background: rgba(168, 105, 92, 0.07);
}

.field.field-error label {
  color: var(--error);
}

.field.field-error {
  animation: fieldShake .38s var(--ease);
}

@keyframes fieldShake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}

/* ============================================================
     PAYMENT METHOD CARDS (checkout)
     ============================================================ */
.pm-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.pm-card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-bright);
  background: rgba(227, 192, 136, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pm-check {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-bright);
  color: #0a0a08;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-check svg {
  width: 14px;
  height: 14px;
}

.pm-icon {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}

.pm-icon svg {
  width: 17px;
  height: 17px;
}

.pm-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.pm-desc {
  font-size: 13px;
  color: var(--ivory-faint);
  font-weight: 400;
}

/* checkout progress indicator */
.co-progress {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--sp-7);
  margin-top: 30px;
}

.co-progress-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ivory-faint);
  font-weight: 600;
  background: none;
  border: none;
  padding: 2px;
  font-family: inherit;
}

.co-progress-step .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ivory-faint);
  flex: none;
}

.co-progress-step.done {
  color: var(--gold-bright);
  cursor: pointer;
}

.co-progress-step.done .dot {
  background: var(--gold-bright);
}

@media (hover:hover) {
  .co-progress-step.done:hover {
    opacity: 0.75;
  }
}

.co-progress-step.current {
  color: var(--ivory);
}

.co-progress-step.current .dot {
  background: var(--ivory);
  box-shadow: 0 0 0 3px rgba(245, 239, 226, 0.15);
}

.co-progress-line {
  flex: 1;
  height: 1px;
  background: var(--border-strong);
  max-width: 28px;
}

.co-progress-line.done {
  background: var(--gold-bright);
  opacity: 0.5;
}

/* ============================================================
     CART & CHECKOUT SUMMARY
     ============================================================ */
.co-summary {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  margin-bottom: var(--sp-4);
}

.co-summary-row {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}

.co-summary-row-bottom {
  justify-content: space-between;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

.co-summary-media {
  width: 72px;
  height: 72px;
  flex: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, #171410 0%, #0a0908 100%);
  overflow: hidden;
}

.co-summary-info {
  flex: 1;
  min-width: 0;
}

.co-summary-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.co-summary-weight {
  font-size: 13px;
  color: var(--ivory-faint);
}

.co-summary-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-bright);
  white-space: nowrap;
  flex: none;
}

.co-block-title {
  font-size: 16.5px;
  font-weight: 800;
  margin-bottom: var(--sp-5);
  color: var(--ivory);
}

.co-section {
  margin-bottom: var(--sp-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: var(--sp-5);
}

@media (min-width:900px) {
  .co-section {
    padding: var(--sp-6);
  }
}

.summary-card {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  background: rgba(23, 20, 13, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 190px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: var(--ivory-dim);
  padding: 14px 0;
  font-weight: 500;
}

.summary-row.total {
  border-top: 1px solid var(--border-strong);
  margin-top: 10px;
  padding-top: 22px;
  font-size: 18.5px;
  color: var(--ivory);
  font-weight: 800;
}

.summary-row.total .num {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold-bright);
}

.trust-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 12.5px;
  color: var(--ivory-faint);
  margin-top: var(--sp-6);
  font-weight: 500;
}

.trust-mini svg {
  width: 13px;
  height: 13px;
}

@media (min-width:900px) {
  .co-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--sp-9);
    align-items: flex-start;
  }

  .co-wrap .sticky-cta {
    position: static;
    background: none;
    padding-top: var(--sp-6);
    backdrop-filter: none;
    border: none;
  }

  .co-wrap>div:last-child {
    position: sticky;
    top: 110px;
  }

  .cart-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: calc(var(--sp-9) + 16px);
    align-items: flex-start;
  }

  .cart-wrap .sticky-cta {
    position: static;
    background: none;
    padding-top: var(--sp-7);
    backdrop-filter: none;
    border: none;
  }

  .cart-wrap>div:last-child {
    position: sticky;
    top: 110px;
  }
}

.cart-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
}

/* ============================================================
     RESULT PAGE
     ============================================================ */
.result-wrap {
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-7) var(--sp-4) var(--sp-9);
  position: relative;
  overflow: hidden;
}

.result-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.result-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-bright);
  opacity: 0;
  animation: particleFloat 1.8s var(--ease-out) forwards;
}

.result-particles span:nth-child(1) {
  top: 44%;
  left: 38%;
  animation-delay: .3s;
}

.result-particles span:nth-child(2) {
  top: 36%;
  left: 60%;
  animation-delay: .42s;
}

.result-particles span:nth-child(3) {
  top: 58%;
  left: 64%;
  animation-delay: .36s;
}

.result-particles span:nth-child(4) {
  top: 60%;
  left: 36%;
  animation-delay: .5s;
}

.result-particles span:nth-child(5) {
  top: 30%;
  left: 48%;
  animation-delay: .58s;
}

.result-particles span:nth-child(6) {
  top: 66%;
  left: 50%;
  animation-delay: .46s;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-46px) scale(1.1);
  }
}

.result-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  animation: iconIn .6s var(--ease) both;
  position: relative;
  z-index: 1;
}

@keyframes iconIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.result-icon svg {
  width: 32px;
  height: 32px;
}

.result-icon.success {
  background: var(--success-dim);
  color: var(--success);
  border: 1px solid rgba(139, 161, 127, 0.35);
  box-shadow: 0 0 0 10px rgba(139, 161, 127, 0.06), 0 0 40px -8px rgba(139, 161, 127, 0.4);
}

.result-icon.failed {
  background: var(--error-dim);
  color: var(--error);
  border: 1px solid rgba(168, 105, 92, 0.35);
  animation: iconIn .6s var(--ease) both, shakeX .5s var(--ease) .6s;
}

@keyframes shakeX {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

.result-title {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 1;
}

.result-text {
  font-size: 15px;
  color: var(--ivory-dim);
  font-weight: 500;
  margin-bottom: var(--sp-7);
  max-width: 32ch;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.result-card {
  width: 100%;
  max-width: 340px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  margin-bottom: var(--sp-7);
  background: rgba(23, 20, 13, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: right;
  position: relative;
  z-index: 1;
}

.result-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 14.5px;
}

.result-row+.result-row {
  border-top: 1px solid var(--border);
}

.result-row .k {
  color: var(--ivory-faint);
  font-weight: 400;
}

.result-row .v {
  color: var(--ivory);
  font-weight: 700;
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  width: 100%;
  max-width: 340px;
  position: relative;
  z-index: 1;
}

/* ============================================================
     CART PAGE
     ============================================================ */
.cart-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding: var(--sp-6);
  margin-bottom: var(--sp-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  max-height: 420px;
  overflow: hidden;
  transition: max-height .35s var(--ease), opacity .3s var(--ease), transform .3s var(--ease), padding .35s var(--ease), margin .35s var(--ease), border-color .35s var(--ease);
}

.cart-item.removing {
  max-height: 0;
  opacity: 0;
  transform: translateX(24px);
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-color: transparent;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.cart-item-media {
  width: 92px;
  height: 92px;
  flex: none;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #171410 0%, #0a0908 100%);
  overflow: hidden;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}

.cart-item-weight {
  font-size: 13.5px;
  color: var(--ivory-faint);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.cart-remove {
  flex: none;
  background: none;
  border: none;
  color: var(--ivory-faint);
  padding: 8px;
  margin: -8px;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.cart-remove:active {
  transform: scale(0.85);
  color: var(--error);
}

.cart-remove svg {
  width: 17px;
  height: 17px;
}

.cart-item-divider {
  height: 1px;
  background: var(--border);
  flex: none;
}

.cart-item-row-bottom {
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex: none;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease);
}

.qty-btn:active {
  background: var(--surface-2);
}

.qty-btn svg {
  width: 14px;
  height: 14px;
}

.qty-val {
  min-width: 38px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 700;
  display: inline-block;
  transition: transform .25s cubic-bezier(.34, 1.8, .64, 1);
}

.qty-val.bump {
  animation: qtyBump .35s cubic-bezier(.34, 1.8, .64, 1);
}

.cart-item-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-bright);
  white-space: nowrap;
  flex: none;
}

@media (min-width:900px) {
  .cart-item {
    padding: var(--sp-6) var(--sp-7);
  }

  .cart-item-media {
    width: 110px;
    height: 110px;
  }
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-9) var(--sp-4);
}

.empty-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory-faint);
  margin-bottom: var(--sp-5);
  background: radial-gradient(closest-side, rgba(227, 192, 136, 0.06), transparent);
}

.empty-icon svg {
  width: 26px;
  height: 26px;
}

.empty-title {
  font-size: 18.5px;
  font-weight: 800;
  margin-bottom: var(--sp-2);
}

.empty-text {
  font-size: 14.5px;
  color: var(--ivory-faint);
  font-weight: 400;
  margin-bottom: var(--sp-6);
  max-width: 28ch;
}

.gold-illust {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.fade-in {
  animation: fadeIn .5s var(--ease) both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
     GATEWAY-UNAVAILABLE MODAL
     ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(5, 4, 3, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  padding: 0 var(--sp-4) calc(var(--sp-5) + env(safe-area-inset-bottom));
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  text-align: center;
  transform: translateY(24px) scale(0.97);
  transition: transform .35s var(--ease-out);
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--sp-5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--error-dim);
  color: var(--error);
  border: 1px solid rgba(168, 105, 92, 0.35);
}

.modal-icon svg {
  width: 28px;
  height: 28px;
}

.modal-title {
  font-size: 18.5px;
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: var(--sp-3);
}

.modal-text {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ivory-dim);
  font-weight: 500;
  margin-bottom: var(--sp-6);
}

@media (min-width:900px) {
  .modal-overlay {
    align-items: center;
    padding: var(--sp-4);
  }
}

/* ============================================================
     TOASTS â€” inline validation / lightweight feedback
     ============================================================ */
.toast-stack {
  position: fixed;
  top: calc(var(--sp-4) + env(safe-area-inset-top));
  right: 0;
  left: 0;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: 0 var(--sp-4);
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  width: 100%;
  max-width: 420px;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  background: rgba(20, 17, 11, 0.94);
  border: 1px solid rgba(168, 105, 92, 0.4);
  box-shadow: 0 16px 34px -12px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(-14px);
  opacity: 0;
  transition: transform .35s var(--ease-out), opacity .3s var(--ease);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--error-dim);
  color: var(--error);
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-icon svg {
  width: 14px;
  height: 14px;
}

.toast-text {
  flex: 1;
  font-size: 14px;
  color: var(--ivory);
  font-weight: 600;
  line-height: 1.7;
}