/* 9 ELEVEN — BLACK CHROME / LIQUID GLASS REDESIGN */
:root {
  --glass-clear: rgba(255, 255, 255, .20);
  --glass-clear-strong: rgba(255, 255, 255, .34);
  --glass-smoke: rgba(7, 8, 10, .78);
  --glass-line: rgba(255, 255, 255, .58);
  --glass-shadow: 0 20px 55px rgba(15, 16, 18, .10), inset 0 1px 0 rgba(255, 255, 255, .62), inset 0 -1px 0 rgba(255, 255, 255, .13);
  --glass-blur: blur(24px) saturate(1.28);
  --panel-radius: 24px;
}

html {
  background-color: #ddd9d0;
}

body {
  background-color: #e6e2d9;
  background-image:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.55), transparent 32%),
    radial-gradient(circle at 84% 38%, rgba(255,255,255,.35), transparent 34%),
    linear-gradient(125deg, rgba(255,255,255,.10), rgba(181,180,175,.05)),
    url("assets/logo-pattern-tile.png?v=20260819pat2");
  background-size: 100% 100%, 100% 100%, 100% 100%, 112px 68px;
  background-attachment: scroll, scroll, scroll, scroll;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  animation: sitePatternDrift 90s linear infinite;
}

.site,
.page,
#app {
  background: transparent;
}

/* INTRO — THE LOGO ITSELF, NOTHING AROUND IT */
.intro {
  color: #08090a;
  background: rgba(235, 232, 224, .66);
  -webkit-backdrop-filter: blur(3px) saturate(1.05);
  backdrop-filter: blur(3px) saturate(1.05);
}

.intro-pattern,
.mobile-menu-pattern {
  inset: -70px;
  opacity: 1;
  background-image: url("assets/logo-pattern-tile.png?v=20260819pat2");
  background-size: 112px 68px;
  transform: none;
  /* Slow, GPU-friendly drift (background-position only, one paint layer) */
  animation: glassPatternDrift 90s linear infinite;
  will-change: background-position;
}
.mobile-menu-pattern {
  opacity: .45;
  filter: invert(1);
}
/* Pause when tab hidden, via --anim-play set in app.js */
@media (prefers-reduced-motion: reduce) {
  body, .intro-pattern, .mobile-menu-pattern { animation: none !important; }
}

.intro-pattern::after {
  background:
    radial-gradient(circle at 50% 47%, rgba(246,244,239,.76) 0 9%, rgba(241,238,231,.38) 35%, transparent 68%),
    linear-gradient(120deg, rgba(255,255,255,.22), transparent 45%, rgba(255,255,255,.16));
}

.intro-topline,
.intro-bottomline {
  text-shadow: 0 1px 0 rgba(255,255,255,.7);
}

.intro-kicker {
  top: 16%;
}

.logo-wrap,
.coin-wrap {
  --rx: -5deg;
  --ry: 0deg;
  --gx: 38%;
  --gy: 28%;
  width: clamp(330px, 52vw, 740px);
  aspect-ratio: 1076 / 440;
  position: relative;
  transform-style: preserve-3d;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.logo-sculpt,
.coin.logo-sculpt {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .24s cubic-bezier(.16,.76,.22,1);
  will-change: transform;
}

.logo-wrap:not(.is-tracking) .logo-sculpt {
  animation: logoIdle 6.5s ease-in-out infinite;
}

.logo-face,
.logo-depth,
.logo-glare {
  position: absolute;
  inset: 0;
  -webkit-mask: url("assets/logo-mark.png?v=20260819logo") center / contain no-repeat;
  mask: url("assets/logo-mark.png?v=20260819logo") center / contain no-repeat;
}

.logo-depth {
  background: linear-gradient(135deg, #000 0%, #20242a 36%, #020303 70%, #343941 100%);
  transform: translate3d(5px, 7px, -20px);
  filter: drop-shadow(0 14px 14px rgba(0,0,0,.15));
}

.logo-depth::before,
.logo-depth::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #050607;
}

.logo-depth::before { transform: translate(-3px,-4px); opacity: .68; }
.logo-depth::after { transform: translate(-6px,-8px); opacity: .28; }

.logo-face {
  z-index: 2;
  transform: translateZ(13px);
  background:
    radial-gradient(circle at var(--gx) var(--gy), rgba(255,255,255,.20) 0 3%, rgba(255,255,255,.05) 10%, transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.13) 0%, rgba(255,255,255,.03) 8%, transparent 16%, transparent 76%, rgba(255,255,255,.05) 92%, rgba(255,255,255,.11) 100%),
    linear-gradient(164deg,
      #030304 0%, #0a0c0e 12%, #1b1e23 20%, #050607 28%,
      #07080a 40%, #15171b 48%, #060708 54%,
      #0b0c0f 66%, #1e2127 78%, #08090b 88%, #030304 100%);
  filter:
    drop-shadow(1.3px 0 0 rgba(0,0,0,.92))
    drop-shadow(-1.3px 0 0 rgba(0,0,0,.92))
    drop-shadow(0 1.3px 0 rgba(0,0,0,.92))
    drop-shadow(0 -1.3px 0 rgba(0,0,0,.92))
    drop-shadow(1px 1px 0 rgba(0,0,0,.85))
    drop-shadow(-1px 1px 0 rgba(0,0,0,.85))
    drop-shadow(1px -1px 0 rgba(0,0,0,.85))
    drop-shadow(-1px -1px 0 rgba(0,0,0,.85))
    drop-shadow(0 1px 0 rgba(255,255,255,.35))
    drop-shadow(0 5px 2px rgba(0,0,0,.25))
    drop-shadow(0 14px 17px rgba(0,0,0,.11));
}

.logo-glare,
.coin-glare.logo-glare {
  z-index: 3;
  inset: 0;
  transform: translateZ(18px);
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(circle at var(--gx) var(--gy), rgba(255,255,255,.16) 0 3%, rgba(255,255,255,.04) 11%, transparent 24%),
    linear-gradient(112deg, transparent 20%, rgba(255,255,255,.06) 32%, rgba(255,255,255,.5) 45%, rgba(255,255,255,.06) 58%, transparent 70%);
  background-size: 100% 100%, 220% 100%;
  background-position: 0 0, 130% 0;
  mix-blend-mode: screen;
  animation: chromeSweep 4.4s ease-in-out infinite;
}

.logo-shadow,
.coin-shadow.logo-shadow {
  width: 56%;
  height: 9%;
  left: 22%;
  bottom: -9%;
  border-radius: 50%;
  opacity: .14;
  background: radial-gradient(ellipse, rgba(0,0,0,.56), rgba(0,0,0,.06) 58%, transparent 76%);
  filter: blur(13px);
  transform: translateZ(-30px) translate(var(--shadow-x, 0), var(--shadow-y, 0));
}

.intro .enter-btn {
  margin-top: 48px;
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,.70);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.42), rgba(255,255,255,.10));
  box-shadow: 0 14px 34px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.84);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

.intro .enter-btn:hover {
  gap: 42px;
  background: rgba(8,9,10,.86);
  color: var(--bone-2);
  border-color: rgba(255,255,255,.16);
}

.intro.entering .logo-sculpt {
  animation: logoEnter .88s var(--ease-in) forwards;
}

.intro.entering .enter-btn,
.intro.entering .intro-kicker,
.intro.entering .intro-hint {
  animation: fadeOut .35s ease forwards;
}

/* GLASS SITE CHROME */
.announcement {
  color: #f5f2eb;
  background: rgba(6,7,8,.82);
  border-bottom: 1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
}

.site-header {
  background: linear-gradient(115deg, rgba(255,255,255,.38), rgba(255,255,255,.16));
  border-bottom: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 15px 38px rgba(10,10,12,.08), inset 0 1px 0 rgba(255,255,255,.75);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  backdrop-filter: blur(28px) saturate(1.35);
}

.site-header.is-scrolled {
  border-color: rgba(255,255,255,.72);
  background: rgba(232,229,220,.62);
}

.header-logo {
  width: 148px;
}

.header-logo img {
  width: 100%;
  filter: none;
}

/* CLEAR GLASS SURFACES */
.page-head,
.manifesto,
.section-head,
.collection-card,
.product-card,
.product-panel,
.product-gallery,
.cart-page,
.content-wrap,
.size-diagram {
  background: linear-gradient(135deg, var(--glass-clear-strong), rgba(255,255,255,.08));
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

.page-head {
  min-height: 42vh;
  margin: 16px;
  border-radius: 30px;
  overflow: hidden;
}

.hero {
  margin: 16px;
  min-height: calc(100svh - 137px);
  border: 1px solid var(--glass-line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.24), rgba(255,255,255,.04));
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(7px) saturate(1.1);
  backdrop-filter: blur(7px) saturate(1.1);
}

.hero-grid {
  opacity: .20;
}

.hero-side,
.orbit-badge {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 12px 25px rgba(0,0,0,.07);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
}

.hero-side { border-radius: 16px; }
.hero-side .line { background: rgba(0,0,0,.44); }
.orbit-badge { padding: 0; }

.hero-cta,
.add-btn,
.submit-btn,
.drawer-actions .checkout,
.cart-summary,
.checkout-summary,
.product-tag,
.filter-btn.is-active,
.filter-btn:hover,
.toast {
  color: #f5f2eb;
  background: linear-gradient(135deg, rgba(18,20,23,.94), rgba(0,0,0,.70));
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 16px 36px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  backdrop-filter: blur(22px) saturate(1.2);
}

.hero-cta,
.add-btn,
.submit-btn,
.toast {
  border-radius: 14px;
}

.manifesto {
  margin: 16px;
  padding-inline: 28px;
  border-radius: 30px;
}

.section-head {
  margin: 16px 16px 12px;
  border-radius: 22px;
}

.collections,
.product-section {
  border: 0;
}

.collection-grid {
  gap: 14px;
  padding: 0 16px 16px;
}

.collection-card {
  border-radius: var(--panel-radius);
  border: 1px solid var(--glass-line) !important;
}

.collection-info {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 15px;
  background: rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
}

.product-grid {
  gap: 14px;
  padding: 0 16px 16px;
}

.product-card,
.shop-product-grid .product-card {
  border-radius: 22px;
  border: 1px solid var(--glass-line) !important;
  overflow: hidden;
}

.product-media,
.gallery-image,
.drawer-item img,
.search-result img,
.cart-row img,
.editorial-art {
  background: rgba(255,255,255,.10);
}

.product-media,
.gallery-image {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.quick-add {
  background: rgba(255,255,255,.36);
  border-color: rgba(255,255,255,.75);
  box-shadow: 0 10px 25px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
}

.product-info {
  border-top: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.10);
}

.editorial {
  margin: 16px;
  min-height: 76vh;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  color: #f5f2eb;
  background: linear-gradient(135deg, rgba(16,17,20,.88), rgba(0,0,0,.62));
  box-shadow: 0 28px 70px rgba(0,0,0,.19), inset 0 1px 0 rgba(255,255,255,.14);
  -webkit-backdrop-filter: blur(30px) saturate(1.25);
  backdrop-filter: blur(30px) saturate(1.25);
}

.editorial-art {
  background: rgba(236,233,225,.28);
  border-left: 1px solid rgba(255,255,255,.20);
}

/* SHOP GLASS */
.shop-controls {
  top: 62px;
  margin: 0 16px 14px;
  border: 1px solid var(--glass-line);
  border-radius: 18px;
  background: rgba(232,229,220,.58);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  backdrop-filter: blur(28px) saturate(1.35);
}

.filter-btn,
.drawer-actions a,
.drawer-actions button {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.62);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.filter-btn { border-radius: 999px; }

/* PRODUCT GLASS */
.product-page {
  margin: 16px;
  gap: 14px;
  border: 0;
}

.product-gallery,
.product-panel {
  border-radius: 24px;
  border: 1px solid var(--glass-line) !important;
  overflow: hidden;
}

.product-panel {
  padding: 58px 34px 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.34), rgba(255,255,255,.08));
}

.gallery-image {
  border-color: rgba(255,255,255,.50);
}

/* One glass track; the chosen size becomes a filled pill inside it.
   No dividers, so no stray hairline on the last button. */
.size-options {
  border-radius: 14px;
  border: 1px solid rgba(11,11,11,.28);
  background: rgba(16,18,21,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.44);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
}

.size-btn {
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  /* Losing the pill: go dark immediately, the pill is already leaving. */
  transition: color .16s ease, background .16s ease;
}

/* Gaining the pill: hold the dark label until the pill is actually underneath,
   otherwise the text turns bone-white over a light track and looks like it
   blinks out for a moment. */
.size-btn.is-selected {
  transition: color .18s ease .17s, background .16s ease;
}

/* Hover tint must never touch the selected one — it would paint over the pill. */
@media (hover: hover) and (pointer: fine) {
  .size-btn:not(.is-selected):hover { background: rgba(11,11,11,.07); }
}


/* The pill itself: one object that slides between the buttons.
   Deliberately NO backdrop-filter here — re-sampling a blurred backdrop on every
   frame of a moving element is what makes this stutter on 60Hz phones. The fill
   is opaque, so nothing is lost visually. Width is never animated either
   (it would force layout each frame); only transform moves. */
.size-thumb {
  position: absolute;
  z-index: 0;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 0;
  border-radius: 10px;
  pointer-events: none;
  background: linear-gradient(135deg, #16181b, #0a0b0c);
  box-shadow: 0 6px 16px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.16);
  will-change: transform;
  transform: translateZ(0);
}

.size-options.is-ready .size-thumb {
  transition: transform .42s cubic-bezier(.32, .72, 0, 1);
}

@media (prefers-reduced-motion: reduce) {
  .size-options.is-ready .size-thumb { transition: none; }
  .size-btn, .size-btn.is-selected { transition: color .12s ease, background .12s ease; }
}

.add-btn:hover {
  color: #060708;
  background: rgba(215,255,53,.82);
  border-color: rgba(255,255,255,.42);
}

/* DRAWERS / SEARCH */
.search-overlay {
  background: linear-gradient(135deg, rgba(242,239,232,.78), rgba(220,218,211,.58));
  border-color: rgba(255,255,255,.70);
  box-shadow: -24px 0 70px rgba(0,0,0,.18), inset 1px 0 0 rgba(255,255,255,.75);
  -webkit-backdrop-filter: blur(34px) saturate(1.35);
  backdrop-filter: blur(34px) saturate(1.35);
}

.cart-drawer {
  color: #f5f2eb;
  background: linear-gradient(145deg, rgba(21,22,25,.91), rgba(4,5,7,.78));
  border-color: rgba(255,255,255,.16);
  box-shadow: -28px 0 80px rgba(0,0,0,.34), inset 1px 0 0 rgba(255,255,255,.17);
  -webkit-backdrop-filter: blur(34px) saturate(1.28);
  backdrop-filter: blur(34px) saturate(1.28);
}

.cart-drawer .drawer-head,
.cart-drawer .drawer-footer,
.cart-drawer .drawer-item {
  border-color: rgba(255,255,255,.16);
}

.cart-drawer .drawer-note,
.cart-drawer .drawer-item p,
.cart-drawer .empty-cart p {
  color: rgba(245,242,235,.62);
}

.cart-drawer .drawer-item img {
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  mix-blend-mode: normal;
}

.cart-drawer .qty,
.cart-drawer .drawer-actions a,
.cart-drawer .drawer-actions button,
.cart-drawer .remove-item {
  color: #f5f2eb;
  border-color: rgba(255,255,255,.26);
}

.cart-drawer .drawer-actions .checkout {
  background: linear-gradient(135deg, rgba(255,255,255,.17), rgba(255,255,255,.07));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.drawer-head,
.search-head,
.drawer-footer,
.search-form {
  border-color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.08);
}

.drawer-item,
.search-result {
  border-color: rgba(255,255,255,.56);
}

.cart-page,
.content-wrap {
  margin: 16px;
  border-radius: 30px;
}

.cart-summary {
  border-radius: 22px;
}

.cart-summary .add-btn {
  color: #0a0a0a;
  background: rgba(255,255,255,.72);
  border-color: rgba(255,255,255,.78);
}

.checkout-summary {
  border-radius: 22px;
}

.checkout-summary .add-btn {
  color: #0a0a0a;
  background: rgba(255,255,255,.72);
  border-color: rgba(255,255,255,.78);
}

.checkout-summary .add-btn.ghost {
  color: #f5f2eb;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.45);
}

.pay-method {
  border-radius: 18px;
  border-color: rgba(11,11,11,.34);
  background: rgba(16,18,21,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 8px 22px rgba(10,11,12,.07);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
}

/* Checkout inputs sit on a busy pattern — darken the glass so the boxes read. */
.checkout-form .field input,
.checkout-form .field textarea,
.checkout-form .field select {
  color: var(--ink);
  background: rgba(16,18,21,.085);
  border: 1px solid rgba(11,11,11,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.40);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.checkout-form .field input::placeholder,
.checkout-form .field textarea::placeholder {
  color: rgba(11,11,11,.44);
  font-size: 11px;
  letter-spacing: .02em;
}

.checkout-form .field input:hover,
.checkout-form .field textarea:hover,
.checkout-form .field select:hover {
  border-color: rgba(11,11,11,.46);
  background: rgba(16,18,21,.11);
}

.checkout-form .field input:focus,
.checkout-form .field textarea:focus,
.checkout-form .field select:focus {
  outline: 0;
  border-color: rgba(11,11,11,.72);
  background: rgba(255,255,255,.50);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 0 0 3px rgba(215,255,53,.42);
}

.checkout-form .field.has-error input,
.checkout-form .field.has-error textarea,
.checkout-form .field.has-error select {
  border-color: #b3261e;
  background: rgba(179,38,30,.07);
}

.add-btn.ghost {
  color: #0a0a0a;
  background: rgba(255,255,255,.42);
  border-color: rgba(0,0,0,.28);
  box-shadow: none;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.size-diagram {
  border-radius: 24px;
}

.size-table th {
  color: #f5f2eb;
  background: rgba(8,9,11,.82);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.field input,
.field textarea,
.field select {
  padding-inline: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 10px;
}

/* SMOKED LIQUID GLASS MENU + FOOTER */
.mobile-menu,
.footer {
  color: #f4f1eb;
  background: linear-gradient(135deg, rgba(14,15,18,.90), rgba(0,0,0,.72));
  -webkit-backdrop-filter: blur(34px) saturate(1.25);
  backdrop-filter: blur(34px) saturate(1.25);
}

.mobile-menu {
  border-bottom: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 70px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.12);
}

.mobile-menu-pattern {
  opacity: .55;
  filter: invert(1);
}

.footer {
  margin: 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  box-shadow: 0 -15px 50px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.14);
}

.footer-mark img {
  filter: invert(1);
}

.overlay {
  background: rgba(8,9,11,.25);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

/* ROUND TWO — CLEANER ENTRY + FULLY TRANSPARENT PRODUCT STAGES */
.home-page .hero {
  min-height: calc(100svh - 137px);
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.015));
  -webkit-backdrop-filter: blur(2px) saturate(1.03);
  backdrop-filter: blur(2px) saturate(1.03);
}

.home-page .hero::before {
  content: "DROP 001";
  position: absolute;
  z-index: 6;
  top: 24px;
  left: 28px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .24em;
  opacity: .64;
}

.home-page .hero-copy {
  top: 9%;
  left: 4vw;
  right: 4vw;
}

.home-page .hero-title {
  font-size: clamp(76px, 13.2vw, 190px);
  line-height: .78;
  letter-spacing: -.055em;
}

.home-page .hero-product-stage {
  width: min(50vw, 690px);
  height: 84%;
  bottom: 0;
}

.home-page .hero-solo {
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.10));
}

.home-page .hero-side,
.home-page .orbit-badge,
.home-page .hero-scroll {
  display: none;
}

.home-page .hero-cta {
  left: 28px;
  bottom: 26px;
}

.product-card,
.shop-product-grid .product-card,
.collection-card,
.product-gallery {
  background: rgba(255,255,255,.025) !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.product-media,
.gallery-image {
  background: transparent !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.product-media img,
.gallery-image img,
.collection-card img,
.hero-solo {
  mix-blend-mode: normal;
}

.product-info {
  background: rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  backdrop-filter: blur(16px) saturate(1.12);
}

@keyframes sitePatternDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 0 0, 0 0, 0 0, 220px -140px; }
}

@keyframes glassPatternDrift {
  from { background-position: 0 0; }
  to { background-position: 220px -140px; }
}

@keyframes chromeSweep {
  0%, 18% { background-position: 0 0, 135% 0; filter: brightness(.94); }
  52% { background-position: 0 0, -35% 0; filter: brightness(1.28); }
  82%, 100% { background-position: 0 0, -90% 0; filter: brightness(1); }
}

@keyframes logoIdle {
  0%, 100% { transform: rotateX(-3deg) rotateY(-6deg) translateY(0); }
  50% { transform: rotateX(3deg) rotateY(6deg) translateY(-6px); }
}

@keyframes logoEnter {
  0% { transform: rotateX(0) rotateY(0) scale(1); filter: blur(0); }
  55% { transform: rotateX(-8deg) rotateY(210deg) scale(1.18); filter: blur(0); }
  100% { transform: rotateX(0) rotateY(520deg) scale(6.5); filter: blur(2px); }
}

@media (max-width: 1024px) {
  .logo-wrap,
  .coin-wrap { width: min(72vw, 590px); }

  .site-header { background: rgba(235,232,224,.54); }

  .product-page { gap: 12px; }
}

@media (max-width: 700px) {
  :root { --panel-radius: 18px; }

  body {
    background-size: 100% 100%, 100% 100%, 100% 100%, 84px 51px;
    background-attachment: scroll, scroll, scroll, scroll;
  }

  .intro-pattern,
  .mobile-menu-pattern {
    background-size: 84px 51px;
  }

  .intro-kicker { top: 17%; }

  .logo-wrap,
  .coin-wrap {
    width: min(88vw, 450px);
  }

  .header-logo { width: 118px; }

  .logo-shadow,
  .coin-shadow.logo-shadow {
    bottom: -10%;
    opacity: .11;
    filter: blur(10px);
  }

  .intro .enter-btn {
    margin-top: 44px;
    padding: 12px 15px;
  }

  .intro-hint { bottom: 14%; }

  .hero,
  .page-head,
  .manifesto,
  .cart-page,
  .checkout-page,
  .content-wrap,
  .product-page,
  .editorial {
    margin: 10px;
    border-radius: 22px;
  }

  /* The desktop 42vh floor left a dead band above the title on phones. */
  .page-head {
    min-height: 0;
  }

  .hero {
    min-height: calc(100svh - 106px);
  }

  .home-page .hero::before {
    top: 18px;
    left: 18px;
    font-size: 7px;
  }

  .home-page .hero-copy {
    top: 9%;
    left: 10px;
    right: 10px;
  }

  .home-page .hero-title {
    font-size: 17vw;
    line-height: .84;
  }

  .home-page .hero-product-stage {
    width: min(76vw, 420px);
    height: 76%;
    bottom: 4%;
  }

  .home-page .hero-cta,
  [dir="rtl"] .home-page .hero-cta {
    left: 50%;
    right: auto;
    bottom: 16px;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .hero-side {
    padding: 10px;
    border-radius: 12px;
  }

  .section-head {
    margin: 10px;
    border-radius: 18px;
  }

  .collection-grid {
    padding: 0 10px 10px;
  }

  .collection-card,
  .collection-card:nth-child(2),
  .collection-card:last-child {
    margin-bottom: 10px;
    border: 1px solid var(--glass-line) !important;
    border-radius: 20px;
  }

  .product-grid {
    gap: 10px;
    padding: 0 10px 10px;
  }

  .product-card,
  .shop-product-grid .product-card {
    border-radius: 19px;
  }

  .shop-controls {
    top: 54px;
    margin: 0 10px 10px;
    border-radius: 15px;
  }

  .product-page {
    gap: 10px;
  }

  .product-gallery,
  .product-panel {
    border-radius: 20px;
  }

  .product-panel {
    padding: 38px 15px 45px;
  }

  .footer {
    margin: 10px;
    border-radius: 24px;
  }

.mobile-menu {
  inset: 25px 8px 8px;
  padding-top: 76px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
}
.mobile-menu-close {
  position: absolute; z-index: 5; top: 16px; right: 16px;
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.45); border-radius: 50%;
  color: #f5f2eb; background: rgba(255,255,255,.08);
  font-size: 24px; line-height: 1;
}
[dir="rtl"] .mobile-menu-close { right: auto; left: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .logo-wrap:not(.is-tracking) .logo-sculpt,
  .logo-glare,
  .intro-pattern,
  .mobile-menu-pattern { animation: none !important; }
}

/* ROUND THREE — SILKIER MOTION + POLISHED MICRO-INTERACTIONS */
:root {
  --motion-silk: cubic-bezier(.16, 1, .3, 1);
  --motion-cinema: cubic-bezier(.76, 0, .18, 1);
}

/* Pointer input is damped in JavaScript, so the chrome follows without stepping. */
.cursor-ring.is-active {
  width: 52px;
  height: 52px;
  background: transparent;
  border-color: #fff;
}

.logo-sculpt,
.coin.logo-sculpt {
  transition: none;
}

.logo-shadow,
.coin-shadow.logo-shadow {
  transition: none;
  will-change: transform, opacity;
}

/* Calm one-second handoff from Intro to Home. */
.intro {
  opacity: 1;
  filter: blur(0);
  transform: translateZ(0);
  transition:
    clip-path .92s var(--motion-cinema),
    opacity .66s ease .18s,
    filter .92s var(--motion-silk),
    visibility 0s linear 0s;
  will-change: clip-path, opacity, filter;
}

.intro.is-leaving {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  filter: blur(7px);
  visibility: hidden;
  pointer-events: none;
  transition:
    clip-path .92s var(--motion-cinema),
    opacity .66s ease .18s,
    filter .92s var(--motion-silk),
    visibility 0s linear .92s;
}

.intro.entering .logo-sculpt {
  animation: logoEnterPolished 1s var(--motion-cinema) forwards;
}

.intro.entering .logo-shadow {
  animation: introShadowExit .72s ease-out forwards;
}

.intro.entering .enter-btn,
.intro.entering .intro-kicker,
.intro.entering .intro-hint,
.intro.entering .intro-topline,
.intro.entering .intro-bottomline {
  animation: introCopyExit .46s var(--motion-silk) forwards;
}

.site {
  min-height: 100vh;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.997);
  filter: blur(7px);
  transform-origin: 50% 0;
  transition:
    opacity .76s ease .08s,
    transform .96s var(--motion-silk),
    filter .76s ease .08s,
    visibility 0s linear .96s;
  will-change: opacity, transform, filter;
}

/* ------------------------------------------------------------------
   INTRO -> HOME TRANSITION: PERFORMANCE
   `is-entering` is on <body> for the ~1s the transition runs, then removed.

   1) Ambient animations pause. Nothing visible changes — they are slow
      drifts and they resume the moment the page settles — but it frees the
      main thread during the only second that has to hit frame rate.
      This is safe on every device and every renderer.

   2) `html.fx-lite` additionally drops the full-page blur and the frosted
      chrome for the duration. A full-page `filter` is the classic cause of
      dropped frames on 60Hz mobile GPUs, but it could NOT be confirmed in
      this sandbox (software rasteriser, no GPU — it measured the opposite,
      which software raster explains and a real phone would not).
      So it ships as a switch, not an assumption: compare on a real device.
        ?fx=lite  -> lighter transition
        ?fx=full  -> original transition
      Whichever wins on the 60Hz phone becomes the default.
   ------------------------------------------------------------------ */
body.is-entering {
  --anim-play: paused;
}
body.is-entering .marquee-track,
body.is-entering .hero-solo,
body.is-entering .orbit-badge,
body.is-entering .logo-sculpt,
body.is-entering .site-pattern,
body.is-entering .glass-pattern,
body.is-entering [class*="-pattern"] {
  animation-play-state: paused !important;
}

html.fx-lite .site {
  filter: none;
  transition:
    opacity .76s ease .08s,
    transform .96s var(--motion-silk),
    visibility 0s linear .96s;
  will-change: opacity, transform;
}
html.fx-lite body.is-entering .announcement,
html.fx-lite body.is-entering .site-header {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  filter: none;
  transition:
    opacity .76s ease .08s,
    transform .96s var(--motion-silk),
    filter .76s ease .08s,
    visibility 0s linear 0s;
}

.site.is-hidden.is-visible {
  pointer-events: none;
}

#app {
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity .24s ease, transform .34s var(--motion-silk), filter .24s ease;
}

#app.is-route-leaving {
  opacity: 0;
  transform: translateY(7px);
  filter: blur(4px);
  pointer-events: none;
}

.page {
  animation: none;
}

.site.is-visible .page {
  animation: pageInPolished .82s var(--motion-silk) both;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(.995);
  filter: blur(5px);
  transition:
    opacity .78s ease,
    transform .92s var(--motion-silk),
    filter .78s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.site.is-visible .announcement {
  animation: chromeBarIn .62s var(--motion-silk) both;
}

.site.is-visible .site-header {
  animation: chromeHeaderIn .82s var(--motion-silk) .06s both;
}

.site.is-visible .home-page .hero-copy {
  animation: heroTitleIn .92s var(--motion-silk) .13s both;
}

.site.is-visible .home-page .hero-product-stage {
  animation: heroGarmentIn 1s var(--motion-silk) .18s both;
}

.site.is-visible .home-page .hero-cta {
  animation: heroCtaIn .72s var(--motion-silk) .38s both;
}

.site.is-visible .home-page .hero::before {
  animation: heroLabelIn .68s var(--motion-silk) .28s both;
}

.header-logo {
  transition: transform .55s var(--motion-silk), filter .4s ease;
}

.hero-cta,
.arrow-link,
.enter-btn,
.add-btn,
.filter-btn,
.quick-add {
  -webkit-tap-highlight-color: transparent;
}

.hero-cta b,
.hero-cta > span:last-child,
.collection-info span {
  transition: transform .45s var(--motion-silk);
}

.product-card,
.collection-card,
.gallery-image {
  transition: transform .55s var(--motion-silk), box-shadow .55s ease, border-color .4s ease;
}

.product-media::after,
.gallery-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -30%;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-65%) rotate(12deg);
  background: linear-gradient(100deg, transparent 38%, rgba(255,255,255,.34) 49%, transparent 60%);
  transition: opacity .35s ease, transform .9s var(--motion-silk);
}

.gallery-image {
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .header-logo:hover {
    transform: scale(1.045) rotate(-1.2deg);
  }

  .hero-cta:hover b,
  .hero-cta:hover > span:last-child,
  .collection-card:hover .collection-info span {
    transform: translate(3px, -3px) rotate(5deg);
  }

  .product-card:hover,
  .collection-card:hover {
    z-index: 4;
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.86) !important;
    box-shadow: 0 24px 50px rgba(10,11,12,.10), inset 0 1px 0 rgba(255,255,255,.64);
  }

  .product-media:hover::after,
  .gallery-image:hover::after {
    opacity: .62;
    transform: translateX(65%) rotate(12deg);
  }

  .add-btn:hover,
  .filter-btn:hover,
  .quick-add:hover {
    transform: translateY(-2px);
  }
}

button:active,
a:active {
  opacity: .78;
}

@keyframes logoEnterPolished {
  0% {
    transform: rotateX(var(--rx)) rotateY(var(--ry)) scale(1);
    opacity: 1;
    filter: blur(0) brightness(1);
  }
  34% {
    transform: rotateX(-3deg) rotateY(64deg) scale(1.055);
    opacity: 1;
    filter: blur(0) brightness(1.15);
  }
  72% {
    transform: rotateX(2deg) rotateY(270deg) scale(1.72);
    opacity: .82;
    filter: blur(.4px) brightness(1.22);
  }
  100% {
    transform: rotateX(0) rotateY(420deg) scale(4.6);
    opacity: 0;
    filter: blur(4px) brightness(1.3);
  }
}

@keyframes introShadowExit {
  to { opacity: 0; transform: translateZ(-30px) translate(var(--shadow-x, 0), 18px) scale(.72); }
}

@keyframes introCopyExit {
  to { opacity: 0; transform: translateY(-10px); filter: blur(3px); }
}

@keyframes pageInPolished {
  0% { opacity: 0; transform: translateY(17px) scale(.997); filter: blur(7px); }
  58% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: none; filter: none; }
}

@keyframes chromeBarIn {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: none; }
}

@keyframes chromeHeaderIn {
  from { opacity: 0; transform: translateY(-18px); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: none; }
}

@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: none; }
}

@keyframes heroGarmentIn {
  from { opacity: 0; transform: translateX(-50%) translateY(26px) scale(.955); filter: blur(7px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); filter: none; }
}

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

@keyframes heroLabelIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: .64; transform: none; }
}

@media (max-width: 720px) {
  .site.is-visible .home-page .hero-cta,
  [dir="rtl"] .site.is-visible .home-page .hero-cta {
    animation-name: heroCtaMobileIn;
  }

  @keyframes heroCtaMobileIn {
    from { opacity: 0; transform: translateX(-50%) translateY(14px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-sculpt,
  .coin.logo-sculpt,
  .site,
  #app,
  .page,
  .reveal {
    filter: none !important;
    transform: none !important;
  }

  .hero-product-stage {
    transform: translateX(-50%) !important;
  }
}

/* REQUESTED INTRO RESTORE — centered logo, interaction shadow, original handoff */
.logo-wrap,
.coin-wrap {
  --rx: 0deg;
  --ry: 0deg;
  --gx: 50%;
  --gy: 50%;
}

.logo-wrap:not(.is-tracking) .logo-sculpt {
  animation: none;
}

.logo-shadow,
.coin-shadow.logo-shadow {
  opacity: 0;
  transition: opacity .34s ease;
}

.logo-wrap.is-tracking .logo-shadow,
.coin-wrap.is-tracking .coin-shadow.logo-shadow {
  opacity: .14;
}

/* Restore the previous Intro-to-Home transition. */
.intro {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
  transition: clip-path 1.1s var(--ease-in), visibility 1.1s;
  will-change: clip-path;
}

.intro.is-leaving {
  clip-path: inset(0 0 100% 0);
  opacity: 1;
  visibility: hidden;
  filter: none;
  transition: clip-path 1.1s var(--ease-in), visibility 1.1s;
}

.intro.entering .logo-sculpt {
  animation: logoEnter .88s var(--ease-in) forwards;
}

.intro.entering .logo-shadow {
  animation: none;
}

.intro.entering .enter-btn,
.intro.entering .intro-kicker,
.intro.entering .intro-hint {
  animation: fadeOut .35s ease forwards;
}

.intro.entering .intro-topline,
.intro.entering .intro-bottomline {
  animation: none;
}

.site,
.site.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  filter: none;
  transition: opacity .4s ease;
  will-change: auto;
}

.site.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


/* REFERENCE REST POSE — front-facing, centered, then fully interactive. */
.intro-stage > .logo-wrap {
  align-self: center;
  margin-inline: auto;
  left: auto;
  right: auto;
}

.logo-sculpt,
.coin.logo-sculpt {
  transform-origin: 50% 50%;
}

/* Stack the chrome depth directly behind the face at rest. Rotating the
   complete stack still reveals genuine depth without leaving it side-on. */
.logo-depth {
  transform: translate3d(0, 0, -20px);
  transform-style: preserve-3d;
}

.logo-depth::before { transform: translateZ(-7px); }
.logo-depth::after { transform: translateZ(-14px); }

/* ============================================================
   ORDER PLACED — thank-you page
   The tick is drawn with SVG stroke animation, not a GIF:
   it stays sharp at any size and weighs nothing.
   ============================================================ */
.thanks-wrap {
  max-width: 620px; margin: 0 auto; padding: 58px 26px 10px; text-align: center;
}
.thanks-wrap .eyebrow { margin: 0 0 14px; }

.thanks-title {
  margin: 0; font-family: Impact, "Arial Black", sans-serif; font-weight: 400;
  font-size: clamp(38px, 7.6vw, 74px); line-height: .94; letter-spacing: -.035em;
  text-transform: uppercase;
}
[dir="rtl"] .thanks-title { font-family: Tahoma, Arial, sans-serif; font-weight: 900; }

/* --- the tick --- */
.thanks-tick { margin: 30px auto 26px; width: 104px; height: 104px; }
.thanks-tick svg { width: 100%; height: 100%; overflow: visible; }

.thanks-tick .tick-ring,
.thanks-tick .tick-mark {
  fill: none; stroke: var(--ink); stroke-linecap: round; stroke-linejoin: round;
}
.thanks-tick .tick-ring { stroke-width: 3; stroke-dasharray: 277; stroke-dashoffset: 277;
  transform: rotate(-90deg); transform-origin: 50% 50%;
  animation: tickRing .62s cubic-bezier(.65,0,.35,1) .12s forwards; }
.thanks-tick .tick-mark { stroke-width: 6; stroke-dasharray: 66; stroke-dashoffset: 66;
  animation: tickMark .34s cubic-bezier(.65,0,.35,1) .6s forwards; }

@keyframes tickRing { to { stroke-dashoffset: 0; } }
@keyframes tickMark { to { stroke-dashoffset: 0; } }

/* one soft pulse once the mark lands */
.thanks-tick::after {
  content: ""; display: block; width: 104px; height: 104px; margin-top: -104px;
  border-radius: 50%; background: var(--lime); opacity: 0; transform: scale(.6);
  animation: tickPulse .85s cubic-bezier(.16,1,.3,1) .74s forwards;
}
@keyframes tickPulse {
  0%   { opacity: .45; transform: scale(.62); }
  100% { opacity: 0;   transform: scale(1.75); }
}

/* --- whatsapp line --- */
.thanks-contact {
  margin: 0 0 34px; display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 700; line-height: 1.35;
}
.thanks-contact .wa-mark { flex: 0 0 auto; width: 21px; height: 21px; }

/* --- receipt --- */
.thanks-card {
  text-align: start; border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 24px; background: rgba(255,255,255,.35);
}
.thanks-no { display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.thanks-no span { font-size: 9px; font-weight: 800; letter-spacing: .16em; color: var(--muted); }
.thanks-no b { font-family: Impact, sans-serif; font-weight: 400; font-size: 25px; letter-spacing: .01em; }

.thanks-items { margin: 15px 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.thanks-items li { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; font-size: 13px; }
.thanks-items span { flex: 0 0 auto; font-size: 10px; color: var(--muted); }

.thanks-total { display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding-top: 15px; border-top: 1px solid var(--line); }
.thanks-total span { font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.thanks-total b { font-size: 21px; font-variant-numeric: tabular-nums; }
.thanks-ship { margin: 12px 0 0; font-size: 10px; color: var(--muted); }

.thanks-note { margin: 20px auto 0; max-width: 46ch; font-size: 11px; line-height: 1.7; color: var(--muted); }

.thanks-actions { margin: 26px 0 4px; display: grid; gap: 11px; }
.thanks-actions .add-btn { margin: 0; }

@media (max-width: 900px) {
  .thanks-wrap { padding: 34px 16px 4px; }
  .thanks-tick { width: 88px; height: 88px; margin: 24px auto 22px; }
  .thanks-tick::after { width: 88px; height: 88px; margin-top: -88px; }
  .thanks-contact { font-size: 14px; margin-bottom: 28px; }
  .thanks-card { padding: 19px 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .thanks-tick .tick-ring, .thanks-tick .tick-mark { animation-duration: .001ms; animation-delay: 0s; }
  .thanks-tick::after { animation: none; opacity: 0; }
}

/* ===== Intro hint tweak: smaller · tighter tracking · lower ===== */
.intro-hint {
  bottom: 10%;
  font-size: 7.5px;
  letter-spacing: .16em;
}

/* ===== Obsidian look: no hard depth stack — a soft cast shadow of the mark instead ===== */
.logo-depth,
.coin.logo-sculpt .logo-depth {
  display: none;
}

/* Soft silhouette shadow behind the logo: same mark shape, offset down-right,
   blurred, and it follows --shadow-x/--shadow-y so it slides opposite the tilt
   like a real cast shadow. Never overlaps the letters (offset + blur). */
.logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask: url("assets/logo-mark.png?v=20260819logo") center / contain no-repeat;
  mask: url("assets/logo-mark.png?v=20260819logo") center / contain no-repeat;
  background: rgba(6, 7, 8, .42);
  filter: blur(7px);
  transform: translate(calc(4px + var(--shadow-x, 0px)), calc(6px + var(--shadow-y, 0px)));
  will-change: transform;
}

.intro.entering .logo-wrap::before {
  animation: fadeOut .35s ease forwards;
}

/* ===========================================================================
   FINAL ORDER MOTION
   Yellow delivery pass -> green "ORDER PLACED" state on CONFIRM ORDER only.
   The cart's CHECKOUT buttons remain immediate navigation buttons.
   =========================================================================== */
.order-submit-motion.checkout-motion {
  --checkout-yellow: #d7ff35;
  --checkout-green: #35eb63;
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  isolation: isolate;
  overflow: hidden !important;
  padding-inline: 16px !important;
  color: #f7f4ed !important;
  background: linear-gradient(135deg, #101214, #060708) !important;
  border-color: rgba(255,255,255,.62) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 0 0 rgba(255,224,0,0) !important;
  cursor: default;
  transition: border-color .16s ease, box-shadow .16s ease, color .16s ease !important;
}

/* This layer gives the success state a clean green gradient instead of a hard
   colour jump. It sits behind the text and only begins after yellow is gone. */
.order-submit-motion.checkout-motion::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(105deg, #a9ff7f 0%, #55f56c 45%, #13c54d 100%);
  transition: opacity .16s ease-out;
}

.order-submit-motion.checkout-motion:hover {
  transform: none !important;
  color: #f7f4ed !important;
  background: linear-gradient(135deg, #101214, #060708) !important;
}

.checkout-motion__label,
.checkout-motion__sweep,
.checkout-motion__edge,
.checkout-motion__road,
.checkout-motion__truck,
.checkout-motion__success {
  position: absolute;
  pointer-events: none;
}

.checkout-motion__label {
  z-index: 5;
  inset: 0;
  display: grid;
  place-items: center;
  white-space: nowrap;
}

.checkout-motion__sweep {
  z-index: 1;
  inset: 0;
  opacity: 0;
  /* A fixed light field is smoother than changing the element's width/position.
     The previous travelling gradient could visibly jump when it reached its end. */
  background:
    radial-gradient(ellipse 62% 145% at 50% 50%, rgba(243,255,175,.94) 0%, rgba(215,255,53,.80) 42%, rgba(155,191,27,.36) 67%, transparent 100%),
    linear-gradient(90deg, rgba(181,217,35,.04), rgba(215,255,53,.25) 50%, rgba(181,217,35,.04));
  transform: translateZ(0);
  will-change: opacity;
  backface-visibility: hidden;
}

/* Matching dark falloffs on both sides keep the brand-lime track contained.
   The truck is intentionally above them, so it stays sharp and readable. */
.checkout-motion__edge {
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 21%;
  opacity: 0;
}

.checkout-motion__edge--left {
  left: 0;
  background: linear-gradient(90deg, rgba(6,7,8,.98) 0%, rgba(6,7,8,.78) 42%, rgba(6,7,8,0) 100%);
}

.checkout-motion__edge--right {
  right: 0;
  background: linear-gradient(270deg, rgba(6,7,8,.98) 0%, rgba(6,7,8,.78) 42%, rgba(6,7,8,0) 100%);
}

.checkout-motion__road {
  z-index: 2;
  top: calc(50% + 12px);
  left: 12%;
  right: 12%;
  height: 2px;
  opacity: 0;
  background: repeating-linear-gradient(90deg, var(--checkout-yellow) 0 8px, transparent 8px 15px);
  filter: drop-shadow(0 0 4px rgba(215,255,53,.88));
}

.checkout-motion__truck {
  z-index: 4;
  top: 50%;
  left: -20%;
  width: 54px;
  height: 35px;
  opacity: 0;
  color: #e9e6df;
  transform: translate(-100%, -54%) scale(.76);
  filter: drop-shadow(0 2px 1px rgba(0,0,0,.75)) drop-shadow(0 0 3px rgba(233,230,223,.42));
}

.checkout-motion__success {
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  opacity: 0;
  color: #07110a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .10em;
  white-space: nowrap;
  transform: scale(.7);
}

.checkout-motion__success svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-submit-motion.checkout-motion.is-running {
  border-color: var(--checkout-yellow) !important;
  box-shadow: inset 0 0 0 1px rgba(243,255,175,.72), 0 0 11px rgba(215,255,53,.82), 0 0 27px rgba(215,255,53,.30) !important;
}

/* Tighter timing: no empty pause between the label, truck and success state. */
.checkout-motion.is-running .checkout-motion__label {
  animation: checkoutLabelOut .20s cubic-bezier(.45,0,.2,1) .08s forwards;
}

.checkout-motion.is-running .checkout-motion__sweep {
  animation: checkoutSweep .48s cubic-bezier(.22,1,.36,1) .12s forwards;
}

.checkout-motion.is-running .checkout-motion__edge {
  animation: checkoutEdgeIn .18s ease .13s forwards;
}

.checkout-motion.is-running .checkout-motion__road {
  /* Keep the road moving until the success state hides it; never let it stop early. */
  animation: checkoutRoadAppear .16s ease .22s forwards, checkoutRoadMove .26s linear .38s infinite;
}

/* A softer brake/rebound: it reads like real weight, not a frame jump. */
.checkout-motion.is-running .checkout-motion__truck {
  animation: checkoutTruckRide 1.80s linear .20s forwards;
}

.order-submit-motion.checkout-motion.is-success {
  color: #07110a !important;
  background: #24dd55 !important;
  border-color: #d1ffcf !important;
  box-shadow: inset 0 0 0 1px rgba(239,255,226,.86), 0 0 12px rgba(53,235,99,.90), 0 0 30px rgba(53,235,99,.38) !important;
}

.order-submit-motion.checkout-motion.is-success::after {
  opacity: 1;
}

/* Kill every brand-lime layer on the exact frame the green state lands.
   The earlier version faded these layers, which let yellow overlap green. */
.checkout-motion.is-success .checkout-motion__road,
.checkout-motion.is-success .checkout-motion__truck,
.checkout-motion.is-success .checkout-motion__sweep,
.checkout-motion.is-success .checkout-motion__edge {
  opacity: 0 !important;
  visibility: hidden;
  animation: none !important;
  transition: none !important;
}

.checkout-motion.is-success .checkout-motion__success {
  animation: checkoutSuccessPop .38s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes checkoutLabelOut {
  0% { opacity: 1; transform: scale(1); filter: blur(0); }
  100% { opacity: 0; transform: scale(.84); filter: blur(2px); }
}

@keyframes checkoutSweep {
  0% { opacity: 0; }
  45% { opacity: .72; }
  /* It stays stable from here until the truck exits; success removes it. */
  100% { opacity: .92; }
}

@keyframes checkoutEdgeIn {
  to { opacity: 1; }
}

@keyframes checkoutRoadAppear {
  to { opacity: 1; }
}

@keyframes checkoutRoadMove {
  to { background-position: -45px 0; }
}

@keyframes checkoutTruckRide {
  0% {
    left: -20%; opacity: 0; transform: translate(-100%, -54%) scale(.76);
    animation-timing-function: cubic-bezier(.18,.82,.24,1);
  }
  10% { opacity: 1; }
  /* It eases naturally into the reference position. */
  48% {
    left: calc(100% - 54px); opacity: 1; transform: translate(-100%, -54%) scale(1);
    animation-timing-function: cubic-bezier(.38,0,.56,1);
  }
  /* Slow, short brake rebound — deliberately much smaller than before. */
  65% {
    left: calc(100% - 66px); opacity: 1; transform: translate(-100%, -54%) scale(.965);
    /* One uninterrupted forward curve from here to the exit: no stop keyframe. */
    animation-timing-function: cubic-bezier(.20,.72,.42,1);
  }
  100% { left: 124%; opacity: 0; transform: translate(-100%, -54%) scale(.75); }
}

@keyframes checkoutSuccessPop {
  0% { opacity: 0; transform: scale(.68); }
  70% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .order-submit-motion.checkout-motion,
  .order-submit-motion.checkout-motion * {
    animation-duration: .001ms !important;
    animation-delay: 0s !important;
    transition-duration: .001ms !important;
  }

  .checkout-motion.is-success .checkout-motion__success {
    opacity: 1;
    transform: none;
  }
}

/* ===========================================================================
   PRODUCT CONTROL DASHBOARD STATES
   Price/discount/stock values come from the private Google Sheet catalog.
   =========================================================================== */
.product-price-line {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.product-price-line .price-now { font: inherit; font-weight: 900; }
.product-price-line .price-old {
  color: rgba(11,11,11,.48);
  font-size: .76em;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.product-price-line .price-off {
  padding: 3px 6px;
  border: 1px solid rgba(11,11,11,.25);
  color: #0b0b0b;
  background: rgba(215,255,53,.68);
  font-size: .62em;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
}
.product-card.is-sold-out .product-media img { opacity: .48; filter: grayscale(1); }
.product-card.is-sold-out .product-tag { color: #f5f2eb; background: #111; }
.quick-add:disabled,
.add-btn.is-disabled,
.add-btn:disabled {
  cursor: not-allowed;
  color: rgba(245,242,235,.62) !important;
  background: rgba(11,11,11,.72) !important;
  border-color: rgba(255,255,255,.22) !important;
  opacity: .72;
}
.size-btn.is-unavailable,
.size-btn:disabled {
  position: relative;
  cursor: not-allowed;
  color: rgba(11,11,11,.34);
  text-decoration: none;
  opacity: .72;
}
/* Same footprint as the original text strike, just diagonal and a touch
   thicker. It crosses the M only — never the whole size button. */
.size-btn.is-unavailable::before,
.size-btn:disabled::before {
  content: "";
  position: absolute;
  top: 49%;
  left: 50%;
  width: 16px;
  height: 2px;
  margin-left: -8px;
  border-radius: 99px;
  background: currentColor;
  transform: rotate(-16deg);
}
/* Keep the small SOLD OUT label; it explains the crossed size without adding
   another large visual element. */
.size-btn.is-unavailable::after,
.size-btn:disabled::after {
  content: "SOLD OUT";
  position: absolute;
  left: 50%;
  bottom: 3px;
  color: #f0897f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-50%);
  white-space: nowrap;
}
.stock-line.is-sold-out .stock-dot {
  background: #a3312b;
  box-shadow: 0 0 0 3px rgba(163,49,43,.15);
}
.product-panel .product-price-line { margin: 12px 0 35px; }
.product-card .product-price-line { margin: 0; }
/* =============================================================================
   LIQUID GLASS v12 — moving oval pill ONLY (2026-09-01, owner-approved)
   Owner: the glow pulse is good, but its fade-out was too abrupt — it needs
   time to fade. Changes:
     - pulse keyframes: fast rise (30% of 1s), then a LONG smooth decay
       (~0.7s) down to the resting glow — the visible fade the owner wants
     - the keyframe's end value equals the element's resting value, so when
       the class is removed the state is already there: no snap at all
     - class removal pushed to 1100ms (after the 1s animation ends)
   ============================================================================= */

/* Selected letter keeps its BLACK color — no flip to bone. */
.size-btn.is-selected {
  color: inherit;
  text-shadow: 0 1px 2px rgba(255,255,255,.24);
}

/* The moving capsule: see-through smoked glass (v6 colors), oval. */
.size-thumb {
  --sheen-x: 0px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(180deg,
    rgba(116,122,133,.30),
    rgba(84,90,100,.36) 55%,
    rgba(56,61,70,.44));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.38),
    inset 2px 0 3px -2px rgba(255,80,100,.26),
    inset -2px 0 3px -2px rgba(90,150,255,.28),
    0 5px 12px rgba(0,0,0,.16),
    0 1px 3px rgba(0,0,0,.12);
  -webkit-backdrop-filter: blur(7px) saturate(1.35);
  backdrop-filter: blur(7px) saturate(1.35);
}

/* Faint static top sheen. */
.size-thumb::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 10%;
  height: 26%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,0));
  filter: blur(2px);
  opacity: .45;
  pointer-events: none;
}

/* MOVING LIGHT PATCH: soft blob, clipped by capsule edge, with its own
   resting glow (opacity .7, brightness 1). */
.size-thumb::after {
  content: "";
  position: absolute;
  top: -70%;
  bottom: -70%;
  left: 8%;
  right: -8%;
  opacity: .7;
  pointer-events: none;
  background: radial-gradient(52% 56% at 50% 38%,
    rgba(255,255,255,.32),
    rgba(255,255,255,.12) 56%,
    rgba(255,255,255,0) 74%);
  transform: translateX(var(--sheen-x, 0px));
  transition: transform .42s cubic-bezier(.32,.72,0,1), opacity .45s ease, filter .45s ease;
}

/* GLOW PULSE with a long soft decay: fast flash up, then a WIDE tail that
   eases back to the resting glow (starts/ends exactly at rest -- no snap). */
@keyframes sizeGlowPulse {
  0%   { opacity: .7;  filter: brightness(1); }
  30%  { opacity: 1;   filter: brightness(1.6); }
  100% { opacity: .7;  filter: brightness(1); }
}
.size-thumb.is-pulsing::after {
  animation: sizeGlowPulse 1s cubic-bezier(.32,.72,0,1) both;
}

/* No gray mobile flash on the size buttons. */
.size-btn,
.size-options {
  -webkit-tap-highlight-color: transparent;
}

/* Press: the capsule lights a touch from within. */
.size-options:has(.size-btn:active) .size-thumb {
  filter: brightness(1.06);
}

.size-options.is-ready .size-thumb {
  transition: transform .42s cubic-bezier(.32,.72,0,1), filter .18s ease;
}

@media (prefers-reduced-motion: reduce) {
  .size-options.is-ready .size-thumb { transition: none; }
  .size-options.is-ready .size-thumb::after { transition: none; }
  .size-thumb.is-pulsing::after { animation: none; }
  .size-options:has(.size-btn:active) .size-thumb { filter: none; }
}

/* Reduced transparency: frosted/solid (Apple does the same). */
@media (prefers-reduced-transparency: reduce) {
  .size-thumb {
    background: linear-gradient(180deg, rgba(112,118,129,.94), rgba(52,57,66,.96));
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* =============================================================================
   v71.4 — ERROR-PAGE ACTIONS (loaded after styles.css so these win)
   TRY AGAIN: centered above KEEP SHOPPING, text dead-center inside it.
   ============================================================================= */
.thanks-actions--rejected { place-items: center; }
.thanks-actions--rejected .add-btn.try-again-btn {
  width: 74%;
  min-height: 50px;
  margin: 12px auto 4px;
  padding: 12px 20px;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1;
}

/* LANGUAGE WIPE — same transition as the track page. Identical timing/look. */
.wipe {
  position: fixed; inset: 0; z-index: 9500;
  display: grid; place-content: center;
  background: #e6e2d9; /* solid: no backdrop-filter (iOS smear fix) */
  transform: translateY(-101%);
  pointer-events: none;
}
.wipe .w-inner { display: flex; flex-direction: column; align-items: center; }
.wipe img.w-logo { width: 300px; height: auto; }
.wipe.play .w-logo { animation: logoBounce 2.1s ease-in-out 1; }
/* wipe shadow is static now (was: sideways scaleX glitch in Chrome) */
.w-shadow { width: 232px; height: 20px; margin-top: 14px; background: radial-gradient(closest-side, rgba(11,11,11,.42), transparent); opacity: .75; }
@keyframes logoBounce { 0% { transform: translateY(10px); } 16% { transform: translateY(-24px); } 34% { transform: translateY(-30px); } 52% { transform: translateY(9px); } 66% { transform: translateY(-9px); } 80% { transform: translateY(8px); } 100% { transform: translateY(9px); } }
@keyframes logoShadow { 0% { transform: scaleX(1.06); opacity: .8; } 16% { transform: scaleX(.72); opacity: .42; } 34% { transform: scaleX(.66); opacity: .36; } 52% { transform: scaleX(1.09); opacity: .85; } 66% { transform: scaleX(.85); opacity: .55; } 80%, 100% { transform: scaleX(1); opacity: .75; } }
.wipe.cover { animation: wipeDown .8s var(--ease-in) forwards; pointer-events: all; }
.wipe.leave { animation: wipeUp 1s var(--ease) forwards; pointer-events: all; }
@keyframes wipeDown { from { transform: translateY(-101%); } to { transform: translateY(0); } }
@keyframes wipeUp { from { transform: translateY(0); } to { transform: translateY(-101%); } }
/* Panels vanish instantly under a wipe (language or route) — no slide-out. */
body.panels-instant .mobile-menu,
body.panels-instant .mobile-menu *,
body.panels-instant .cart-drawer,
body.panels-instant .search-overlay,
body.panels-instant #overlay { transition: none !important; }
/* Deep-link bypass: landing straight on #/track skips the intro with no animation. */
body.skip-intro #intro,
body.skip-intro #site { transition: none !important; }

/* ---------- ORDER TRACKING (#/track) — ported from preview-track.html v12 ---------- */
#trk-page button, #trk-page input { font-family: inherit; }
#trk-page html { scroll-behavior: smooth; background: #ddd9d0; }
[dir="rtl"] #trk-page body, [dir="rtl"] #trk-page body button, [dir="rtl"] #trk-page body input { font-family: Tahoma, Arial, sans-serif; }
#trk-page { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; padding: 20px 20px 90px; overflow-x: clip; }
/* (track uses the site reveal — no local override) */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pop { 0% { opacity: 0; transform: scale(.5); } 60% { opacity: 1; transform: scale(1.08); } 100% { opacity: 1; transform: scale(1); } }
#trk-page .hero { padding: 34px 2px 22px; margin: 0; min-height: 0; overflow: visible; border: 0; border-radius: 0; background: none; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
#trk-page .eyebrow { margin: 0 0 10px; font-size: 11px; font-weight: 700; letter-spacing: .18em; color: var(--muted); }
[dir="rtl"] #trk-page .eyebrow { letter-spacing: .02em; }
#trk-page .hero h1 {
  margin: 0; font-family: Impact, "Arial Black", sans-serif; font-weight: 400;
  font-size: clamp(46px, 12vw, 78px); line-height: .88; letter-spacing: -.02em;
}
[dir="rtl"] #trk-page .hero h1 { font-family: Tahoma, Arial, sans-serif; font-weight: 900; letter-spacing: 0; line-height: 1.15; }
#trk-page .hero h1 .h1-top { position: relative; z-index: 2; }
#trk-page .hero h1 .lime { position: relative; z-index: 1; padding: 0 .12em; white-space: nowrap; }
#trk-page .hero h1 .lime::before {
  content: ""; position: absolute; z-index: -1;
  inset: -45% -9% -40% -5%;
  background-image: url("assets/track-scribble.png");
  background-size: 100% 100%; background-repeat: no-repeat;
  transform: rotate(-2deg);
}
[dir="rtl"] #trk-page .hero h1 .lime::before { content: none; }
#trk-page .hero p { margin: 12px 0 0; font-size: 14px; color: var(--muted); max-width: 42ch; }
#trk-page .glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 30px;
  box-shadow: var(--glass-shadow);
  padding: 22px 20px;
}
#trk-page .glass-card.enter { animation: cardIn .55s var(--ease) both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(26px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
#trk-page .field-label { display: block; margin: 0 0 8px 2px; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
[dir="rtl"] #trk-page .field-label { letter-spacing: .02em; font-size: 11px; }
#trk-page .glass-input {
  width: 100%; padding: 15px 14px;
  font-size: 17px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.58);
  outline: 1px solid rgba(11,11,11,.16);
  outline-offset: -1px;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.62), inset 0 -1px 0 rgba(255,255,255,.13);
  transition: background .28s ease, box-shadow .28s ease;
}
[dir="rtl"] #trk-page .glass-input { letter-spacing: .02em; }
#trk-page .glass-input::placeholder { color: rgba(11,11,11,.44); font-weight: 400; text-transform: none; letter-spacing: 0; }
#trk-page .glass-input:focus { outline: 1px solid var(--ink); box-shadow: inset 0 1px 0 rgba(255,255,255,.62), 0 0 0 3px rgba(215,255,53,.55); }
#trk-page .field-error { display: none; margin: 8px 2px 0; font-size: 12px; font-weight: 700; color: #b3261e; }
#trk-page .field-error.show { display: block; animation: fadeUp .3s var(--ease) both; }
#trk-page .shake { animation: shake .4s ease; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-7px)} 50%{transform:translateX(6px)} 75%{transform:translateX(-3px)} }
#trk-page .spinner { width: 16px; height: 16px; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
#trk-page .result-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
#trk-page .result-no { margin: 0; font-size: 12px; font-weight: 900; letter-spacing: .1em; }
#trk-page .result-date { margin: 0; font-size: 11px; color: var(--muted); white-space: nowrap; }
#trk-page .status-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 999px;
  font-size: 11px; font-weight: 900; letter-spacing: .12em;
  border: 1px solid var(--ink);
}
#trk-page .status-badge.pop { animation: pop .45s var(--ease) both; }
[dir="rtl"] #trk-page .status-badge { letter-spacing: .02em; font-size: 13px; }
#trk-page .status-badge .pulse { width: 9px; height: 9px; border-radius: 50%; background: currentColor; flex: none; }
#trk-page .status-badge.live .pulse { animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1)} 50%{opacity:.35; transform:scale(.7)} }
#trk-page .badge-pending { background: transparent; color: var(--ink); }
#trk-page .badge-active { background: var(--ink); color: var(--bone); }
#trk-page .badge-active .pulse { background: var(--lime); }
#trk-page .badge-delivered { background: var(--lime); color: var(--ink); }
#trk-page .badge-cancelled { background: #b3261e; border-color: #b3261e; color: #fff; }
#trk-page .badge-returned { background: var(--muted); border-color: var(--muted); color: #fff; }
#trk-page .status-title {
  margin: 14px 0 4px; font-family: Impact, "Arial Black", sans-serif; font-weight: 400;
  font-size: clamp(30px, 8vw, 44px); line-height: 1; letter-spacing: -.01em;
}
[dir="rtl"] #trk-page .status-title { font-family: Tahoma, Arial, sans-serif; font-weight: 900; }
#trk-page .status-title.rise, #trk-page .status-desc.rise { animation: fadeUp .5s var(--ease) both; }
#trk-page .status-desc { margin: 0; font-size: 13.5px; color: var(--muted); }
#trk-page .status-desc.rise { animation-delay: .08s; }
#trk-page .stepper { margin: 24px 0 6px; }
#trk-page .steps { display: flex; position: relative; }
#trk-page .step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; position: relative; text-align: center; }
#trk-page .step .ball {
  width: 26px; height: 26px; border-radius: 50%; z-index: 2;
  display: grid; place-content: center;
  font-size: 14px; font-weight: 900;
  background: var(--bone-2); border: 1px solid var(--line); filter: grayscale(1); opacity: .55;
  animation: pop .4s var(--ease) both; animation-delay: var(--d, 0s);
}
#trk-page .step .lbl { font-size: 9px; font-weight: 800; letter-spacing: .04em; color: var(--muted); line-height: 1.35; padding: 0 2px; animation: fadeUp .4s var(--ease) both; animation-delay: var(--d, 0s); }
[dir="rtl"] #trk-page .step .lbl { font-size: 10px; letter-spacing: 0; }
#trk-page .step::before {
  content: ""; position: absolute; top: 13px; z-index: 1; height: 2px; background: var(--line);
  inset-inline-start: calc(-50% + 14px); inset-inline-end: calc(50% + 14px);
}
#trk-page .step:first-child::before { display: none; }
#trk-page .step.done .ball { background: var(--ink); border-color: var(--ink); filter: none; opacity: 1; }
#trk-page .step.done .lbl { color: var(--ink); }
#trk-page .step.done::before { background: var(--ink); }
#trk-page .step.now .ball {
  background: var(--lime); border-color: var(--ink); filter: none; opacity: 1;
  box-shadow: 0 0 0 4px rgba(215,255,53,.4);
  animation: pop .4s var(--ease) both, pulse 1.6s ease-in-out .5s infinite;
  animation-delay: var(--d, 0s), .5s;
}
#trk-page .step.now .lbl { color: var(--ink); }
#trk-page .step.now::before { background: var(--ink); }
#trk-page .step:last-child.done .ball, #trk-page .step:last-child.now .ball { background: var(--lime); border-color: var(--ink); color: var(--ink); }
#trk-page .terminal {
  margin: 20px 0 4px; padding: 14px 16px; border-radius: 14px;
  font-size: 13px; font-weight: 700; line-height: 1.6;
  display: flex; gap: 10px; align-items: flex-start;
  animation: fadeUp .45s var(--ease) both; animation-delay: .12s;
}
#trk-page .terminal.bad { background: rgba(179,38,30,.1); border: 1px solid rgba(179,38,30,.45); color: #7c1a14; }
#trk-page .terminal.mut { background: rgba(11,11,11,.06); border: 1px solid var(--line); color: var(--ink); }
#trk-page .terminal .ico { font-size: 18px; line-height: 1.3; }
#trk-page .divider { border: 0; border-top: 1px solid var(--line); margin: 20px 0 16px; }
#trk-page .detail-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 2px; font-size: 13px; }
#trk-page .detail-row .k { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; flex: none; padding-top: 2px; }
[dir="rtl"] #trk-page .detail-row .k { letter-spacing: .02em; font-size: 11px; }
#trk-page .items-box { margin: 4px 0 0; padding: 12px 14px; border-radius: 12px; background: rgba(11,11,11,.05); border: 1px solid var(--line); font-size: 13px; font-weight: 700; line-height: 2; }
#trk-page .due-strip {
  margin: 16px -20px -22px; padding: 16px 20px;
  background: var(--lime); border-radius: 0 0 29px 29px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  animation: dueIn .5s var(--ease) both; animation-delay: .2s;
}
@keyframes dueIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
#trk-page .due-strip .k { font-size: 10px; font-weight: 900; letter-spacing: .1em; }
[dir="rtl"] #trk-page .due-strip .k { letter-spacing: .02em; font-size: 12px; }
#trk-page .due-strip .v { font-size: 22px; font-weight: 900; white-space: nowrap; }
#trk-page .err-mark {
  width: 54px; height: 54px; border-radius: 50%; margin: 6px auto 14px;
  display: grid; place-content: center;
  background: rgba(179,38,30,.12); border: 2px solid #b3261e;
  color: #b3261e; font-size: 26px; font-weight: 900;
  animation: pop .45s var(--ease) both;
}
#trk-page .err-title { margin: 0; text-align: center; font-family: Impact, "Arial Black", sans-serif; font-weight: 400; font-size: 32px; letter-spacing: 0; }
[dir="rtl"] #trk-page .err-title { font-family: Tahoma, Arial, sans-serif; font-weight: 900; }
#trk-page .err-sub { margin: 8px 0 0; text-align: center; font-size: 13px; color: var(--muted); }
#trk-page [hidden] { display: none !important; }
@media (max-width: 380px) {
#trk-page .glass-card { padding: 18px 14px; }
#trk-page .due-strip { margin: 16px -14px -18px; }
#trk-page .step .lbl { font-size: 8px; }
}


/* v75: smooth spinner while waiting for server verification */
.checkout-motion__spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(7, 17, 10, 0.25);
  border-top-color: #07110a;
  border-radius: 50%;
  animation: checkoutSpinnerRotate .75s linear infinite;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}
@keyframes checkoutSpinnerRotate {
  to { transform: rotate(360deg); }
}
