/* Glam By Zikaz — modern storefront matched to logo */

:root {
  --brand: #f58220;
  --brand-dark: #e06e0f;
  --brand-soft: rgba(245, 130, 32, 0.12);
  --ink: #0c0b0a;
  --muted: #5f5a54;
  --line: #ddd9d3;
  --bg: #f1f0ee;
  --bg-soft: #e8e6e3;
  --surface: #ffffff;
  --header-bg: #000000;
  --sale: #c0392b;
  --radius: 0;
  --font: 'Outfit', Outfit, sans-serif;
  --display: 'Outfit', Outfit, sans-serif;
  --max: 1320px;
  --header-main-h: 84px;
  --cat-bar-h: 54px;
  --header-h: calc(var(--header-main-h) + var(--cat-bar-h));
  --ease: cubic-bezier(.22, .61, .36, 1);
}
body:not(:has(.cat-bar)) {
  --cat-bar-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  font-family: 'Outfit', Outfit, sans-serif;
}
body {
  margin: 0;
  font-size: 20px;
  font-family: 'Outfit', Outfit, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 42% at 92% 0%, rgba(245, 130, 32, 0.14), transparent 58%),
    radial-gradient(ellipse 55% 38% at 0% 18%, rgba(12, 11, 10, 0.045), transparent 52%),
    linear-gradient(180deg, #f7f6f4 0%, var(--bg) 28%, #eeecea 100%);
  line-height: 1.55;
  letter-spacing: -0.011em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-synthesis: none;
}

/* Hold the page until Outfit is ready so fallback fonts never flash */
html.fonts-pending body {
  visibility: hidden;
}
html.fonts-ready body {
  visibility: visible;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button, input, select, textarea, option, optgroup {
  font: inherit;
  font-family: 'Outfit', Outfit, sans-serif !important;
  color: inherit;
}
/* Force Outfit across the whole storefront — all browsers */
html, body, button, input, select, textarea, option, optgroup,
h1, h2, h3, h4, h5, h6, p, a, span, li, label, td, th, strong, em, small,
div, section, article, aside, nav, header, footer, main, table, tr, ul, ol, dl, dt, dd {
  font-family: 'Outfit', Outfit, sans-serif !important;
}
button { cursor: pointer; border: none; background: none; }
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="image"]),
select,
textarea {
  color: var(--ink) !important;
  background: #fff !important;
  border: 1.5px solid #b7aba0;
  border-radius: 0;
  appearance: auto;
  -webkit-appearance: auto;
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
  opacity: 1;
}
input::placeholder,
textarea::placeholder {
  color: #8a837a !important;
  opacity: 1;
  -webkit-text-fill-color: #8a837a;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: var(--ink) !important;
  caret-color: var(--ink);
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 9999s ease-out;
}
.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }

/* Top bar */
.topbar {
  background: #000;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1em;
  letter-spacing: 0.04em;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 0;
}
.topbar p { margin: 0; }
.topbar-dismiss {
  color: var(--brand);
  font-size: 0.9em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.topbar-dismiss:hover { color: #fff; }
.topbar[hidden],
.topbar.is-hidden,
html.topbar-dismissed .topbar {
  display: none;
}

/* Header */
.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  font-size: calc(1em - 1px);
  font-family: var(--font);
  overflow: visible;
}

/* Category navbar under main header */
.cat-bar {
  position: relative;
  z-index: 110;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #121110;
  overflow: visible;
}
.cat-bar-inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  min-height: var(--cat-bar-h);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  overflow: visible;
}
.cat-bar-item {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  z-index: 1;
}
.cat-bar-item:hover,
.cat-bar-item:focus-within {
  z-index: 5;
}
.cat-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9em;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.cat-bar-link:hover,
.cat-bar-item:hover > .cat-bar-link,
.cat-bar-item:focus-within > .cat-bar-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.cat-bar-link.is-active,
.cat-bar-item.is-active > .cat-bar-link {
  color: var(--brand);
}
.cat-bar-all {
  color: var(--brand);
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}
.cat-bar-extra {
  color: rgba(255, 255, 255, 0.55);
}
.cat-bar-caret {
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.cat-bar-item:hover .cat-bar-caret,
.cat-bar-item:focus-within .cat-bar-caret {
  transform: rotate(180deg);
}

/* Mega panel: subcategory list (stacked) */
.cat-bar-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: max(200px, min(280px, 86vw));
  padding-top: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 220;
}
.cat-bar-item:hover .cat-bar-panel,
.cat-bar-item:focus-within .cat-bar-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cat-bar-panel-inner {
  background: #161412;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  padding: 12px 14px;
}
.cat-bar-panel-head {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cat-bar-panel-kicker {
  display: none;
}
.cat-bar-panel-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.cat-bar-panel-title-row strong {
  color: #fff;
  font-size: 0.92em;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}
.cat-bar-panel-all {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  text-decoration: none;
  white-space: nowrap;
}
.cat-bar-panel-all:hover,
.cat-bar-panel-all.is-active {
  color: var(--brand);
}
.cat-bar-panel-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cat-bar-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-content: start;
}
.cat-bar-col-title {
  display: block;
  color: #fff;
  font-size: 0.88em;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  padding: 4px 0;
  border-bottom: none;
}
.cat-bar-col-title:hover,
.cat-bar-col-title.is-active {
  color: var(--brand);
  border-bottom-color: transparent;
}
.cat-bar-col-links {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-left: 12px;
  margin-bottom: 2px;
}
.cat-bar-col-link {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9em;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
  letter-spacing: 0.01em;
  padding: 3px 0;
  transition: color 0.15s ease;
}
.cat-bar-col-link:hover,
.cat-bar-col-link.is-active {
  color: var(--brand);
}
.cat-bar-col-empty {
  display: none;
}

.header-bar {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 18px;
  min-height: var(--header-main-h);
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-img {
  height: clamp(54px, 6.2vw, 74px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(245, 130, 32, 0.2));
  transition: transform 0.35s var(--ease);
}
.logo:hover .logo-img { transform: scale(1.04); }
.logo-mark {
  font-family: var(--display);
  font-size: calc(clamp(1.75rem, 3vw, 2.35rem) + 2.5px);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.04em;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  flex-wrap: wrap;
  margin-left: 2px;
}
.main-nav > a,
.main-nav .nav-top-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s var(--ease);
}
.main-nav > a:hover,
.main-nav .nav-top-link:hover {
  color: #fff;
}
.main-nav > a:first-child {
  padding-left: 4px;
}
.main-nav > a:first-child::after {
  left: 4px;
}
.main-nav > a::after,
.main-nav .nav-top-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease);
}
.main-nav > a:hover,
.main-nav > a.active,
.main-nav .nav-top-link:hover,
.main-nav .nav-top-link.active,
.nav-item.is-current .nav-top-link { color: #fff; }
.main-nav > a:hover::after,
.main-nav > a.active::after,
.main-nav .nav-top-link:hover::after,
.main-nav .nav-top-link.active::after,
.nav-item.is-current .nav-top-link::after { transform: scaleX(1); }

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-mega {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: min(720px, 86vw);
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 80;
}
.nav-item:hover .nav-mega,
.nav-item:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-mega-inner {
  background: #151311;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  padding: 22px 24px 18px;
}
.nav-mega-all {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px 24px;
}
.nav-mega-col {
  display: grid;
  gap: 6px;
  align-content: start;
}
.nav-mega-col > a {
  color: #fff;
  font-size: 0.95em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-mega-col > a:hover { color: var(--brand); }
.nav-mega-sub {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.88em !important;
  font-weight: 500 !important;
  padding-left: 2px;
}
.nav-mega-sub.depth-2 {
  padding-left: 12px;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.82em !important;
}
.nav-mega-sub.depth-3 {
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 0.8em !important;
}
.nav-mega-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mega-quick a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-mega-quick a:hover { color: #fff; }

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.header-bag-tools {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.header-bag-tools .wishlist-link,
.header-bag-tools .cart-link {
  margin: 0;
}
.header-bag-tools .wishlist-link {
  width: 36px;
}
.header-bag-tools .cart-link {
  width: auto;
  min-width: 36px;
  padding: 0 8px 0 0;
  gap: 6px;
}
.header-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.header-icon:hover {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.06);
}
.header-text-link {
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 10px;
  max-width: none;
  overflow: visible;
  text-overflow: unset;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header-text-link:hover { color: var(--brand); }
.header-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  background: var(--brand);
  color: #fff;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.header-register:hover {
  background: var(--brand-dark);
  color: #fff;
}

.currency-switch {
  display: inline-flex;
  align-items: stretch;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  margin-right: 4px;
}
.currency-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 3px 10px 3px 5px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.currency-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 18px;
  border-radius: 3px;
  overflow: hidden;
  background: #111;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.currency-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.currency-code {
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.currency-option:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.currency-option.is-active {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.35);
}
.currency-option.is-active .currency-flag {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.badge, .bag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15em;
  height: 1.15em;
  padding: 0 0.35em;
  background: var(--brand);
  color: #fff;
  font-size: 0.7em;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1;
}
.wishlist-link .badge {
  position: absolute;
  top: 4px;
  right: 2px;
}
.cart-link {
  width: auto;
  gap: 8px;
  padding: 0 12px 0 8px;
}
.cart-bag { position: relative; display: inline-flex; color: inherit; }
.bag-count {
  position: absolute;
  top: -8px;
  right: -10px;
}
.cart-total {
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.06); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #f0e8df;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.search-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  background: #0a0a0a;
}
.search-form {
  width: min(100% - 40px, 560px);
  margin: 0 auto;
  display: flex;
  gap: 8px;
}
.search-form input {
  flex: 1;
  border: 1.5px solid #444 !important;
  padding: 12px 14px;
  background: #151515 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  min-height: 46px;
  border-radius: 0;
  font-size: calc(1em + 2px);
}
.search-form input::placeholder {
  color: #999 !important;
  -webkit-text-fill-color: #999;
}
.search-form button {
  background: var(--brand);
  color: #fff;
  padding: 0 22px;
  min-height: 46px;
  height: 46px;
  font-weight: 700;
  font-size: 0.85em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.search-form button:hover { background: var(--brand-dark); }

@media (max-width: 560px) {
  .search-form {
    width: min(100% - 24px, 560px);
    flex-direction: column;
  }
  .search-form input,
  .search-form button {
    width: 100%;
  }
}

/* Legacy header class aliases (kept for safety) */
.header-inner { display: contents; }
.header-left,
.header-right,
.header-link,
.icon-btn { display: none; }

/* Flash / site alerts */
.flash {
  padding: 12px 0;
  font-size: 17.5px;
  text-align: center;
}
.flash-success { background: #e8f8ef; color: #1e7a45; }
.flash-error { background: #fdecea; color: #c0392b; }
.flash-info { background: var(--brand-soft); color: var(--brand-dark); }

.site-alert {
  position: fixed;
  top: 20px;
  left: 50%;
  right: auto;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: max-content;
  max-width: min(480px, calc(100% - 32px));
  margin: 0;
  padding: 14px 16px;
  transform: translate(-50%, -12px);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  border: 1.5px solid transparent;
  border-radius: 14px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.site-alert.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.site-alert-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(12, 11, 10, 0.08);
  color: inherit;
}
.site-alert-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.site-alert-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  word-break: break-word;
  font-size: 19px;
}
.site-alert-text a {
  color: inherit;
  text-decoration: underline;
}
.site-alert-close {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  color: inherit;
  opacity: 0.7;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.site-alert-close:hover { opacity: 1; }
.site-alert-success {
  background: #e8f8ef;
  color: #1e7a45;
  border-color: #c8ebd6;
}
.site-alert-success .site-alert-icon {
  background: rgba(30, 122, 69, 0.14);
}
.site-alert-error {
  background: #fdecea;
  color: #c0392b;
  border-color: #f3c7c2;
}
.site-alert-error .site-alert-icon {
  background: rgba(192, 57, 43, 0.12);
}
.site-alert-info {
  background: #fff7ed;
  color: #9a5b0a;
  border-color: #fde6c8;
}
.site-alert-info .site-alert-icon {
  background: rgba(245, 130, 32, 0.16);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: linear-gradient(180deg, #f7923a 0%, var(--brand) 55%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(245, 130, 32, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #f9a04f 0%, #f58220 45%, #d9660d 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(245, 130, 32, 0.34);
}
.btn-outline {
  border-color: rgba(12, 11, 10, 0.22);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-light {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-whatsapp {
  background: linear-gradient(180deg, #1aa391 0%, #128c7e 55%, #0f7a6e 100%);
  color: #fff;
  border-color: #128c7e;
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.28);
}
.btn-whatsapp:hover {
  background: linear-gradient(180deg, #1db59f 0%, #128c7e 45%, #075e54 100%);
  border-color: #075e54;
  color: #fff;
  transform: translateY(-2px);
}
.btn-add {
  width: 100%;
  margin-top: 12px;
  background: #000;
  color: #fff;
  padding: 12px 14px;
  font-size: 14.5px;
  letter-spacing: 0.12em;
  box-shadow: none;
}
.btn-add:hover { background: var(--brand); transform: none; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

/* Hero — single cropped background (no <img> intrinsic flash) */
.hero {
  position: relative;
  overflow: hidden;
  background: #0c0b0a;
  min-height: min(72vh, 680px);
  height: min(72vh, 680px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  isolation: isolate;
}
.hero-main {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0c0b0a;
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: none;
  transition: opacity 0.45s ease, background-image 0.45s ease;
  will-change: opacity;
}
.hero.is-media-ready .hero-bg {
  opacity: 1;
}
.hero.is-media-ready.is-kenburns .hero-bg {
  animation: heroKenBurns 7s linear forwards;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 42% 42%, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.7) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.18) 35%, rgba(0, 0, 0, 0.55) 72%, rgba(0, 0, 0, 0.88) 100%);
}
.hero-stage {
  position: relative;
  z-index: 3;
  width: min(100% - 48px, 560px);
  max-width: 100%;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  isolation: isolate;
  overflow: hidden;
  box-sizing: border-box;
}
.hero-stage > * {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.hero-logo {
  width: clamp(110px, 16vw, 168px);
  height: auto;
  margin: 0;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
  animation: heroFadeIn 0.8s var(--ease) both;
}
.hero-brand {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  overflow-wrap: break-word;
  animation: heroFadeIn 0.8s var(--ease) 0.06s both;
}
.hero-brand::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--brand);
  transform-origin: center;
  animation: heroLine 0.7s var(--ease) 0.28s both;
}
.hero-headline {
  margin: 0;
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  white-space: normal;
  overflow-wrap: break-word;
  transition: opacity 0.25s var(--ease);
}
.hero-support {
  margin: 0;
  max-width: 36ch;
  font-size: 1em;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  overflow-wrap: break-word;
  transition: opacity 0.25s var(--ease);
}
.hero-stage.is-swapping .hero-headline,
.hero-stage.is-swapping .hero-support {
  opacity: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
  animation: heroFadeIn 0.8s var(--ease) 0.12s both;
}
.hero-actions .btn {
  min-width: 148px;
  justify-content: center;
  padding-inline: 24px;
  min-height: 52px;
}
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: #0c0b0a;
  min-width: 0;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.hero.is-media-ready .hero-mosaic {
  opacity: 1;
}
.hero-tile {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background-color: #161412;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: transform 0.55s var(--ease), filter 0.35s ease, opacity 0.35s ease;
  opacity: 0.78;
  filter: saturate(0.92);
}
.hero-tile:hover {
  transform: scale(1.03);
  opacity: 1;
  filter: saturate(1);
}
.hero-tile.is-active {
  opacity: 1;
  filter: saturate(1);
  transform: scale(1.01);
}
.hero-tile.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--brand);
  pointer-events: none;
  z-index: 1;
}
.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.hero-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--brand);
}
.hero.is-playing .hero-progress span {
  animation: heroProgress 6s linear forwards;
}
@keyframes heroProgress {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
@keyframes heroLine {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: 0;
  }
  .hero-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(68vh, 560px);
    height: min(68vh, 560px);
    padding: 40px 0 36px;
    overflow: hidden;
  }
  .hero-bg {
    background-position: center top;
  }
  .hero-veil {
    z-index: 1;
  }
  .hero-mosaic {
    grid-template-rows: none;
    aspect-ratio: auto;
  }
  .hero-tile {
    aspect-ratio: 1 / 1;
    min-height: 140px;
  }
  .hero-stage {
    position: relative;
    z-index: 3;
    width: min(100% - 40px, 420px);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 10px;
    box-sizing: border-box;
    gap: 10px;
    text-align: center;
  }
  .hero-logo {
    display: none;
  }
  .hero-brand {
    margin: 0;
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    line-height: 1.1;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .hero-brand::after {
    margin-top: 10px;
    width: 40px;
  }
  .hero-headline {
    margin: 0;
    white-space: normal;
    max-width: 100%;
    font-size: clamp(1.05rem, 3.8vw, 1.25rem);
    line-height: 1.35;
    overflow-wrap: break-word;
  }
  .hero-support {
    margin: 0;
    max-width: 100%;
    width: 100%;
    font-size: 0.92em;
    line-height: 1.5;
    overflow-wrap: break-word;
  }
  .hero-actions {
    width: 100%;
    margin-top: 6px;
    gap: 10px;
    flex-direction: column;
  }
  .hero-actions .btn {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding-inline: 16px;
    font-size: 0.92em;
  }
  .hero-progress {
    z-index: 2;
  }
}

@media (max-width: 560px) {
  .hero-main {
    min-height: min(62vh, 480px);
    height: min(62vh, 480px);
    padding: 32px 16px 28px;
  }
  .hero-stage {
    width: 100%;
    gap: 12px;
    padding: 0;
    overflow: hidden;
  }
  .hero-brand {
    font-size: clamp(1.75rem, 8.5vw, 2.2rem);
    letter-spacing: -0.03em;
  }
  .hero-headline {
    font-size: 1.05rem;
  }
  .hero-support {
    font-size: 0.9em;
  }
  .hero-mosaic {
    gap: 6px;
    padding: 6px;
  }
  .hero-tile {
    min-height: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg,
  .hero-logo,
  .hero-brand,
  .hero-brand::after,
  .hero-actions,
  .hero-tile,
  .hero-headline,
  .hero-support,
  .logo-img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .hero.is-playing .hero-progress span {
    animation: none !important;
    width: 100%;
  }
}
/* Sections */
.section {
  padding: clamp(40px, 6vw, 72px) 0;
}
.section > .container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}
.section-head {
  text-align: center;
  margin: 0 auto clamp(24px, 4vw, 36px);
  max-width: 42rem;
  padding-inline: 4px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--brand);
}
.section-title {
  font-family: var(--display);
  font-size: calc(clamp(1.85rem, 3.4vw, 2.55rem) + 2.5px);
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 auto;
  font-size: 18.5px;
  max-width: 42ch;
}
.section-alt {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.category-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(0,0,0,0.78));
  pointer-events: none;
}
.category-card:hover img { transform: scale(1.06); }
.category-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px 16px;
  color: #fff;
  font-family: var(--display);
  font-size: calc(clamp(1.05rem, 1.6vw, 1.35rem) + 2.5px);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 22px;
}
.shop-layout .product-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Price system — clean fashion typography */
.price {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35em 0.65em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.price b,
.price-now {
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-style: normal;
}
.price.is-sale .price-now {
  color: var(--brand);
}
.price s,
.price-old,
.price-was,
.price-compare {
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  font-size: 0.82em;
  letter-spacing: -0.02em;
}

/* Legacy price aliases */
.price-block,
.price-row,
.price-stack { display: contents; }
.price-badge,
.price-save,
.price-code,
.price-meta,
.price-label,
.pm-price-kicker { display: none !important; }
.price-sale { color: var(--brand); font-weight: 700; }
.price-current { font-weight: 700; }


/* Page headers */
.page-hero {
  position: relative;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 130, 32, 0.22), transparent 42%),
    radial-gradient(circle at 12% 80%, rgba(245, 130, 32, 0.08), transparent 40%),
    linear-gradient(165deg, #050505 0%, #12100e 55%, #1a1612 100%);
  padding: clamp(48px, 8vw, 72px) 0;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,0.08);
  left: 8%;
  top: 20%;
  pointer-events: none;
  opacity: 0.9;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 130, 32, 0.45), transparent);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: calc(clamp(2.1rem, 4.5vw, 3.2rem) + 2.5px);
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.page-hero p { margin: 0 auto; color: #cfc6bc; font-size: 18.5px; max-width: 42ch; }
.page-hero-compact {
  padding: clamp(36px, 5.5vw, 52px) 0;
}
.page-hero-compact h1 {
  font-size: calc(clamp(1.85rem, 3.8vw, 2.7rem) + 2px);
}
.page-hero-compact::before {
  width: 170px;
  height: 170px;
  top: 14%;
}
.section-compact {
  padding: clamp(34px, 5vw, 56px) 0;
}
.breadcrumb {
  font-size: 14.5px;
  color: #8f867c;
  margin-bottom: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.breadcrumb a { color: #cfc6bc; }
.breadcrumb a:hover { color: var(--brand); }

/* Shop page — sidebar catalogue */
.shop-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 7vw, 96px);
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: 100px;
}
.shop-sidebar h3 {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 700;
  color: var(--ink);
}
.shop-sidebar > a,
.shop-sidebar .shop-cat-parent {
  display: block;
  padding: 12px 0;
  font-size: 1em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.shop-sidebar > a:hover,
.shop-sidebar .shop-cat-parent:hover {
  color: var(--brand);
  padding-left: 4px;
}
.shop-sidebar > a.active,
.shop-sidebar .shop-cat-parent.active {
  color: var(--brand-dark);
  font-weight: 700;
  border-bottom-color: var(--brand);
}
.shop-cat-group {
  border-bottom: 1px solid var(--line);
}
.shop-cat-group.depth-0 > .shop-cat-row .shop-cat-parent {
  border-bottom: none;
  padding: 10px 0;
}
.shop-cat-row {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.shop-cat-link {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  padding: 9px 0;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.35;
}
.shop-cat-link:hover { color: var(--brand); }
.shop-cat-link.active {
  color: var(--brand-dark);
  font-weight: 700;
}
.shop-cat-parent {
  font-size: 1em;
  font-weight: 600;
  color: var(--ink);
}
.shop-cat-child {
  font-size: 0.92em;
  padding-left: 2px;
}
.shop-cat-nested {
  font-size: 0.88em;
  color: #7a746c;
}
.shop-cat-toggle {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease, transform 0.2s ease;
}
.shop-cat-toggle:hover {
  color: var(--brand);
  background: rgba(245, 130, 32, 0.1);
}
.shop-cat-toggle svg {
  transition: transform 0.2s ease;
}
.shop-cat-group.is-open > .shop-cat-row .shop-cat-toggle svg {
  transform: rotate(180deg);
}
.shop-cat-children {
  display: grid;
  gap: 0;
  padding: 0 0 8px 12px;
  margin: 0 0 4px;
  border-left: 1px solid rgba(12, 11, 10, 0.08);
}
.shop-cat-group:not(.is-open) > .shop-cat-children {
  display: none;
}
.shop-cat-group.depth-1,
.shop-cat-group.depth-2,
.shop-cat-group.depth-3 {
  border-bottom: 0;
}
.shop-cat-all {
  display: block;
  padding: 12px 0;
  font-size: 1em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.shop-cat-all:hover { color: var(--brand); }
.shop-cat-all.active {
  color: var(--brand-dark);
  font-weight: 700;
  border-bottom-color: var(--brand);
}

.shop-filters {
  display: grid;
  gap: 22px;
}
.shop-filter-block h3 {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--ink);
}
.shop-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-chip {
  position: relative;
  cursor: pointer;
}
.shop-chip input { position: absolute; opacity: 0; pointer-events: none; }
.shop-chip span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.85em;
  font-weight: 600;
  color: var(--muted);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.shop-chip.is-on span,
.shop-chip:has(input:checked) span {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: rgba(245, 130, 32, 0.1);
}
.shop-check-list {
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow: auto;
  padding-right: 4px;
}
.shop-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95em;
  color: var(--muted);
  cursor: pointer;
}
.shop-check input {
  accent-color: var(--brand);
  width: 16px;
  height: 16px;
}
.shop-size-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.shop-size-chip {
  position: relative;
  cursor: pointer;
}
.shop-size-chip input { position: absolute; opacity: 0; pointer-events: none; }
.shop-size-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 0.9em;
  color: var(--ink);
}
.shop-size-chip.is-on span,
.shop-size-chip:has(input:checked) span {
  border-color: var(--brand);
  background: rgba(245, 130, 32, 0.12);
  color: var(--brand-dark);
}
.shop-colour-list {
  display: grid;
  gap: 8px;
  max-height: 240px;
  overflow: auto;
}
.shop-colour {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.92em;
}
.shop-colour input { position: absolute; opacity: 0; pointer-events: none; }
.shop-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(12, 11, 10, 0.18);
  flex: 0 0 auto;
}
.shop-colour.is-on,
.shop-colour:has(input:checked) {
  color: var(--brand-dark);
  font-weight: 700;
}
.shop-clear-filters {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
}
.shop-toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  width: 100%;
}
.shop-sort select {
  min-width: 180px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
}
.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 20px;
}
.shop-active-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.28);
  color: var(--brand-dark);
  text-decoration: none;
  font-size: 0.85em;
  font-weight: 600;
}
.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.shop-page-btn {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82em;
  color: var(--brand);
  text-decoration: none;
}
.shop-page-status {
  color: var(--muted);
  font-size: 0.95em;
}

.shop-main {
  min-width: 0;
}
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin-bottom: clamp(22px, 3vw, 32px);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.shop-search {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex: 1 1 260px;
  max-width: 420px;
}
.shop-search input {
  flex: 1;
  min-width: 0;
  min-height: 50px;
  height: 50px;
  padding: 0 16px;
  border: 1.5px solid #b7aba0 !important;
  background: #fff !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
  font: inherit;
  font-size: calc(1em + 2px);
}
.shop-search input:focus {
  outline: none;
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.18);
  background: #fff !important;
}
.shop-search .btn {
  min-height: 50px;
  height: 50px;
  padding-inline: 18px;
  flex-shrink: 0;
}
.shop-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.95em;
  line-height: 1.4;
}
.shop-count strong {
  color: var(--ink);
  font-weight: 700;
}
.shop-count a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.shop-count a:hover { color: var(--ink); }
.shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 20px;
}
.shop-layout .product-media {
  aspect-ratio: 4 / 5;
}
.shop-empty {
  text-align: center;
  padding: clamp(48px, 8vw, 80px) 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.shop-empty h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: calc(clamp(1.5rem, 2.5vw, 2rem) + 1px);
  color: var(--ink);
}
.shop-empty p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1em;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Product detail */
.pd-shell {
  padding: clamp(36px, 5vw, 64px) 0 clamp(48px, 6vw, 72px);
}
.pd-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.pd-gallery {
  display: grid;
  gap: 14px;
}
.pd-main {
  background: var(--surface);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.pd-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.pd-main:hover img { transform: scale(1.03); }
.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px;
}
.pd-thumb {
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.75;
  transition: border-color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-thumb:hover,
.pd-thumb.is-active {
  opacity: 1;
  border-color: var(--brand);
}

.pd-info {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 32px);
}
.pd-eyebrow {
  justify-content: flex-start;
  margin-bottom: 18px;
}
.pd-eyebrow a { color: inherit; }
.pd-eyebrow a:hover { text-decoration: underline; }

.pd-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.pd-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}
.pd-price .price-sale { color: var(--sale); }
.pd-price .price-was {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
}
.pd-sale-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: rgba(192, 57, 43, 0.1);
  color: var(--sale);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pd-desc {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.pd-meta {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pd-meta-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}
.pd-meta-item:last-child { border-bottom: 0; }
.pd-meta-item dt {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}
.pd-meta-item dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}
.pd-meta-item dd.is-in { color: #1e7a45; }
.pd-meta-item dd.is-out { color: var(--sale); }

.pd-buy {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
.pd-qty {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pd-qty-label {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.pd-qty-control {
  display: inline-grid;
  grid-template-columns: 44px 68px 44px;
  border: 1px solid #cfc8bf;
  background: #fff;
}
.pd-qty-btn {
  display: grid;
  place-items: center;
  height: 52px;
  font-size: 20px;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.pd-qty-btn:hover {
  background: var(--ink);
  color: #fff;
}
.pd-qty-control input {
  width: 100%;
  height: 52px;
  border: 0;
  border-left: 1px solid #cfc8bf;
  border-right: 1px solid #cfc8bf;
  text-align: center;
  background: transparent;
  font-weight: 600;
  font-size: 20px;
  -moz-appearance: textfield;
}
.pd-qty-control input::-webkit-outer-spin-button,
.pd-qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pd-actions {
  display: grid;
  gap: 10px;
}
.pd-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  font-size: 15px;
}
.pd-actions .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.pd-actions .wishlist-btn.active {
  border-color: var(--brand);
  color: var(--brand);
}

.pd-perks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.pd-perks li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 18px;
}
.pd-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* Legacy product-detail (kept for safety) */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
  align-items: start;
}

/* Cart / checkout */
.table-wrap { overflow-x: auto; padding: 40px 0; }
table.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}
.cart-table th {
  text-align: left;
  font-size: 14.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 12px;
  border-bottom: 2px solid var(--ink);
  background: #faf8f5;
}
.cart-table td {
  padding: 18px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.cart-product {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-product img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  background: var(--bg-soft);
}
.cart-totals {
  max-width: 360px;
  margin-left: auto;
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px 20px;
}
.cart-totals .row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.cart-totals .row.total {
  font-size: calc(1.15rem + 2.5px);
  font-weight: 700;
  border-bottom: none;
  padding-top: 16px;
}
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-state h2 {
  font-family: var(--display);
  color: var(--ink);
  margin-bottom: 10px;
}

/* Checkout */
.checkout-shell {
  padding: clamp(36px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
.checkout-main {
  display: grid;
  gap: 18px;
}
.checkout-block {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 30px);
}
.checkout-block + .checkout-block {
  margin-top: 18px;
}
.checkout-block-head {
  margin-bottom: 22px;
}
.checkout-eyebrow {
  justify-content: flex-start;
  margin-bottom: 10px;
}
.checkout-block-head h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: calc(clamp(1.45rem, 2.4vw, 1.85rem) + 2.5px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.checkout-block-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18.5px;
}
.checkout-fields {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.checkout-fields .form-row { grid-column: 1 / -1; }
.checkout-fields .checkout-half { grid-column: span 1; }
.checkout-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.checkout-submit .btn {
  min-height: 52px;
  padding-inline: 28px;
  font-size: 15px;
}
.checkout-submit .btn-whatsapp,
.checkout-submit .btn-primary {
  flex: 1 1 220px;
}
.checkout-wa-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 48ch;
}

.checkout-summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.checkout-summary-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 28px);
}
.checkout-summary-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.checkout-summary-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: calc(clamp(1.35rem, 2vw, 1.65rem) + 2.5px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.checkout-summary-head a {
  color: var(--brand);
  font-size: 16px;
  font-weight: 600;
}
.checkout-summary-head a:hover { text-decoration: underline; }

.checkout-items {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
  padding: 0;
}
.checkout-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: start;
}
.checkout-item-media {
  display: block;
  width: 72px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.checkout-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-item-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}
.checkout-item-name:hover { color: var(--brand); }
.checkout-item-meta {
  color: var(--muted);
  font-size: 16px;
}
.checkout-item-price {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.checkout-totals {
  border-top: 1px solid var(--line);
  padding-top: 8px;
  margin-bottom: 20px;
}
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-size: 18px;
}
.checkout-total-row.is-total {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 22px;
  font-weight: 700;
}
.checkout-ship-note {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--muted);
}

.checkout-perks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}
.checkout-perks li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 18px;
}
.checkout-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.order-success {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(36px, 5vw, 56px) clamp(22px, 4vw, 40px);
}
.order-success-eyebrow {
  justify-content: center;
}
.order-success h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: calc(clamp(2rem, 4vw, 2.8rem) + 2.5px + 1px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.order-success-lead {
  margin: 0 0 12px;
  font-size: 21px;
}
.order-success-copy {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19.5px;
}
.order-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.order-success-actions .btn {
  min-height: 52px;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 18px;
  max-width: 560px;
}
.form-row { display: grid; gap: 8px; }
.security-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.security-check-hint {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}
.form-row label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-row input,
.form-row textarea,
.form-row select {
  border: 1.5px solid #b7aba0 !important;
  padding: 12px 14px;
  background: #fff !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
  width: 100%;
  min-height: 48px;
  font-size: 21px;
  box-shadow: inset 0 1px 2px rgba(12, 11, 10, 0.04);
  opacity: 1;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-row input:hover,
.form-row textarea:hover,
.form-row select:hover {
  border-color: #9f9184 !important;
  background: #fff !important;
}
.form-row textarea {
  min-height: 140px;
  resize: vertical;
  font-size: 21px;
  line-height: 1.5;
}
.form-row select { cursor: pointer; }

/* Capitalise form values (visual + kept out of email/phone/password) */
input:not([type="email"]):not([type="password"]):not([type="tel"]):not([type="search"]):not([type="url"]):not([type="number"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([name="email"]):not([name="phone"]):not([name="password"]):not([name="password_confirm"]):not([name="slug"]),
textarea:not([name="email"]):not([name="phone"]),
select {
  text-transform: capitalize;
}
input[type="email"],
input[type="password"],
input[type="tel"],
input[name="email"],
input[name="phone"],
input[name="password"],
input[name="password_confirm"],
input[name="slug"],
.password-field input,
.form-row .password-field input,
.newsletter-form input[type="email"],
.auth-stage .form-row input[type="email"],
.auth-stage .form-row input[type="password"],
.contact-form .form-row input[type="email"],
.chk-fields input[type="email"],
.chk-fields input[type="password"],
.chk-fields input[type="tel"],
.chk-fields input[name="email"],
.chk-fields input[name="phone"],
.wa-fields .form-row input[type="email"],
.wa-fields .form-row input[type="password"],
.wa-fields .form-row input[type="tel"],
.wa-fields .form-row input[name="email"],
.wa-fields .form-row input[name="phone"] {
  text-transform: none !important;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--brand) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.16);
}
.form-alert {
  padding: 14px 16px;
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 500;
  border-left: 3px solid transparent;
}
.form-alert-error {
  background: #fff5f3;
  color: #b83224;
  border: 1px solid #f0d0cb;
  border-left-color: #c0392b;
}
.form-alert-ok {
  background: #f1faf5;
  color: #1e7a45;
  border: 1px solid #c8ebd6;
  border-left-color: #1e7a45;
}
.form-alert-ok a {
  color: inherit;
  font-weight: 700;
  word-break: break-all;
}
.form-forgot {
  margin: -6px 0 4px;
  text-align: right;
}
.form-forgot a {
  color: var(--brand);
  font-size: 16px;
  font-weight: 600;
}
.form-forgot a:hover { text-decoration: underline; }

.password-field {
  position: relative;
  display: grid;
}
.password-field input {
  width: 100%;
  padding-right: 52px;
}
/* Hide browser’s built-in reveal so only our eye shows */
.password-field input::-ms-reveal,
.password-field input::-ms-clear {
  display: none;
}
.password-field input::-webkit-credentials-auto-fill-button,
.password-field input::-webkit-strong-password-auto-fill-button {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
.password-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.password-toggle:hover,
.password-toggle.is-visible,
.password-toggle[aria-pressed="true"] {
  color: var(--brand);
  background: rgba(245, 130, 32, 0.08);
}
.password-toggle svg {
  width: 22px;
  height: 22px;
  grid-area: 1 / 1;
  display: block;
}
.password-toggle .password-toggle-eye-off {
  display: none;
}
.password-toggle.is-visible .password-toggle-eye {
  display: none;
}
.password-toggle.is-visible .password-toggle-eye-off {
  display: block;
}

/* Shared form pages (login / register / contact) */
.form-shell {
  padding: clamp(36px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
  position: relative;
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(245, 130, 32, 0.07), transparent 55%),
    radial-gradient(ellipse 40% 35% at 0% 30%, rgba(12, 11, 10, 0.03), transparent 50%);
}
.form-shell-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}
.form-shell-narrow {
  grid-template-columns: 1.05fr 0.95fr;
  max-width: 980px;
  margin-inline: auto;
  width: 100%;
}
.form-panel {
  background: #fff;
  border: 1px solid rgba(12, 11, 10, 0.06);
  padding: clamp(26px, 3.4vw, 40px);
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 48px rgba(12, 11, 10, 0.06);
}
.form-panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  width: auto;
  bottom: auto;
  background: linear-gradient(90deg, var(--brand) 0%, #f9a04f 45%, rgba(245, 130, 32, 0.2) 100%);
}
.form-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 28px;
  border: 0;
  background: #f1eeea;
  padding: 5px;
}
.form-tabs a {
  padding: 13px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-tabs a:hover { color: var(--ink); }
.form-tabs a.is-active {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(12, 11, 10, 0.2);
}
.form-eyebrow {
  justify-content: flex-start;
  margin-bottom: 10px;
  font-size: 14.5px;
}
.form-panel-head {
  margin-bottom: 22px;
}
.form-panel-head h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: calc(clamp(1.45rem, 2.4vw, 1.85rem) + 2.5px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.form-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18.5px;
}
.form-panel-fields {
  max-width: none;
}
.form-panel-fields .form-row label {
  font-size: 16px;
}
.form-panel-fields .form-row input,
.form-panel-fields .form-row textarea,
.form-panel-fields .form-row select {
  font-size: 21px;
  padding: 12px 14px;
  min-height: 48px;
}
.form-panel-fields .form-row textarea {
  min-height: 120px;
  line-height: 1.5;
}
.form-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  font-size: 15px;
}
.form-switch {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(12, 11, 10, 0.08);
  text-align: center;
  font-size: 18px;
  color: var(--muted);
}
.form-switch a {
  color: var(--brand);
  font-weight: 700;
  margin-left: 4px;
}
.form-switch a:hover { text-decoration: underline; }
.form-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: clamp(8px, 1.5vw, 16px) 0;
}
.form-aside h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: calc(clamp(1.7rem, 2.8vw, 2.3rem) + 2.5px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.form-aside > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18.5px;
  max-width: 36ch;
  line-height: 1.55;
}
.form-perks {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
}
.form-perks li {
  position: relative;
  padding: 15px 16px 15px 44px;
  background: #fff;
  border: 1px solid rgba(12, 11, 10, 0.06);
  box-shadow: 0 10px 24px rgba(12, 11, 10, 0.035);
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.form-perks li:hover {
  transform: translateX(3px);
  border-color: rgba(245, 130, 32, 0.35);
}
.form-perks li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.15);
}

/* Auth stage (login / register) */
.auth-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h) - 48px);
  margin: 0;
  background: var(--surface);
  border-top: 1px solid #1a1a1a;
}
.auth-stage-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
}
.auth-stage-brand {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 20% 15%, rgba(245, 130, 32, 0.28), transparent 58%),
    radial-gradient(ellipse 50% 45% at 90% 85%, rgba(245, 130, 32, 0.12), transparent 55%),
    linear-gradient(160deg, #141414 0%, #000 55%, #1a120a 100%);
  color: #fff;
}
.auth-stage-brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -28deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.015) 18px,
      rgba(255, 255, 255, 0.015) 19px
    );
  pointer-events: none;
}
.auth-stage-brand-inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  animation: authRise 0.7s var(--ease) both;
}
.auth-stage-logo {
  width: min(220px, 70%);
  height: auto;
  margin-bottom: 36px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}
.auth-stage-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.auth-stage-brand h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  white-space: nowrap;
}
.auth-stage-lead {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
  max-width: 34ch;
}
.auth-stage-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.auth-stage-list li {
  position: relative;
  padding: 12px 14px 12px 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}
.auth-stage-list li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.2);
}
.auth-stage-form {
  background:
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(245, 130, 32, 0.08), transparent 55%),
    linear-gradient(180deg, #faf8f5 0%, #f3efe9 100%);
}
.auth-stage-form-inner {
  width: min(100%, 420px);
  animation: authRise 0.7s var(--ease) 0.08s both;
}
.auth-stage-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.auth-stage-tabs a {
  padding: 15px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.auth-stage-tabs a:hover { color: var(--ink); }
.auth-stage-tabs a.is-active {
  color: #fff;
  background: var(--ink);
}
.auth-stage-head {
  margin-bottom: 22px;
}
.auth-stage-head h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.6vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.auth-stage-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.auth-form {
  max-width: none;
}
.auth-form .btn {
  width: 100%;
  margin-top: 6px;
  padding-block: 17px;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.auth-stage .form-row label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.auth-stage .form-row input {
  padding: 12px 14px;
  font-size: 21px;
  min-height: 50px;
  border: 1.5px solid #b7aba0 !important;
  background: #fff !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.auth-stage .form-row input:focus {
  outline: none;
  border-color: var(--brand) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.16);
}
.auth-switch {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 17.5px;
  color: var(--muted);
  text-align: center;
}
.auth-switch a {
  color: var(--brand);
  font-weight: 700;
  margin-left: 4px;
}
.auth-switch a:hover { text-decoration: underline; }
.auth-back {
  margin: 16px 0 0;
  text-align: center;
  font-size: 16px;
}
.auth-back a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.auth-back a:hover { color: var(--ink); }
@keyframes authRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact */
.contact-shell {
  padding: clamp(40px, 6vw, 72px) 0;
}
.contact-aside {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}
.contact-aside .section-eyebrow {
  font-size: 18px;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.contact-aside h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.contact-aside > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  max-width: 36ch;
}
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px 24px 26px;
  box-shadow: 0 12px 32px rgba(12, 11, 10, 0.04);
  position: relative;
}
.contact-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand);
}
.contact-panel-head {
  margin-bottom: 20px;
}
.contact-panel-head h2 {
  font-family: var(--display);
  font-size: 1.75rem;
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.contact-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.contact-form {
  max-width: none;
}
.contact-form .form-row label {
  font-size: 16px;
}
.contact-form .form-row input,
.contact-form .form-row textarea {
  font-size: 21px;
  padding: 12px 14px;
}
.contact-form .form-row textarea {
  min-height: 150px;
  line-height: 1.5;
}
.contact-form .btn {
  width: 100%;
  margin-top: 4px;
  padding-block: 16px;
  font-size: 18px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 10px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  background: linear-gradient(160deg, #141210 0%, #0a0908 100%);
  color: #ebe4dc;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(12, 11, 10, 0.12);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact-card:hover {
  border-color: rgba(245, 130, 32, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(12, 11, 10, 0.18);
}
.contact-card-static { cursor: default; }
.contact-card-static:hover { transform: none; box-shadow: 0 12px 28px rgba(12, 11, 10, 0.12); }
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: rgba(245, 130, 32, 0.12);
  border: 1px solid rgba(245, 130, 32, 0.28);
  flex-shrink: 0;
}
.contact-card-icon svg {
  width: 20px;
  height: 20px;
}
.contact-card strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.contact-card small {
  display: block;
  font-size: 15.5px;
  color: #b7aea3;
}
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: 48px 0;
}

/* Trust + footer */
.trust-bar {
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(245, 130, 32, 0.12), transparent 60%),
    #050505;
  border-top: 1px solid #1a1a1a;
  padding: clamp(36px, 5vw, 52px) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  padding: 22px 20px;
  background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  border: 1px solid #222;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand);
  opacity: 0.85;
}
.trust-item:hover {
  border-color: rgba(245, 130, 32, 0.45);
  transform: translateY(-2px);
}
.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: rgba(245, 130, 32, 0.1);
  border: 1px dotted rgba(245, 130, 32, 0.45);
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.05);
}
.trust-icon svg {
  width: 22px;
  height: 22px;
}
.trust-copy {
  min-width: 0;
}
.trust-item h5 {
  margin: 2px 0 8px;
  font-size: 15.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f58220;
  font-weight: 700;
}
.trust-item p {
  margin: 0;
  font-size: 19.5px;
  color: #fff;
  line-height: 1.5;
}
.trust-item a {
  color: #fff;
  transition: color 0.2s ease;
}
.trust-item a:hover { color: var(--brand); }
.site-footer {
  background: #000;
  color: #fff;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px dotted rgba(245, 130, 32, 0.25);
  border-radius: 50%;
  right: -60px;
  top: 40px;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  position: relative;
}
.logo-footer .logo-img-footer {
  height: 72px;
  width: auto;
}
.footer-brand p,
.footer-newsletter p {
  font-size: 19.5px;
  max-width: 360px;
  line-height: 1.7;
  color: #fff;
}
.footer-links h4,
.footer-newsletter h4 {
  color: #f58220;
  font-size: 15.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 700;
}
.footer-links a {
  display: block;
  padding: 7px 0;
  font-size: 19.5px;
  color: #fff;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--brand); }
.newsletter-form { display: grid; gap: 10px; }
.newsletter-form input {
  background: #111 !important;
  border: 1.5px solid #3a3a3a !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  padding: 11px 14px;
  min-height: 44px;
  width: 100%;
  font-size: 19px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.newsletter-form input::placeholder {
  color: #999 !important;
  -webkit-text-fill-color: #999;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.22);
}
.newsletter-form .btn {
  width: 100%;
  min-height: 48px;
}
.footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding: 18px 0;
  font-size: 20px;
  color: #fff;
}
.footer-bottom p {
  color: #fff;
}

/* About / content */
.content-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0;
}
.content-block p { color: var(--muted); font-size: 20px; }
.content-block h2 {
  font-family: var(--display);
  font-size: calc(1.8rem + 2.5px);
  margin: 32px 0 12px;
  font-weight: 700;
}

/* Be Inspired / blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 22px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 18px 40px rgba(12, 11, 10, 0.1);
}
.blog-card-media {
  display: block;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--bg-soft);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.blog-card:hover .blog-card-media img { transform: scale(1.06); }
.blog-card-body {
  padding: 20px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  transition: background 0.3s ease;
}
.blog-card:hover .blog-card-body {
  background: #fffcf8;
}
.blog-card-body h2 {
  font-family: var(--display);
  font-size: calc(1.2rem + 2.5px);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.blog-card-body h2 a {
  transition: color 0.2s ease;
}
.blog-card:hover .blog-card-body h2 a {
  color: var(--brand);
}
.blog-card:hover .blog-read-more {
  color: var(--brand-dark);
}
.blog-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  flex: 1;
}
.blog-read-more {
  color: var(--brand);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blog-read-more:hover { text-decoration: underline; }
.blog-post-media {
  max-width: 720px;
  margin: 0 auto 28px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.blog-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post-gallery {
  max-width: 720px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.blog-post-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--surface);
}
.blog-post-body { padding-top: 0; }

/* CTA band */
.cta-band {
  background: #000;
  color: #fff;
  padding: clamp(48px, 8vw, 72px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 18% auto auto 50%;
  width: 260px;
  height: 260px;
  border: 1px dotted rgba(245, 130, 32, 0.35);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-band h2 {
  margin: 0 0 12px;
  font-size: calc(clamp(1.8rem, 3.5vw, 2.5rem) + 2.5px);
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-band p {
  margin: 0 auto 24px;
  max-width: 40ch;
  color: #bdb4aa;
  position: relative;
}

/* Responsive */
@media (max-width: 980px) {
  .category-grid,
  .product-grid,
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout,
  .product-detail,
  .pd-layout,
  .checkout-layout,
  .form-shell-inner,
  .form-shell-narrow,
  .auth-stage,
  .contact-layout,
  .two-col,
  .footer-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-sidebar {
    position: static;
    display: block;
  }
  .shop-filters {
    display: grid;
    gap: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
  }
  .shop-filter-block:first-child {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }
  .shop-sidebar h3 {
    width: auto;
    margin-bottom: 10px;
  }
  .shop-check-list,
  .shop-colour-list {
    max-height: 140px;
  }
  .shop-search {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }
  .shop-toolbar-meta {
    width: 100%;
  }
  .shop-count { width: auto; }
  .pd-info { position: static; }
  .checkout-summary { position: static; }
  .form-aside { position: static; }
  .checkout-fields { grid-template-columns: 1fr; }
  .checkout-fields .checkout-half { grid-column: 1 / -1; }
  .contact-aside { position: static; }
  .auth-stage { min-height: 0; }
  .auth-stage-brand { min-height: 320px; padding-block: 48px; }
  .auth-stage-form { padding-block: 40px 56px; }
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .wishlist-link span:not(.badge) { display: none; }
  /* hero mobile handled in hero block */
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 16px 10px; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .shop-search {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
  }
  .shop-search input {
    min-height: 46px;
    height: 46px;
    width: 100%;
  }
  .shop-search .btn {
    min-height: 46px;
    height: 46px;
    width: 100%;
    padding-inline: 14px;
  }
  .blog-grid { grid-template-columns: 1fr; }
  .product-actions { opacity: 1; transform: none; }
  .auth-stage-logo { width: min(180px, 65%); margin-bottom: 28px; }
  .auth-stage-brand h1 {
    font-size: clamp(1.2rem, 5.2vw, 1.85rem);
    white-space: normal;
  }

  .currency-option {
    min-height: 30px;
    padding: 2px 8px 2px 4px;
    gap: 5px;
  }
  .currency-code { font-size: 0.8em; }
  .cart-total { display: none; }
  .header-account,
  .header-logout,
  .header-register { display: none; }
  .cart-link { width: 42px; padding: 0; }
}

/* ========== Homepage ========== */
.home-wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}
.home-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}
.home-kicker-on-dark { color: var(--brand); }
.home-title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: calc(clamp(1.7rem, 3.2vw, 2.5rem) + 1px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
}
.home-lead {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1em;
  line-height: 1.55;
}
.home-head { margin-bottom: clamp(28px, 4vw, 40px); }
.home-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.home-text-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--brand);
  transition: color 0.2s ease;
}
.home-text-link::after { content: "\2192"; color: var(--brand); }
.home-text-link:hover { color: var(--brand); }

/* Categories */
.home-cats {
  padding: clamp(52px, 8vw, 96px) 0;
  background:
    radial-gradient(ellipse 65% 50% at 100% 0%, rgba(245, 130, 32, 0.1), transparent 55%),
    var(--bg);
}
.home-cats-head {
  position: relative;
  display: block;
  text-align: center;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 14px;
  padding-inline: 0;
}
.home-cats-copy {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.home-cats-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: 0 0 10px;
}
.home-cats-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: var(--ink, #161412);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.home-cats-btn:hover:not(:disabled) {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.home-cats-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.home-cats-rail {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  outline: none;
  container-type: inline-size;
  container-name: home-cats;
}
.home-cats-rail::-webkit-scrollbar { display: none; }
.home-cats-track {
  display: flex;
  gap: 12px;
  width: max-content;
  min-width: 100%;
  padding-bottom: 2px;
}
.home-cat {
  position: relative;
  display: block;
  flex: 0 0 calc((100cqw - 36px) / 4);
  width: calc((100cqw - 36px) / 4);
  max-width: none;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  color: #fff;
  scroll-snap-align: start;
  animation: homeIn 0.7s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 0.06s);
}
.home-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.home-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}
.home-cat span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.home-cat:hover img { transform: scale(1.05); }

/* Product shop bands */
.home-shop {
  padding: clamp(52px, 8vw, 96px) 0;
  background: #fff;
}
.home-shop-soft {
  background:
    linear-gradient(180deg, rgba(245, 130, 32, 0.04), transparent 40%),
    var(--bg-soft);
}

/* Split craft band */
.home-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: min(70vh, 640px);
  background: #0c0b0a;
  color: #fff;
}
.home-split-media {
  min-height: 420px;
  overflow: hidden;
}
.home-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.home-split-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(40px, 7vw, 72px) clamp(28px, 5vw, 64px);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(245, 130, 32, 0.18), transparent 55%),
    #0c0b0a;
}
.home-split-copy .home-title { color: #fff; }
.home-split-copy .home-lead { color: rgba(255, 255, 255, 0.72); }
.home-split-copy .btn {
  justify-self: start;
  margin-top: 10px;
  min-height: 52px;
  padding-inline: 24px;
}

/* Finale CTA */
.home-finale {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(245, 130, 32, 0.2), transparent 60%),
    #000;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.home-finale::before {
  content: "";
  position: absolute;
  inset: 18% auto auto 50%;
  width: 240px;
  height: 240px;
  border: 1px dotted rgba(245, 130, 32, 0.35);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.home-finale-inner {
  position: relative;
  width: min(100% - 40px, 720px);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 12px;
}
.home-finale-title {
  margin: 0;
  font-family: var(--display);
  font-size: calc(clamp(2.1rem, 5vw, 3.4rem) + 1px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.home-finale-text {
  margin: 0 0 8px;
  max-width: 36ch;
  color: #fff;
  font-size: 1.05em;
  line-height: 1.55;
}
.home-finale-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.home-finale-actions .btn {
  min-height: 52px;
  min-width: 180px;
  padding-inline: 22px;
}

@keyframes homeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 980px) {
  .home-wrap,
  .home-finale-inner { width: min(100% - 28px, var(--max)); }
  .home-cat {
    flex-basis: calc((100cqw - 12px) / 2);
    width: calc((100cqw - 12px) / 2);
  }
  .home-head-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .home-split-media {
    min-height: 360px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .home-wrap,
  .home-finale-inner { width: min(100% - 24px, var(--max)); }
  .home-cat span {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .home-finale-actions { width: 100%; }
  .home-finale-actions .btn {
    flex: 1 1 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cat { animation: none; }
}
.product-card {
  display: flex;
  flex-direction: column;
  animation: productCardIn 0.65s var(--ease) both;
  animation-delay: var(--card-delay, 0s);
  transition: transform 0.3s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
}
@keyframes productCardIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .product-card { animation: none; }
}
.product-media {
  position: relative;
  background: #0c0b0a;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 0;
}
.home-shop .product-media {
  aspect-ratio: 1 / 1;
}
.product-media-link { display: block; height: 100%; }
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.06); }
.sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--sale);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 10px;
}
.product-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.35s var(--ease);
}
.product-card:hover .product-actions { opacity: 1; transform: none; }
.action-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  border: 0;
  transition: 0.2s ease;
}
.action-btn:hover,
.action-btn.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.product-info {
  padding: 18px 0 0;
  text-align: left;
  display: grid;
  gap: 6px;
  width: 100%;
}
.product-meta {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-name {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.product-swatches {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  min-height: 18px;
}
.product-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(12, 11, 10, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.product-swatch-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.product-link {
  display: flex;
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  box-sizing: border-box;
  margin-top: 10px;
  min-height: 54px;
  padding: 14px 20px;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: none;
}
.product-link:hover,
.product-link.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: none;
  box-shadow: none;
}

/* Product detail page polish */
.pd-page {
  padding: 0 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(245, 130, 32, 0.08), transparent 55%),
    var(--bg);
}
.pd-crumb-wrap {
  padding-top: 22px;
  padding-bottom: 18px;
}
.pd-crumb {
  margin: 0;
  color: var(--muted);
}
.pd-crumb a { color: var(--muted); }
.pd-crumb a:hover { color: var(--brand); }
.pd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.pd-gallery { display: grid; gap: 12px; }
.pd-main {
  position: relative;
  overflow: hidden;
  background: #111;
  border: 0;
  aspect-ratio: 4 / 5;
  max-height: min(82vh, 820px);
}
.pd-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.7s var(--ease);
}
.pd-sale-float {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--sale);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 11px;
}
.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
}
.pd-thumb {
  padding: 0;
  border: 1px solid transparent;
  background: #111;
  aspect-ratio: 1;
  overflow: hidden;
  opacity: 0.72;
}
.pd-thumb:hover,
.pd-thumb.is-active {
  opacity: 1;
  border-color: var(--brand);
}
.pd-info {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  display: grid;
  gap: 16px;
  padding: clamp(8px, 2vw, 18px) 0;
  background: transparent;
  border: 0;
}
.pd-brand {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.pd-eyebrow {
  margin: -6px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  justify-content: flex-start;
}
.pd-title {
  margin: 0;
  font-family: var(--display);
  font-size: calc(clamp(1.85rem, 3.4vw, 2.6rem) + 2.5px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.pd-lead {
  margin: 0;
  color: var(--muted);
  font-size: 18.5px;
  line-height: 1.5;
  max-width: 36ch;
}
.pd-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pd-price {
  font-size: calc(1.35rem + 2.5px);
  font-weight: 700;
}
.pd-stock {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pd-stock.is-in { color: #1e7a45; }
.pd-stock.is-out { color: var(--sale); }
.pd-desc {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.pd-attr { display: grid; gap: 10px; }
.pd-attr-label {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.pd-size-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.pd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pd-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d7cfc4;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #4a4038;
}
.pd-chips-size .pd-chip {
  min-width: 42px;
  justify-content: center;
}
.pd-buy {
  display: grid;
  gap: 14px;
  margin: 4px 0 0;
}
.pd-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pd-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 54px;
  font-size: 15px;
}
.pd-perks {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
}
.pd-perks li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16.5px;
}
.pd-related {
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.02)),
    var(--bg-soft);
}

@media (max-width: 980px) {
  .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pd-layout { grid-template-columns: 1fr; }
  .pd-info { position: static; }
  .pd-main { max-height: none; }
}
@media (max-width: 560px) {
  .product-actions { opacity: 1; transform: none; }
  .shop-grid { gap: 20px 12px; }
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .shop-search {
    flex-direction: column;
    width: 100%;
    max-width: none;
  }
}

.pd-size-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}
.pd-size-col {
  display: grid;
  gap: 8px;
  align-content: start;
}
@media (max-width: 560px) {
  .pd-size-grid { grid-template-columns: 1fr; }
}

/* ========== Product page (look) ========== */
.look {
  background:
    radial-gradient(ellipse 45% 35% at 100% 0%, rgba(245, 130, 32, 0.1), transparent 55%),
    linear-gradient(180deg, #f3efe9 0%, var(--bg) 28%);
}
.look-top {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.look-top-inner {
  padding: 14px 0;
}
.look-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.look-crumb a { color: var(--muted); }
.look-crumb a:hover { color: var(--brand); }

.look-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: calc(100vh - var(--header-h) - 52px);
}

.look-gallery {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(160deg, #161311 0%, #0a0908 100%);
}
.look-gallery.is-single {
  grid-template-columns: 1fr;
}
.look-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: min(78vh, 760px);
  overflow-y: auto;
  padding-right: 2px;
}
.look-thumb {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 1px solid transparent;
  background: #1c1814;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.look-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.look-thumb:hover {
  opacity: 0.85;
}
.look-thumb.is-active {
  opacity: 1;
  border-color: var(--brand);
  transform: translateX(2px);
}

.look-frame {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 760px);
  background: #111;
}
.look-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease, transform 0.8s var(--ease);
  animation: lookReveal 0.9s var(--ease) both;
}
.look-image.is-switching { opacity: 0.35; }
.look-frame:hover .look-image { transform: scale(1.03); }
@keyframes lookReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .look-image { animation: none; }
  .look-frame:hover .look-image { transform: none; }
}
.look-sale {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: var(--sale);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 11px;
}

.look-panel {
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.4));
  border-left: 1px solid rgba(0,0,0,0.05);
}
.look-panel-inner {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) clamp(22px, 3vw, 36px);
  display: grid;
  gap: 18px;
  align-content: start;
  animation: lookPanelIn 0.7s var(--ease) both;
}
@keyframes lookPanelIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .look-panel-inner { animation: none; }
}

.look-brand {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--ink);
}
.look-collection {
  width: fit-content;
  margin-top: -6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.look-collection:hover { text-decoration: underline; }
.look-title {
  margin: 0;
  font-family: var(--display);
  font-size: calc(clamp(1.9rem, 3.6vw, 2.7rem) + 2.5px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.look-lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 34ch;
}

.look-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.look-price {
  font-size: calc(1.4rem + 2.5px);
  font-weight: 700;
}
.look-price .price-sale { color: var(--sale); }
.look-price .price-was {
  color: var(--muted);
  font-weight: 400;
  text-decoration: line-through;
  font-size: 18px;
}
.look-stock {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.look-stock.is-in { color: #1e7a45; }
.look-stock.is-out { color: var(--sale); }

.look-block { display: grid; gap: 10px; }
.look-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.look-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.look-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid #d8cfc4;
  background: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
  color: #3f3730;
}
.look-chips-size .look-chip {
  min-width: 44px;
  padding-inline: 10px;
}
.look-sizes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}
.look-size-col {
  display: grid;
  gap: 8px;
  align-content: start;
}
.look-size-flag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.look-buy {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}
.look-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.look-qty-control {
  display: inline-grid;
  grid-template-columns: 44px 58px 44px;
  border: 1px solid #cfc8bf;
  background: #fff;
}
.look-qty-btn {
  display: grid;
  place-items: center;
  height: 48px;
  font-size: 20px;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.look-qty-btn:hover {
  background: var(--ink);
  color: #fff;
}
.look-qty-control input {
  width: 100%;
  height: 48px;
  border: 0;
  border-left: 1px solid #cfc8bf;
  border-right: 1px solid #cfc8bf;
  text-align: center;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.look-qty-control input::-webkit-outer-spin-button,
.look-qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.look-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.look-add {
  width: 100%;
  min-height: 54px;
  justify-content: center;
}
.look-add:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.look-wish {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 132px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.look-wish:hover,
.look-wish.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.look-ship {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #0c0b0a;
  color: #fff;
}
.look-ship strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.look-ship span {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand);
}

.look-about {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 4px;
}
.look-about summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.look-about summary::-webkit-details-marker { display: none; }
.look-about summary::after {
  content: '+';
  float: right;
  color: var(--brand);
  font-size: 16px;
  line-height: 1;
}
.look-about[open] summary::after { content: '–'; }
.look-about-body {
  padding: 0 0 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.look-note {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
}

.look-related {
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.02)),
    var(--bg-soft);
}

@media (max-width: 980px) {
  .look-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .look-gallery {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .look-thumbs {
    order: 2;
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    padding: 12px 16px 16px;
    gap: 8px;
  }
  .look-thumb {
    width: 72px;
    flex: 0 0 72px;
  }
  .look-thumb.is-active { transform: none; }
  .look-frame {
    order: 1;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .look-panel {
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  .look-panel-inner {
    max-width: none;
  }
}
@media (max-width: 560px) {
  .look-sizes { grid-template-columns: 1fr; }
  .look-actions { grid-template-columns: 1fr; }
  .look-wish { width: 100%; }
}

/* ========== WhatsApp checkout (phone-first) ========== */
.wa {
  --wa: #128c7e;
  --wa-dark: #075e54;
  --wa-soft: rgba(18, 140, 126, 0.1);
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(ellipse 70% 35% at 100% 0%, rgba(18, 140, 126, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 30% at 0% 20%, rgba(245, 130, 32, 0.08), transparent 50%),
    var(--bg);
}
.wa-top {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background: #0c0b0a;
  color: #fff;
  border-bottom: 1px solid #1c1a18;
}
.wa-top-inner {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding-block: 10px;
}
.wa-back {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.wa-back:hover { color: var(--brand); }
.wa-top-copy {
  text-align: center;
  min-width: 0;
}
.wa-top-brand {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.wa-top-copy h1 {
  margin: 2px 0 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.wa-top-badge {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #25d366;
}

.wa-shell {
  padding: 18px 0 28px;
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.wa-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wa-progress li {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 10px 6px;
  background: rgba(255,255,255,0.65);
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wa-progress li span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: #ddd6cd;
  color: #4a4038;
  font-size: 12px;
}
.wa-progress li em {
  font-style: normal;
  white-space: nowrap;
}
.wa-progress li.is-active {
  color: var(--ink);
  border-bottom-color: var(--wa);
  background: #fff;
}
.wa-progress li.is-active span {
  background: var(--wa);
  color: #fff;
}

.wa-bag {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
}
.wa-bag-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
}
.wa-bag-summary::-webkit-details-marker { display: none; }
.wa-bag-thumbs {
  display: flex;
  align-items: center;
}
.wa-bag-thumbs span {
  width: 40px;
  height: 48px;
  overflow: hidden;
  background: #111;
  border: 2px solid #fff;
  margin-left: -10px;
}
.wa-bag-thumbs span:first-child { margin-left: 0; }
.wa-bag-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wa-bag-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.wa-bag-text strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.wa-bag-text span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.wa-bag-toggle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wa);
}
.wa-bag-body {
  padding: 0 14px 16px;
  border-top: 1px solid var(--line);
}
.wa-items {
  display: grid;
  gap: 12px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}
.wa-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.wa-item-media {
  width: 56px;
  height: 70px;
  overflow: hidden;
  background: #111;
}
.wa-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wa-item-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}
.wa-item-meta {
  margin: 4px 0 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}
.wa-item-price {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.wa-totals {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.wa-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
}
.wa-totals .is-total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 18px;
  font-weight: 700;
}
.wa-ship-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.wa-ship-flag {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: #0c0b0a;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.wa-edit-cart {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.wa-form {
  display: grid;
  gap: 14px;
}
.wa-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 18px 16px;
}
.wa-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}
.wa-card-head > span {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--wa);
}
.wa-card-head h2 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wa-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}
.wa-fields {
  display: grid;
  gap: 14px;
}
.wa-fields .form-row label em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.wa-fields .form-row input,
.wa-fields .form-row textarea,
.wa-fields .form-row select {
  min-height: 44px;
  font-size: 18px;
  padding: 10px 12px;
  background: #fff !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink);
  border: 1.5px solid #b7aba0 !important;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.wa-fields .form-row input:focus,
.wa-fields .form-row textarea:focus,
.wa-fields .form-row select:focus {
  outline: none;
  border-color: var(--brand) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.16);
}
.wa-fields .form-row textarea {
  min-height: 64px;
  resize: vertical;
}
.wa-field-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wa-field-split > div {
  display: grid;
  gap: 8px;
}
.wa-field-split label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.wa-how {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: wa-how;
}
.wa-how li {
  counter-increment: wa-how;
  position: relative;
  padding: 12px 12px 12px 42px;
  background: var(--wa-soft);
  border-left: 3px solid var(--wa);
  font-size: 15px;
  font-weight: 600;
}
.wa-how li::before {
  content: counter(wa-how);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--wa);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.wa-desk-actions {
  display: none;
}

.wa-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 11, 10, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.wa-sticky-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  width: min(100%, 720px);
  margin-inline: auto;
}
.wa-sticky-total {
  display: grid;
  gap: 2px;
  color: #fff;
  min-width: 72px;
}
.wa-sticky-total span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.wa-sticky-total strong {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
}
.wa-sticky-btn {
  width: 100%;
  min-height: 50px;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(18, 140, 126, 0.35);
}

/* Order success */
.wa-done {
  --wa: #128c7e;
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding: 24px 0 calc(96px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(ellipse 55% 35% at 50% 0%, rgba(245, 130, 32, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 30% at 0% 40%, rgba(18, 140, 126, 0.08), transparent 55%),
    var(--bg);
}
.wa-done-shell {
  display: grid;
  gap: 22px;
  max-width: 560px;
}
.wa-done-phone {
  overflow: hidden;
  background: #0b141a;
  border: 1px solid #1f2c34;
  box-shadow: 0 20px 44px rgba(12, 11, 10, 0.12);
  animation: waPhoneIn 0.55s var(--ease) both;
}
.wa-done-phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: #1f2c34;
  color: #e9edef;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wa-done-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
}
.wa-done-dot.is-soft { background: rgba(255,255,255,0.25); }
.wa-done-chat {
  display: grid;
  gap: 10px;
  padding: 16px 14px 18px;
  background:
    linear-gradient(180deg, rgba(11,20,26,0.2), rgba(11,20,26,0.55)),
    repeating-linear-gradient(0deg, transparent, transparent 11px, rgba(255,255,255,0.015) 11px, rgba(255,255,255,0.015) 12px);
  min-height: 140px;
}
.wa-done-bubble {
  max-width: 88%;
  padding: 10px 12px;
  font-size: 15.5px;
  line-height: 1.4;
  animation: waBubbleIn 0.45s var(--ease) both;
}
.wa-done-bubble.is-system {
  justify-self: center;
  max-width: 100%;
  background: rgba(255,255,255,0.08);
  color: rgba(233, 237, 239, 0.8);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wa-done-bubble.is-out {
  justify-self: end;
  background: #005c4b;
  color: #e9edef;
  border-radius: 10px 10px 2px 10px;
  animation-delay: 0.18s;
}
.wa-done-copy-block {
  text-align: left;
}
.wa-done-brand {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: calc(1.35rem + 1px);
  font-weight: 700;
}
.wa-done-eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.wa-done h1 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: calc(clamp(1.7rem, 6vw, 2.2rem) + 1px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.wa-done-order {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
}
.wa-done-order strong { color: var(--ink); }
.wa-done-steps {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.wa-done-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--muted);
}
.wa-done-steps li span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: #ebe4db;
  color: #4a4038;
  font-size: 14px;
  font-weight: 700;
}
.wa-done-steps li.is-done {
  color: #1e7a45;
  border-color: #c8ebd6;
  background: #e8f8ef;
}
.wa-done-steps li.is-done span {
  background: #1e7a45;
  color: #fff;
}
.wa-done-steps li.is-active {
  color: var(--ink);
  border-color: rgba(18, 140, 126, 0.35);
}
.wa-done-steps li.is-active span {
  background: var(--wa);
  color: #fff;
}
.wa-done-bank {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(12,11,10,0.06);
  box-shadow: 0 14px 32px rgba(12,11,10,0.05);
}
.wa-done-bank p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.wa-done-bank p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.wa-done-bank span {
  color: var(--muted);
  font-weight: 600;
}
.wa-done-bank strong {
  color: var(--ink);
  font-weight: 700;
  text-align: right;
  word-break: break-word;
}
.wa-done-panel .wa-done-phone-bar {
  background: var(--brand, #f58220);
}
.wa-done-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}
.wa-done-actions {
  display: grid;
  gap: 10px;
}
.wa-done-actions .btn {
  width: 100%;
  min-height: 52px;
  justify-content: center;
}
.wa-done-hint {
  margin: 14px 0 0;
  font-size: 14.5px;
  color: var(--muted);
}
.wa-done-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 11, 10, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.wa-done-sticky .btn {
  width: min(100%, 560px);
  margin-inline: auto;
  display: flex;
  min-height: 50px;
  justify-content: center;
}

/* Order tracking */
.track-page {
  padding: clamp(28px, 4vw, 48px) 0 clamp(48px, 7vw, 88px);
}
body:has(.track-page) .page-hero h1 {
  font-size: calc(clamp(2.1rem, 4.5vw, 3.2rem) + 3.5px);
}
body:has(.track-page) .page-hero p {
  font-size: 19.5px;
}
.track-shell {
  display: grid;
  gap: 22px;
  max-width: 720px;
}
.track-form {
  max-width: none;
}
.track-form .form-panel-fields {
  max-width: none;
}
.track-form .form-eyebrow {
  font-size: 15.5px;
}
.track-form .form-panel-head h2 {
  font-size: calc(clamp(1.45rem, 2.4vw, 1.85rem) + 3.5px);
}
.track-form .form-panel-head p {
  font-size: 19.5px;
}
.track-form .form-row label {
  font-size: 17px;
}
.track-form .form-row input,
.track-form .form-row select,
.track-form .form-row textarea {
  font-size: 22px;
}
.track-form .form-submit,
.track-form .btn {
  font-size: calc(1em + 1px);
}
.track-result {
  background: #fff;
  border: 1px solid rgba(12, 11, 10, 0.06);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 18px 40px rgba(12, 11, 10, 0.05);
}
.track-result-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.track-kicker {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.track-result-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: calc(clamp(1.4rem, 3vw, 1.9rem) + 1px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.track-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.track-status-shipped,
.track-status-processing {
  background: #fff4e5;
  color: #9a5b0a;
}
.track-status-delivered,
.track-status-paid {
  background: #e8f8ef;
  color: #1e7a45;
}
.track-status-cancelled {
  background: #fdecea;
  color: #c0392b;
}
.track-steps {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.track-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(12, 11, 10, 0.06);
  background: #faf9f7;
  color: var(--muted);
}
.track-steps li.is-done,
.track-steps li.is-active {
  background: #fff;
  color: var(--ink);
  border-color: rgba(245, 130, 32, 0.28);
}
.track-steps li.is-error {
  background: #fff7f6;
  border-color: #f0c2bb;
  color: #c0392b;
}
.track-step-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7e1d8;
  color: #5c534a;
  font-weight: 700;
  font-size: 15px;
}
.track-steps li.is-done .track-step-mark,
.track-steps li.is-active .track-step-mark {
  background: var(--brand);
  color: #fff;
}
.track-steps li.is-error .track-step-mark {
  background: #c0392b;
  color: #fff;
}
.track-steps strong {
  display: block;
  margin-bottom: 2px;
  font-size: 18px;
}
.track-steps p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.4;
}
.track-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}
.track-meta > div {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: #faf9f7;
  border: 1px solid rgba(12, 11, 10, 0.05);
}
.track-meta span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.track-meta strong {
  font-size: 17px;
  font-weight: 650;
}
.track-meta .price,
.track-meta .price-now,
.track-items .price,
.track-items .price-now {
  font-size: 1.15em;
  font-weight: 740;
  letter-spacing: -0.02em;
}
.track-items h3 {
  margin: 0 0 10px;
  font-size: calc(1.05rem + 1px);
  font-weight: 700;
}
.track-items ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.track-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}
.track-help {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
}
.track-help a {
  color: var(--brand-dark);
  font-weight: 700;
}
.account-page {
  font-size: calc(1em + 1px);
}
.account-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.account-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.account-toolbar .section-title {
  font-size: calc(1em + 1px);
}
.account-admin-link { margin-bottom: 24px; }
.account-empty { color: var(--muted); font-size: 18.5px; }
.account-orders { padding-top: 8px; }
.account-orders .cart-table {
  font-size: calc(1em + 1px);
}
.account-order-link {
  color: var(--brand-dark);
  font-weight: 700;
}
.account-order-link:hover { text-decoration: underline; }
.account-track-btn.btn,
.account-toolbar .account-track-btn,
.account-orders .account-track-btn {
  min-height: 40px;
  height: auto;
  padding: 9px 18px;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.account-settings {
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--line);
}
.account-settings .section-title {
  margin: 0 0 18px;
}
.account-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.account-settings-card {
  max-width: none;
  margin: 0;
}
.account-settings-card .form-panel-fields,
.account-settings-card .form-grid {
  max-width: none;
}
.account-settings-card .form-panel-head h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.account-page .form-alert {
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .account-settings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .track-meta { grid-template-columns: 1fr; }

  .btn,
  .btn-sm,
  .account-track-btn.btn {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    letter-spacing: 0.08em;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .account-toolbar {
    align-items: stretch;
  }
  .account-toolbar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .account-toolbar .account-track-btn,
  .account-orders .account-track-btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .order-success-actions,
  .home-finale-actions,
  .hero-actions,
  .wa-done-actions,
  .checkout-submit,
  .bag-summary-actions {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .order-success-actions .btn,
  .home-finale-actions .btn,
  .hero-actions .btn,
  .wa-done-actions .btn,
  .checkout-submit .btn,
  .form-submit,
  .form-panel-fields > .btn,
  .newsletter-form .btn,
  .contact-form .btn,
  .auth-form .btn,
  .track-form .btn,
  .pd-actions .btn,
  .pm-add,
  .pm-wish,
  .bag-sticky .btn,
  .chk-sticky .btn,
  .wa-done-sticky .btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding-inline: 14px;
    justify-content: center;
  }

  .pm-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pm-sticky-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }
  .pm-sticky .btn {
    width: auto;
    min-width: 112px;
    min-height: 44px;
    flex: 0 0 auto;
    font-size: 14px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow-wrap: normal;
    padding-inline: 14px;
  }
  .pm-add {
    font-size: 16px;
    min-height: 52px;
    white-space: nowrap;
    overflow-wrap: normal;
  }
  .pm-wish {
    font-size: 14px;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .chk-sticky-inner,
  .bag-sticky-inner {
    gap: 10px;
  }
  .chk-sticky .btn,
  .bag-sticky .btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .header-register {
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .btn {
    letter-spacing: 0.06em;
    padding: 12px 14px;
    font-size: 13.5px;
  }
  .btn-sm {
    padding: 10px 12px;
    font-size: 13px;
  }
  .account-orders {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .account-orders .cart-table {
    min-width: 560px;
  }
  .account-orders .account-track-btn {
    width: auto;
    min-width: 110px;
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 12px;
  }
}

@keyframes waPhoneIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@keyframes waBubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (min-width: 760px) {
  .wa {
    padding-bottom: 40px;
  }
  .wa-top {
    position: static;
  }
  .wa-top-inner {
    grid-template-columns: 48px 1fr 48px;
    min-height: 84px;
    padding-block: 18px;
  }
  .wa-top-copy h1 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
  }
  .wa-shell {
    max-width: 760px;
    padding-top: 28px;
    gap: 18px;
  }
  .wa-card {
    padding: 24px 22px;
  }
  .wa-field-split {
    grid-template-columns: 1fr 1fr;
  }
  .wa-desk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .wa-desk-actions .btn {
    min-height: 54px;
    padding-inline: 22px;
  }
  .wa-desk-actions .btn-whatsapp {
    flex: 1 1 240px;
  }
  .wa-sticky {
    display: none;
  }
  .wa-done {
    display: grid;
    align-items: center;
    padding: 48px 0 64px;
  }
  .wa-done-shell {
    max-width: 920px;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 36px;
  }
  .wa-done-actions {
    display: flex;
    flex-wrap: wrap;
  }
  .wa-done-actions .btn {
    width: auto;
    min-width: 200px;
  }
  .wa-done-sticky {
    display: none;
  }
}

@media (max-width: 420px) {
  .wa-field-split {
    grid-template-columns: 1fr;
  }
  .wa-progress li em {
    font-size: 10px;
  }
}


/* ========== Product page (pp) — light editorial ========== */
.pp {
  padding: 0 0 clamp(48px, 7vw, 88px);
  font-size: 20px;
  background:
    radial-gradient(ellipse 60% 45% at 100% 0%, rgba(245, 130, 32, 0.09), transparent 55%),
    radial-gradient(ellipse 45% 40% at 0% 30%, rgba(0, 0, 0, 0.025), transparent 50%),
    var(--bg);
}
.pp-wrap {
  padding-top: 22px;
}
.pp-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: clamp(22px, 3vw, 36px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.pp-crumb a { color: var(--muted); }
.pp-crumb a:hover { color: var(--brand); }

.pp-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.pp-media {
  display: grid;
  gap: 12px;
  max-width: 480px;
}
.pp-photo {
  position: relative;
  overflow: hidden;
  background: #e8e2d9;
  aspect-ratio: 4 / 5;
  max-height: min(560px, 62vh);
}
.pp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease, transform 0.75s var(--ease);
  animation: ppIn 0.8s var(--ease) both;
}
.pp-photo:hover img { transform: scale(1.03); }
@keyframes ppIn {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .pp-photo img { animation: none; }
  .pp-photo:hover img { transform: none; }
}
.pp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--sale);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 11px;
}
.pp-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pp-thumb {
  width: 76px;
  height: 96px;
  padding: 0;
  border: 1px solid transparent;
  background: #e8e2d9;
  overflow: hidden;
  opacity: 0.65;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.pp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pp-thumb:hover { opacity: 0.9; }
.pp-thumb.is-active {
  opacity: 1;
  border-color: var(--brand);
}

.pp-buy {
  display: grid;
  gap: 16px;
  padding-top: 4px;
  animation: ppPanel 0.7s var(--ease) 0.08s both;
}
@keyframes ppBuy {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .pp-buy { animation: none; }
}

.pp-brand {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--ink);
}
.pp-cat {
  width: fit-content;
  margin-top: -4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.pp-cat:hover { text-decoration: underline; }
.pp-name {
  margin: 0;
  font-family: var(--display);
  font-size: calc(clamp(1.85rem, 3.4vw, 2.55rem) + 2.5px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.pp-intro {
  margin: 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.pp-pricebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pp-price {
  font-size: calc(1.35rem + 2.5px);
  font-weight: 700;
}
.pp-price .price-sale { color: var(--sale); }
.pp-price .price-was {
  color: var(--muted);
  font-weight: 400;
  text-decoration: line-through;
  font-size: 17px;
}
.pp-stock {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pp-stock.is-in { color: #1e7a45; }
.pp-stock.is-out { color: var(--sale); }

.pp-group { display: grid; gap: 10px; }
.pp-group h2 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pp-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  background: #fff;
  border: 1px solid #d9d0c5;
  font-size: 17px;
  font-weight: 600;
  color: #433c35;
}
.pp-tags-size span {
  min-width: 42px;
}
.pp-sizes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}
.pp-sizes > div { display: grid; gap: 8px; }
.pp-sizes p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pp-cart {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}
.pp-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.pp-qty label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pp-qty-box {
  display: inline-grid;
  grid-template-columns: 42px 56px 42px;
  border: 1px solid #cfc8bf;
  background: #fff;
}
.pp-qty-box button {
  height: 46px;
  font-size: 20px;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.pp-qty-box button:hover {
  background: var(--ink);
  color: #fff;
}
.pp-qty-box input {
  width: 100%;
  height: 46px;
  border: 0;
  border-left: 1px solid #cfc8bf;
  border-right: 1px solid #cfc8bf;
  text-align: center;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.pp-qty-box input::-webkit-outer-spin-button,
.pp-qty-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pp-add {
  width: 100%;
  min-height: 54px;
  justify-content: center;
}
.pp-add:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.pp-wish {
  min-height: 48px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pp-wish:hover,
.pp-wish.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.pp-ship {
  margin: 2px 0 0;
  font-size: 20px;
  color: var(--muted);
  line-height: 1.45;
}
.pp-ship strong { color: var(--ink); }

.pp-story {
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.pp-story h2 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pp-story-text {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.pp-more {
  background: var(--bg-soft);
}

@media (max-width: 900px) {
  .pp-grid { grid-template-columns: 1fr; gap: 28px; }
  .pp-media { max-width: 420px; margin-inline: auto; }
  .pp-photo { max-height: min(480px, 58vh); }
}
@media (max-width: 560px) {
  .pp-sizes { grid-template-columns: 1fr; }
  .pp-thumb { width: 64px; height: 80px; }
}

/* ========== Product page (piece) — matches your preferences ========== */
.piece {
  font-size: 20px;
  line-height: 1.55;
  padding: 0 0 clamp(48px, 7vw, 88px);
  background:
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(245, 130, 32, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 35% at 0% 20%, rgba(0, 0, 0, 0.03), transparent 50%),
    var(--bg);
}
.piece-shell {
  padding-top: clamp(20px, 3vw, 28px);
}
.piece-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: clamp(24px, 4vw, 36px);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.piece-brand {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--ink);
}
.piece-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.piece-crumb a { color: var(--muted); }
.piece-crumb a:hover { color: var(--brand); }

.piece-layout {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.piece-gallery {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 420px;
}
.piece-main {
  position: relative;
  overflow: hidden;
  background: #e7e1d8;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  animation: pieceFade 0.7s var(--ease) both;
}
.piece-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease, transform 0.7s var(--ease);
}
.piece-main:hover img { transform: scale(1.03); }
@keyframes pieceFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .piece-main { animation: none; }
  .piece-main:hover img { transform: none; }
}
.piece-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--sale);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 10px;
}
.piece-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.piece-thumb {
  width: 64px;
  height: 80px;
  padding: 0;
  border: 1px solid transparent;
  background: #e7e1d8;
  overflow: hidden;
  opacity: 0.65;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.piece-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.piece-thumb:hover { opacity: 0.9; }
.piece-thumb.is-active {
  opacity: 1;
  border-color: var(--brand);
}

.piece-info {
  display: grid;
  gap: 18px;
  max-width: 560px;
  animation: pieceFade 0.7s var(--ease) 0.08s both;
}
@media (prefers-reduced-motion: reduce) {
  .piece-info { animation: none; }
}
.piece-collection {
  width: fit-content;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.piece-collection:hover { text-decoration: underline; }
.piece-title {
  margin: 0;
  font-family: var(--display);
  font-size: calc(clamp(1.9rem, 3.5vw, 2.6rem) + 2.5px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.piece-lead {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  max-width: 38ch;
}

.piece-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.piece-price {
  font-size: calc(1.35rem + 2.5px);
  font-weight: 700;
}
.piece-price .price-sale { color: var(--sale); }
.piece-price .price-was {
  color: var(--muted);
  font-weight: 400;
  text-decoration: line-through;
  font-size: 18px;
}
.piece-stock {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.piece-stock.is-in { color: #1e7a45; }
.piece-stock.is-out { color: var(--sale); }

.piece-details {
  display: grid;
  gap: 18px;
}
.piece-block {
  display: grid;
  gap: 10px;
}
.piece-block h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.piece-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.piece-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #d8cfc4;
  font-size: 17px;
  font-weight: 600;
  color: #403932;
}
.piece-chips-size span {
  min-width: 44px;
}
.piece-size-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}
.piece-size-col {
  display: grid;
  gap: 8px;
}
.piece-size-col h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.piece-actions {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}
.piece-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.piece-qty label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.piece-qty-control {
  display: inline-grid;
  grid-template-columns: 44px 58px 44px;
  border: 1px solid #cfc8bf;
  background: #fff;
}
.piece-qty-control button {
  height: 48px;
  font-size: 20px;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.piece-qty-control button:hover {
  background: var(--ink);
  color: #fff;
}
.piece-qty-control input {
  width: 100%;
  height: 48px;
  border: 0;
  border-left: 1px solid #cfc8bf;
  border-right: 1px solid #cfc8bf;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.piece-qty-control input::-webkit-outer-spin-button,
.piece-qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.piece-cta {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 10px;
}
.piece-cta .btn {
  min-height: 54px;
  width: 100%;
  justify-content: center;
}
.piece-cta .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.piece-cta .wishlist-btn.active {
  border-color: var(--brand);
  color: var(--brand);
}

.piece-ship {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: baseline;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  font-size: 20px;
}
.piece-ship-label {
  grid-row: 1 / 3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.piece-ship-value {
  font-weight: 700;
  color: var(--ink);
}
.piece-ship-note {
  color: var(--muted);
  font-size: 20px;
}

.piece-about {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: clamp(24px, 4vw, 36px);
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.piece-about h2 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.piece-about p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.piece-related {
  background: var(--bg-soft);
}

@media (max-width: 900px) {
  .piece-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .piece-gallery {
    max-width: 380px;
    margin-inline: auto;
  }
  .piece-info {
    max-width: none;
  }
  .piece-main {
    max-height: 460px;
  }
}
@media (max-width: 560px) {
  .piece-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .piece-size-row {
    grid-template-columns: 1fr;
  }
  .piece-cta {
    grid-template-columns: 1fr;
  }
  .piece-ship {
    grid-template-columns: 1fr;
  }
  .piece-ship-label {
    grid-row: auto;
  }
}

.piece-required {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
}
.piece-choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #d8cfc4;
  font-size: 17px;
  font-weight: 600;
  color: #403932;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.piece-chips-size .piece-choice {
  min-width: 44px;
}
.piece-choice:hover {
  border-color: rgba(245, 130, 32, 0.55);
  color: var(--ink);
}
.piece-choice.is-selected {
  border-color: var(--brand);
  background: rgba(245, 130, 32, 0.12);
  color: var(--brand-dark);
  box-shadow: 0 0 0 1px rgba(245, 130, 32, 0.2);
}
.cart-item-opts {
  margin-top: 4px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* ========== Modern product page (mp) ========== */
.mp {
  font-size: 20px;
  line-height: 1.55;
  padding-bottom: clamp(48px, 7vw, 96px);
  background:
    linear-gradient(180deg, #111 0 210px, transparent 210px),
    radial-gradient(ellipse 50% 35% at 100% 18%, rgba(245, 130, 32, 0.14), transparent 55%),
    var(--bg);
}
.mp-shell {
  padding-top: 28px;
}
.mp-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 28px;
  color: #fff;
}
.mp-brand {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
}
.mp-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.mp-crumb a { color: rgba(255,255,255,0.78); }
.mp-crumb a:hover { color: var(--brand); }

.mp-grid {
  display: grid;
  grid-template-columns: minmax(240px, 400px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.mp-visual {
  display: grid;
  gap: 10px;
  max-width: 400px;
}
.mp-frame {
  position: relative;
  overflow: hidden;
  background: #1a1612;
  aspect-ratio: 4 / 5;
  max-height: 500px;
}
.mp-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease, transform 0.7s var(--ease);
}
.mp-frame:hover img { transform: scale(1.04); }
.mp-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--sale);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 10px;
}
.mp-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mp-thumb {
  width: 58px;
  height: 72px;
  padding: 0;
  border: 1px solid transparent;
  background: #ece6de;
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.mp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-thumb:hover { opacity: 0.9; }
.mp-thumb.is-active {
  opacity: 1;
  border-color: var(--brand);
}

.mp-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
}
.mp-cat {
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.mp-cat:hover { text-decoration: underline; }
.mp-title {
  margin: 0;
  font-family: var(--display);
  font-size: calc(clamp(1.85rem, 3.2vw, 2.5rem) + 2.5px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.mp-lead {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  max-width: 40ch;
}

.mp-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mp-price {
  font-size: calc(1.35rem + 2.5px);
  font-weight: 700;
}
.mp-price .price-sale { color: var(--sale); }
.mp-price .price-was {
  color: var(--muted);
  font-weight: 400;
  text-decoration: line-through;
  font-size: 18px;
}
.mp-stock {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mp-stock.is-in { color: #1e7a45; }
.mp-stock.is-out { color: var(--sale); }

.mp-block { display: grid; gap: 10px; }
.mp-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.mp-label em {
  margin-left: 8px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
}
.mp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mp-chip,
.mp-choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  background: #f7f4ef;
  border: 1px solid #ddd4c8;
  font-size: 17px;
  font-weight: 600;
  color: #3f3831;
}
.mp-choice {
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.mp-choice:hover {
  border-color: rgba(245, 130, 32, 0.55);
  transform: translateY(-1px);
}
.mp-choice.is-selected,
.piece-choice.mp-choice.is-selected {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: none;
}
.mp-chips-size .mp-choice {
  min-width: 46px;
}
.mp-size-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}
.mp-size-col { display: grid; gap: 8px; }
.mp-size-flag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.mp-buy {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: end;
  margin-top: 4px;
}
.mp-qty {
  display: grid;
  gap: 8px;
}
.mp-qty label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mp-qty-box {
  display: inline-grid;
  grid-template-columns: 40px 52px 40px;
  border: 1px solid #cfc8bf;
  background: #fff;
}
.mp-qty-box button {
  height: 48px;
  font-size: 20px;
}
.mp-qty-box button:hover {
  background: var(--ink);
  color: #fff;
}
.mp-qty-box input {
  width: 100%;
  height: 48px;
  border: 0;
  border-left: 1px solid #cfc8bf;
  border-right: 1px solid #cfc8bf;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.mp-qty-box input::-webkit-outer-spin-button,
.mp-qty-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.mp-add {
  width: 100%;
  min-height: 48px;
  justify-content: center;
}
.mp-add:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.mp-wish {
  min-height: 48px;
  min-width: 110px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.2s ease;
}
.mp-wish:hover,
.mp-wish.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.mp-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}
.mp-meta span {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.mp-meta strong {
  font-weight: 700;
  color: var(--ink);
}

.mp-about {
  margin-top: 28px;
  padding: clamp(22px, 3vw, 30px);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  max-width: 820px;
}
.mp-about h2 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mp-about p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.mp-related {
  background: var(--bg-soft);
}

@media (max-width: 900px) {
  .mp {
    background:
      linear-gradient(180deg, #111 0 160px, transparent 160px),
      var(--bg);
  }
  .mp-grid {
    grid-template-columns: 1fr;
  }
  .mp-visual {
    max-width: 360px;
    margin-inline: auto;
  }
  .mp-frame { max-height: 440px; }
  .mp-buy {
    grid-template-columns: 1fr;
  }
  .mp-wish { width: 100%; }
}
@media (max-width: 560px) {
  .mp-size-grid,
  .mp-meta { grid-template-columns: 1fr; }
}

.mp-desc {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
  max-width: 42ch;
}

/* Selected size/colour chips on classic PDP */
.pd-chips .piece-choice.pd-chip {
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.pd-chips .piece-choice.pd-chip.is-selected {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

/* ========== Product modern (pm) ========== */
.pm {
  --pm-ink: #0c0b0a;
  --pm-muted: #6b645c;
  --pm-line: rgba(0, 0, 0, 0.08);
  position: relative;
  font-size: 20px;
  padding-bottom: clamp(40px, 6vw, 72px);
  background:
    radial-gradient(ellipse 50% 35% at 100% 0%, rgba(245, 130, 32, 0.11), transparent 55%),
    radial-gradient(ellipse 40% 30% at 0% 15%, rgba(0, 0, 0, 0.04), transparent 50%),
    var(--bg);
}
.pm-crumb {
  position: relative;
  z-index: 2;
  padding: 16px 0 10px;
  color: var(--pm-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pm-crumb nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.pm-crumb a { color: var(--pm-muted); }
.pm-crumb a:hover { color: var(--brand); }

.pm-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  width: min(100% - 40px, 1160px);
  margin-inline: auto;
}

.pm-media {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}
.pm-media.is-single {
  grid-template-columns: minmax(0, 1fr);
}
.pm-hero-col {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.pm-hero {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  aspect-ratio: 4 / 5;
  max-height: min(86vh, 860px);
  animation: pmReveal 0.7s var(--ease) both;
}
.pm-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.28s ease, transform 0.8s var(--ease);
}
.pm-hero img.is-switching {
  opacity: 0.35;
  transform: scale(1.02);
}
.pm-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(12, 11, 10, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.pm-nav:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-50%) scale(1.04);
}
.pm-nav-prev { left: 14px; }
.pm-nav-next { right: 14px; }
.pm-count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 6px 10px;
  background: rgba(12, 11, 10, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pm-sale {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 11px;
  background: var(--sale);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pm-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 72px;
  gap: 10px;
  max-height: none;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.pm-thumb {
  padding: 0;
  border: 1px solid transparent;
  background: #161616;
  aspect-ratio: 1;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.pm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pm-thumb:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.pm-thumb.is-active {
  opacity: 1;
  border-color: var(--brand);
}

.pm-buy {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  display: grid;
  gap: 16px;
  padding: 4px 0 8px;
  animation: pmRise 0.65s var(--ease) 0.08s both;
}
.pm-brand {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--pm-ink);
}
.pm-collection {
  display: inline-flex;
  width: fit-content;
  margin-top: -4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.pm-collection:hover { text-decoration: underline; }
.pm-title {
  margin: 0;
  font-family: var(--display);
  font-size: calc(clamp(1.85rem, 3.4vw, 2.6rem) + 2.5px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--pm-ink);
}
.pm-desc {
  margin: 0;
  max-width: 42ch;
  color: var(--pm-muted);
  font-size: 20px;
  line-height: 1.65;
}
.pm-pricebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(245, 130, 32, 0.08), transparent 55%),
    #fff;
  border: 1px solid var(--pm-line);
}
.pm-price {
  min-width: 0;
  font-size: clamp(1.75rem, 3.4vw, 2.25rem);
}
.pm-price .price {
  gap: 0.4em 0.7em;
}
.pm-price .price-old {
  font-size: 0.48em;
}
.pm-stock {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pm-stock.is-in { color: #1e7a45; }
.pm-stock.is-out { color: var(--sale); }

.pm-block { display: grid; gap: 10px; }
.pm-label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pm-ink);
}
.pm-label em {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--pm-muted);
}
.pm-materials {
  margin: 0;
  color: var(--pm-muted);
  font-size: 20px;
  font-weight: 500;
}
.pm-lead {
  margin: 0;
  font-size: 1.15em;
  line-height: 1.55;
  color: var(--pm-ink);
  font-weight: 500;
  max-width: 38ch;
}
.pm-size-guide-btn {
  margin-left: auto;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  cursor: pointer;
}
.pm-colour-choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pm-colour-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(12, 11, 10, 0.18);
  flex: 0 0 auto;
}
.pm-size-dialog {
  border: 0;
  padding: 0;
  max-width: min(520px, 92vw);
  background: transparent;
}
.pm-size-dialog::backdrop {
  background: rgba(12, 11, 10, 0.55);
}
.pm-size-dialog-inner {
  background: #fff;
  padding: 24px 22px 20px;
  border: 1px solid rgba(12, 11, 10, 0.08);
}
.pm-size-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.pm-size-dialog-head h2 {
  margin: 0;
  font-size: 1.35rem;
}
.pm-size-dialog-close {
  border: 0;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.pm-size-table-wrap {
  overflow-x: auto;
  margin: 14px 0;
}
.pm-size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
}
.pm-size-table th,
.pm-size-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.pm-size-table th {
  font-size: 0.78em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.pm-size-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95em;
}
.pm-size-grid {
  display: grid;
  gap: 12px;
}
.pm-size-col {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.pm-size-flag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pm-muted);
  white-space: nowrap;
  min-width: 2ch;
}
.pm-choices {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}
.pm-choice {
  min-width: 48px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #cfc6bb;
  background: #fff;
  color: #3f3831;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.pm-choice:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.pm-choice.is-selected,
.piece-choice.pm-choice.is-selected {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.pm-actions {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}
.pm-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pm-qty label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pm-muted);
}
.pm-qty-box {
  display: inline-grid;
  grid-template-columns: 44px 58px 44px;
  border: 1px solid #cfc6bb;
  background: #fff;
}
.pm-qty-box button {
  min-height: 48px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.pm-qty-box button:hover { background: #f3efe9; }
.pm-qty-box input {
  width: 100%;
  border: 0;
  border-left: 1px solid #cfc6bb;
  border-right: 1px solid #cfc6bb;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  -moz-appearance: textfield;
}
.pm-qty-box input::-webkit-outer-spin-button,
.pm-qty-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pm-add {
  width: 100%;
  min-height: 54px;
  justify-content: center;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pm-wish {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  width: 100%;
  border: 1px solid #cfc6bb;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.pm-wish:hover,
.pm-wish.active {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}
.pm-wish.active svg { fill: currentColor; }

.pm-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 4px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--pm-line);
  text-align: left;
  justify-items: start;
}
.pm-meta-item,
.pm-meta > div {
  display: grid;
  gap: 4px;
  justify-items: start;
}
.pm-meta span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pm-muted);
}
.pm-meta strong {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.pm-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 11, 10, 0.94);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s var(--ease), opacity 0.28s ease;
}
.pm-sticky.is-visible {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.pm-sticky-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  width: min(100%, var(--max));
  margin-inline: auto;
}
.pm-sticky-info {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: #fff;
}
.pm-sticky-info strong {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pm-sticky-info span {
  font-size: 1em;
  color: rgba(255,255,255,0.92);
}
.pm-sticky-info .price .price-now {
  color: #fff;
}
.pm-sticky-info .price.is-sale .price-now {
  color: var(--brand);
}
.pm-sticky-info .price-old {
  color: rgba(255,255,255,0.45);
}
.pm-sticky .btn {
  min-height: 46px;
  padding-inline: 18px;
  white-space: nowrap;
}

.pm-related {
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.02)),
    var(--bg-soft);
}

@keyframes pmReveal {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: none; }
}
@keyframes pmRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .pm {
    background:
      radial-gradient(ellipse 70% 28% at 50% 0%, rgba(245, 130, 32, 0.14), transparent 55%),
      var(--bg);
    padding-bottom: calc(12px + 76px + env(safe-area-inset-bottom, 0px));
  }
  .pm-crumb { padding-top: 14px; }

  .pm-stage {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pm-media {
    gap: 12px;
  }
  .pm-thumbs {
    grid-auto-columns: 68px;
  }
  .pm-hero {
    max-height: none;
    aspect-ratio: 4 / 5;
  }
  .pm-nav {
    width: 40px;
    height: 40px;
  }
  .pm-nav-prev { left: 10px; }
  .pm-nav-next { right: 10px; }
  .pm-buy {
    position: static;
    padding-top: 0;
    padding-bottom: 0;
    gap: 14px;
  }
  .pm-meta {
    margin-bottom: 0;
  }
}

@media (max-width: 560px) {
  .pm-title { font-size: calc(clamp(1.7rem, 8vw, 2.25rem) + 2.5px); }
  .pm-size-grid { gap: 14px; }
}

@media (min-width: 981px) {
  .pm-sticky { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .pm-hero,
  .pm-buy,
  .pm-hero img,
  .pm-sticky {
    animation: none !important;
    transition: none !important;
  }
}

/* ========== Mobile menu drawer ========== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.mobile-menu:not([hidden]) {
  display: block;
}
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  animation: menuFade 0.25s ease both;
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(88vw, 340px);
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(245, 130, 32, 0.16), transparent 55%),
    #0c0b0a;
  color: #fff;
  font-size: 1em;
  font-family: var(--font);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 18px 18px calc(18px + env(safe-area-inset-bottom, 0px));
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.35);
  animation: menuSlide 0.3s var(--ease) both;
  overflow: auto;
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-brand {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
}
.mobile-menu-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  background: transparent;
}
.mobile-menu-close:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.mobile-menu-nav {
  display: grid;
  gap: 2px;
  padding: 18px 0;
}
.mobile-menu-nav > a,
.mobile-shop-fold > summary {
  display: block;
  padding: 14px 4px;
  color: #ebe4dc;
  font-size: 0.95em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  list-style: none;
  cursor: pointer;
}
.mobile-shop-fold > summary::-webkit-details-marker { display: none; }
.mobile-menu-nav > a.active,
.mobile-menu-nav > a:hover,
.mobile-shop-fold > summary:hover {
  color: var(--brand);
}
.mobile-shop-fold {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-shop-links {
  display: grid;
  gap: 2px;
  padding: 4px 0 14px 10px;
}
.mobile-shop-links a {
  display: block;
  padding: 10px 4px;
  color: rgba(235, 228, 220, 0.72);
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  text-decoration: none;
  border: 0;
}
.mobile-shop-links a.is-sub {
  padding-left: 14px;
  font-weight: 500;
  color: rgba(235, 228, 220, 0.55);
}
.mobile-shop-links a.is-sub.depth-2 {
  padding-left: 24px;
  color: rgba(235, 228, 220, 0.45);
}
.mobile-shop-links a.is-sub.depth-3 {
  padding-left: 34px;
  color: rgba(235, 228, 220, 0.38);
}
.mobile-cat-fold {
  border: 0;
}
.mobile-cat-fold > summary {
  list-style: none;
  cursor: pointer;
  padding: 0;
  border: 0;
  color: rgba(235, 228, 220, 0.72);
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
}
.mobile-cat-fold > summary::-webkit-details-marker { display: none; }
.mobile-cat-fold > summary a {
  display: inline-block;
  padding: 10px 4px;
  color: inherit;
  text-decoration: none;
}
.mobile-cat-fold > summary a:hover { color: var(--brand); }
.mobile-cat-kids {
  display: grid;
  gap: 2px;
  padding: 0 0 8px 14px;
}
.mobile-cat-kids a {
  padding: 8px 4px;
  color: rgba(235, 228, 220, 0.55);
  font-weight: 500;
}
.mobile-cat-kids a.is-nested {
  padding-left: 12px;
  color: rgba(235, 228, 220, 0.4);
  font-size: 0.95em;
}

@media (max-width: 980px) {
  .cat-bar-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .cat-bar-inner::-webkit-scrollbar { display: none; }
  .cat-bar-link {
    padding: 0 14px;
    font-size: 0.82em;
    letter-spacing: 0.06em;
  }
  .cat-bar-panel {
    display: none;
  }
  .cat-bar-caret { display: none; }
  .cat-bar-extra { margin-left: 0; }
}
.mobile-shop-links a.active,
.mobile-shop-links a:hover {
  color: var(--brand);
}
.mobile-menu-tools {
  display: grid;
  gap: 8px;
  padding: 8px 0 16px;
}
.mobile-menu-tools a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mobile-menu-tools a:hover { color: var(--brand); }
.mobile-menu-tools span {
  min-width: 1.4em;
  height: 1.4em;
  display: inline-grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 0.75em;
  font-weight: 700;
}
.mobile-menu-currency {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-currency a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.72);
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.mobile-menu-currency a.is-active,
.mobile-menu-currency a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
body.menu-open {
  overflow: hidden;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-toggle span {
  transition: transform 0.22s ease, opacity 0.22s ease;
}
@keyframes menuSlide {
  from { transform: translateX(-100%); }
  to { transform: none; }
}
@keyframes menuFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1320px) and (min-width: 981px) {
  .header-bar { gap: 16px; }
  .main-nav > a,
  .main-nav .nav-top-link { padding: 10px 10px; letter-spacing: 0.1em; }
  .main-nav > a:first-child { padding-left: 2px; }
  .cart-total { display: none; }
  .cart-link { width: 42px; padding: 0; }
  .currency-code { display: none; }
  .currency-option { padding: 3px 5px; }
}

@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
  .nav-toggle { display: none !important; }
}

/* Mobile fit-in refinements */
@media (max-width: 980px) {
  :root {
    --header-main-h: 70px;
    --cat-bar-h: 50px;
    --header-h: calc(var(--header-main-h) + var(--cat-bar-h));
  }
  body:not(:has(.cat-bar)) {
    --cat-bar-h: 0px;
  }
  .container { width: min(100% - 28px, var(--max)); }
  .topbar-inner { width: min(100% - 28px, var(--max)); gap: 10px; }
  .header-bar {
    width: min(100% - 28px, var(--max));
    grid-template-columns: 42px 1fr auto;
    gap: 10px;
    min-height: var(--header-main-h);
  }
  .cat-bar-inner {
    width: min(100% - 28px, var(--max));
  }
  .nav-toggle { display: inline-flex; }
  .logo { justify-self: center; }
  .logo-img { height: 52px; }
  .main-nav { display: none !important; }
  .header-tools { gap: 4px; }
  .header-account,
  .header-logout,
  .header-register { display: none; }
  .header-bag-tools {
    gap: 0;
  }
  .header-bag-tools .wishlist-link,
  .header-bag-tools .cart-link {
    display: inline-flex;
    width: 36px;
    padding: 0;
    justify-content: center;
  }
  .currency-switch {
    display: inline-flex;
    margin-right: 0;
    transform: scale(0.92);
    transform-origin: center right;
  }
  .currency-switch .currency-code { display: none; }
  .currency-option { padding: 3px 5px; }
  .cart-total { display: none; }
  .cart-link { width: 42px; padding: 0; }

  .pm-stage { width: min(100% - 28px, 1160px); gap: 22px; }
  .pm-crumb .container { width: min(100% - 28px, var(--max)); }
  .pm-hero { aspect-ratio: 3 / 4; max-height: none; }
  .pm-nav { width: 38px; height: 38px; }
  .pm-nav-prev { left: 8px; }
  .pm-nav-next { right: 8px; }
  .pm-count { font-size: 11px; right: 8px; bottom: 8px; }
  .pm-thumbs { grid-auto-columns: 64px; gap: 8px; }
  .pm-buy { gap: 14px; }
  .pm-desc { max-width: none; font-size: 18px; }
  .pm-meta {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    margin: 4px 0 0;
    border-top: 0;
    background: #f7f3ee;
    border: 1px solid #e7dfd4;
    overflow: hidden;
  }
  .pm-meta-item,
  .pm-meta > div {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-bottom: 1px solid #e7dfd4;
  }
  .pm-meta-item:last-child,
  .pm-meta > div:last-child {
    border-bottom: 0;
  }
  .pm-meta span {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin: 0;
  }
  .pm-meta strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    justify-self: end;
    text-align: right;
  }
  .pm-choice { min-width: 44px; min-height: 42px; font-size: 15px; }
  .pm-size-col { gap: 8px; }
  .wa-shell,
  .wa-check-body .container { width: min(100% - 28px, var(--max)); }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--max)); }
  .header-bar { width: min(100% - 24px, var(--max)); }
  .topbar-inner { width: min(100% - 24px, var(--max)); }
  .topbar p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .pm-stage { width: min(100% - 24px, 1160px); }
  .pm-crumb .container { width: min(100% - 24px, var(--max)); }
  .pm-brand { font-size: clamp(1.35rem, 7vw, 1.7rem); }
  .pm-title { font-size: calc(clamp(1.55rem, 7.5vw, 2rem) + 1px); }
  .pm-pricebar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pm-meta-item,
  .pm-meta > div {
    grid-template-columns: 88px 1fr;
    padding: 11px 12px;
  }
  .pm-meta span { font-size: 10.5px; }
  .pm-meta strong { font-size: 14.5px; }
  .pm-actions { gap: 10px; }
  .pm-add {
    min-height: 52px;
    font-size: 16px;
  }
  .pm-wish { min-height: 48px; }
  .pm-sticky-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }
  .pm-sticky .btn {
    width: auto;
    min-width: 112px;
    min-height: 44px;
    font-size: 14px;
    justify-content: center;
    padding-inline: 14px;
  }
  .product-grid { gap: 14px 8px; }
  .section { padding: clamp(36px, 7vw, 64px) 0; }
  .section-head { margin-bottom: 28px; }
}

@media (max-width: 980px) {
  html, body { overflow-x: hidden; }
  .pm, .pm-stage, .pm-buy, .pm-media { max-width: 100%; }
  .pm-choices { max-width: 100%; }
}

/* ========== Mobile 2x2 image grids ========== */
@media (max-width: 980px) {
  .product-grid,
  .shop-layout .product-grid,
  .shop-grid,
  .category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    align-items: stretch;
  }
  .product-card {
    min-width: 0;
    height: 100%;
  }
  .product-media {
    aspect-ratio: 3 / 4;
    width: 100%;
  }
  .product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .product-info {
    padding-top: 12px;
    gap: 6px;
    align-content: start;
    text-align: left;
  }
  .product-name {
    font-size: 17px;
    line-height: 1.3;
    min-height: calc(1.3em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-meta {
    font-size: 12.5px;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
  .product-price {
    font-size: 17px;
    line-height: 1.25;
  }
  .product-price .price-now {
    font-size: 1em;
  }
  .product-price .price-old {
    font-size: 0.82em;
  }
  .product-link {
    display: flex;
    width: 100%;
    min-height: 50px;
    font-size: 13px;
    letter-spacing: 0.1em;
    padding: 12px 14px;
  }
  .product-actions {
    opacity: 1;
    transform: none;
    top: 8px;
    right: 8px;
    gap: 6px;
  }
  .action-btn {
    width: 34px;
    height: 34px;
  }
  .sale-badge {
    top: 8px;
    left: 8px;
    font-size: 11px;
    padding: 5px 7px;
  }
  .category-card {
    min-width: 0;
    aspect-ratio: 3 / 4;
  }
  .category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .category-card span {
    font-size: 14px;
    padding: 12px;
  }
}

@media (max-width: 560px) {
  .product-grid,
  .shop-layout .product-grid,
  .shop-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 10px;
  }
  .product-meta {
    font-size: 13px;
  }
  .product-name {
    font-size: 16.5px;
    min-height: calc(1.3em * 2);
  }
  .product-price {
    font-size: 16.5px;
  }
  .pm-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: unset;
    gap: 8px;
    overflow: visible;
  }
  .pm-thumb {
    width: 100%;
    aspect-ratio: 1;
  }
}

@media (max-width: 980px) {
  .section {
    padding: clamp(32px, 5.5vw, 56px) 0;
  }
  .section > .container {
    width: min(100% - 28px, var(--max));
  }
  .section-head {
    margin-bottom: 22px;
  }
  .section-title {
    font-size: calc(clamp(1.55rem, 5.5vw, 2.1rem) + 1px);
  }
  .section-sub {
    font-size: 16.5px;
    max-width: 34ch;
  }
  .product-grid,
  .shop-layout .product-grid {
    gap: 14px 10px;
  }
}

@media (max-width: 560px) {
  .section > .container {
    width: min(100% - 24px, var(--max));
  }
  .product-link {
    display: flex;
    width: 100%;
    min-height: 48px;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 12px 12px;
  }
}

/* ========== Cart bag ========== */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.bag {
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(ellipse 50% 35% at 100% 0%, rgba(245, 130, 32, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 30% at 0% 20%, rgba(18, 140, 126, 0.06), transparent 50%),
    var(--bg);
}
.bag-top {
  background:
    radial-gradient(ellipse 50% 80% at 80% 0%, rgba(245,130,32,0.18), transparent 50%),
    #0c0b0a;
  color: #fff;
  border-bottom: 1px solid #1c1a18;
}
.bag-top-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 24px;
}
.bag-brand {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.bag-top h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.bag-sub {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
}
.bag-continue {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  white-space: nowrap;
}
.bag-continue:hover { text-decoration: underline; }
.bag-shell {
  padding: 28px 0 40px;
}
.bag-empty {
  max-width: 420px;
  margin: 40px auto;
  text-align: center;
  padding: 40px 24px;
  background: #fff;
  border: 1px solid rgba(12,11,10,0.06);
  box-shadow: 0 18px 40px rgba(12,11,10,0.05);
}
.bag-empty-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.bag-empty h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.8rem;
}
.bag-empty p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}
.bag-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
.bag-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bag-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(12,11,10,0.06);
  box-shadow: 0 10px 24px rgba(12,11,10,0.035);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.bag-row:hover {
  border-color: rgba(245,130,32,0.28);
  transform: translateY(-1px);
}
.bag-media {
  width: 96px;
  height: 120px;
  overflow: hidden;
  background: #111;
}
.bag-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bag-info { display: grid; gap: 6px; min-width: 0; }
.bag-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.bag-name:hover { color: var(--brand); }
.bag-opts,
.bag-unit {
  margin: 0;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--muted);
}
.bag-unit .price,
.bag-unit .price .price-now {
  font-size: 16.5px;
  color: var(--muted);
  font-weight: 650;
}
.bag-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.bag-qty {
  display: inline-grid;
  grid-template-columns: 36px 52px 36px;
  border: 1px solid #cfc6bb;
  background: #fff;
}
.bag-qty button {
  min-height: 42px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.bag-qty button:hover { background: #f3efe9; }
.bag-qty input {
  width: 100%;
  border: 0;
  border-left: 1px solid #cfc6bb;
  border-right: 1px solid #cfc6bb;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  -moz-appearance: textfield;
}
.bag-qty input::-webkit-outer-spin-button,
.bag-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.bag-remove {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sale);
}
.bag-remove:hover { text-decoration: underline; }
.bag-line {
  font-size: 1.15em;
  font-weight: 700;
  white-space: nowrap;
}
.bag-line .price,
.bag-totals .price,
.bag-sticky .price {
  font-size: 1em;
}
.bag-summary { position: sticky; top: calc(var(--header-h) + 16px); }
.bag-summary-card {
  background: #fff;
  border: 1px solid rgba(12,11,10,0.06);
  padding: 22px;
  box-shadow: 0 14px 32px rgba(12,11,10,0.04);
}
.bag-summary-kicker {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.bag-summary-card h2 {
  margin: 0 0 18px;
  font-size: 1.35rem;
  font-weight: 700;
}
.bag-totals {
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.bag-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 18.5px;
}
.bag-ship-free {
  font-weight: 760;
  color: var(--brand-dark);
}
.bag-totals .is-total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 1.15em;
  font-weight: 700;
}
.bag-totals .is-total .price {
  font-size: 1.15em;
}
.bag-note {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}
.bag-ship {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0 18px;
  padding: 12px 14px;
  background: #0c0b0a;
  color: #fff;
}
.bag-ship span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.bag-ship strong {
  color: var(--brand);
  font-size: 17px;
}
.bag-checkout {
  width: 100%;
  min-height: 52px;
  justify-content: center;
}
.bag-shop-link {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.bag-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(12,11,10,0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -12px 30px rgba(0,0,0,0.25);
}
.bag-sticky-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  width: min(100%, 720px);
  margin-inline: auto;
  color: #fff;
}
.bag-sticky-inner span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.bag-sticky-inner strong { font-size: 18px; }
.bag-sticky .btn { min-height: 48px; padding-inline: 20px; }

/* ========== Checkout (chk) ========== */
.chk {
  --wa: #128c7e;
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(ellipse 55% 35% at 0% 0%, rgba(245,130,32,0.1), transparent 55%),
    radial-gradient(ellipse 45% 30% at 100% 10%, rgba(12,11,10,0.04), transparent 50%),
    var(--bg);
}
.chk-top {
  background:
    radial-gradient(ellipse 50% 80% at 80% 0%, rgba(245,130,32,0.18), transparent 50%),
    #0c0b0a;
  color: #fff;
  border-bottom: 1px solid #1c1a18;
}
.chk-top-inner {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 10px;
  align-items: center;
  min-height: 84px;
  padding-block: 16px;
}
.chk-back {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.chk-back:hover {
  color: var(--brand);
  border-color: rgba(245,130,32,0.4);
  background: rgba(245,130,32,0.08);
}
.chk-top-copy { text-align: center; min-width: 0; }
.chk-brand {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.chk-top-copy h1 {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: calc(clamp(1.25rem, 3vw, 1.85rem) + 1px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.chk-sub {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 15.5px;
}
.chk-wa-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #25d366;
}
.chk-shell { padding: 22px 0 40px; }
.chk .form-row label {
  font-size: 17px;
}
.chk-desk-actions .btn,
.chk-sticky .btn {
  min-height: 54px;
  padding: 13px 24px;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.chk-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.chk-steps li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 8px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(12,11,10,0.05);
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.chk-steps li span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: #ddd6cd;
  color: #4a4038;
  font-size: 13px;
}
.chk-steps li.is-active {
  color: var(--ink);
  background: #fff;
  border-bottom-color: var(--brand);
  box-shadow: 0 8px 20px rgba(12,11,10,0.04);
}
.chk-steps li.is-active span {
  background: var(--brand);
  color: #fff;
}
.chk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}
.chk-form { display: grid; gap: 14px; }
.chk-card {
  background: #fff;
  border: 1px solid rgba(12, 11, 10, 0.06);
  padding: 22px 20px;
  box-shadow: 0 14px 32px rgba(12, 11, 10, 0.04);
}
.chk-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(12, 11, 10, 0.06);
}
.chk-card-head > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background: linear-gradient(160deg, #222 0%, var(--ink) 100%);
  box-shadow: 0 8px 16px rgba(12, 11, 10, 0.18);
}
.chk-card-head h2 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: calc(1.25rem + 1px);
  font-weight: 700;
}
.chk-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.chk-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.chk-fields .form-row { grid-column: 1 / -1; }
.chk-fields .chk-half { grid-column: span 1; }
.chk-fields label em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.chk-fields input,
.chk-fields textarea,
.chk-fields select {
  min-height: 44px;
  font-size: 19px;
  padding: 10px 12px;
  background: #fff !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink);
  border: 1.5px solid #b7aba0 !important;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.chk-fields input:hover,
.chk-fields textarea:hover,
.chk-fields select:hover {
  border-color: #9f9184 !important;
  background: #fff !important;
}
.chk-fields input:focus,
.chk-fields textarea:focus,
.chk-fields select:focus {
  outline: none;
  border-color: var(--brand) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.16);
}
.chk-fields textarea { min-height: 64px; resize: vertical; }
.chk-methods {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}
.chk-method {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  padding: 15px 14px;
  border: 1px solid rgba(12, 11, 10, 0.08);
  background: #faf9f7;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.chk-method:hover {
  border-color: rgba(245, 130, 32, 0.35);
  background: #fff;
}
.chk-method input {
  margin-top: 3px;
  accent-color: var(--brand, #f58220);
}
.chk-method.is-active {
  border-color: var(--brand, #f58220);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.12), 0 10px 22px rgba(12, 11, 10, 0.04);
}
.chk-method-copy {
  display: grid;
  gap: 4px;
}
.chk-method-copy strong {
  font-family: var(--display);
  font-size: calc(1.05rem + 1px);
  font-weight: 700;
  color: var(--ink);
}
.chk-method-copy small {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.45;
}
.chk-how {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  counter-reset: chk-how;
}
.chk-how li {
  counter-increment: chk-how;
  position: relative;
  padding: 12px 12px 12px 42px;
  background: rgba(18,140,126,0.08);
  border-left: 3px solid var(--wa);
  font-size: 16.5px;
  font-weight: 600;
}
.chk-how li::before {
  content: counter(chk-how);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--wa);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.chk-desk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chk-desk-actions .btn {
  min-height: 54px;
  padding-inline: 24px;
}
.chk-desk-actions .btn-whatsapp { flex: 1 1 220px; }
.chk-aside { position: sticky; top: calc(var(--header-h) + 16px); }
.chk-summary {
  background: #fff;
  border: 1px solid rgba(12, 11, 10, 0.06);
  padding: 22px 20px;
  box-shadow: 0 14px 32px rgba(12, 11, 10, 0.04);
}
.chk-summary-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.chk-summary-kicker {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.chk-summary-head h2 {
  margin: 0;
  font-size: calc(1.15rem + 1px);
  font-weight: 700;
}
.chk-summary-head a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.chk-items {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.chk-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.chk-item-media {
  width: 56px;
  height: 70px;
  overflow: hidden;
  background: #111;
}
.chk-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chk-item-name {
  display: block;
  font-size: 17.5px;
  font-weight: 600;
  line-height: 1.3;
}
.chk-item-meta {
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.chk-item-price {
  font-size: calc(1em + 1px);
  font-weight: 700;
  white-space: nowrap;
}
.chk-item-price .price,
.chk-totals .price {
  font-size: calc(1em + 1px);
}
.chk-totals .is-total .price {
  font-size: calc(1.12em + 1px);
}
.chk-totals {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.chk-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 16.5px;
}
.chk-totals .is-total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 20px;
  font-weight: 700;
}
.chk-note {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.chk-ship {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding: 12px 14px;
  background: #0c0b0a;
  color: #fff;
}
.chk-ship span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.chk-ship strong { color: var(--brand); }
.chk-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(12,11,10,0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -12px 30px rgba(0,0,0,0.25);
}
.chk-sticky-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  width: min(100%, 720px);
  margin-inline: auto;
}
.chk-sticky-total {
  display: grid;
  gap: 2px;
  color: #fff;
  min-width: 72px;
}
.chk-sticky-total span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.chk-sticky-total strong { font-size: 18px; }
.chk-sticky .btn {
  width: 100%;
  min-height: 54px;
  padding: 13px 24px;
  font-size: 16px;
  letter-spacing: 0.1em;
  justify-content: center;
}

@media (min-width: 900px) {
  .bag { padding-bottom: 40px; }
  .bag-sticky { display: none; }
  .chk { padding-bottom: 40px; }
  .chk-sticky { display: none; }
  .chk-sub { display: block; }
}

@media (max-width: 899px) {
  .bag-layout,
  .chk-layout { grid-template-columns: 1fr; }
  .bag-summary,
  .chk-aside { position: static; order: -1; }
  .bag-top-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 0 18px;
  }
  .bag-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .bag-media {
    width: 72px;
    height: 90px;
  }
  .bag-line {
    grid-column: 2;
    justify-self: start;
  }
  .chk-fields { grid-template-columns: 1fr; }
  .chk-fields .chk-half { grid-column: 1 / -1; }
  .chk-desk-actions { display: none; }
  .chk-sub { display: none; }
  .chk-steps li { font-size: 12px; gap: 6px; }
}

@media (max-width: 560px) {
  .bag-shell,
  .chk-shell { padding-top: 18px; }
  .bag-row { padding: 12px; gap: 10px; }
  .bag-name { font-size: 16px; }
  .chk-card { padding: 16px 14px; }
}

/* ========== Mobile UI polish ========== */
@media (max-width: 980px) {
  .page-hero {
    padding: clamp(36px, 7vw, 52px) 0;
    text-align: left;
  }
  .page-hero::before { display: none; }
  .page-hero .container {
    text-align: left;
  }
  .page-hero p {
    margin-left: 0;
    max-width: 36ch;
  }

  .form-shell {
    padding: 28px 0 48px;
  }
  .form-shell-inner,
  .form-shell-narrow {
    gap: 20px;
  }
  .form-panel {
    padding: 22px 18px;
    box-shadow: 0 12px 28px rgba(12, 11, 10, 0.05);
  }
  .form-tabs {
    margin-bottom: 20px;
    position: sticky;
    top: calc(var(--header-h) + 8px);
    z-index: 5;
  }
  .form-tabs a {
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 12px 10px;
  }
  .form-panel-head {
    margin-bottom: 18px;
  }
  .form-aside {
    order: 2;
    padding: 4px 0 0;
  }
  .form-panel {
    order: 1;
  }
  .form-shell-inner > .form-aside:first-child {
    order: 0;
  }
  .form-perks li {
    padding: 14px 14px 14px 42px;
  }
  .form-perks li:hover {
    transform: none;
  }
  .form-submit,
  .contact-form .btn {
    min-height: 52px;
    width: 100%;
  }
  .password-toggle {
    width: 44px;
    height: 44px;
  }
  .password-field input {
    padding-right: 56px;
  }

  .contact-cards {
    gap: 8px;
  }
  .contact-card {
    padding: 14px;
  }
  .contact-card:hover {
    transform: none;
  }

  .shop-sidebar {
    overflow: visible;
  }

  .product-card:hover {
    transform: none;
  }
  .product-link {
    min-height: 48px;
  }

  .chk-top-inner {
    min-height: 72px;
    padding-block: 12px;
  }
  .chk-steps {
    gap: 6px;
    margin-bottom: 16px;
  }
  .chk-steps li {
    min-height: 44px;
    padding: 6px 4px;
    flex-direction: column;
    gap: 4px;
  }
  .chk-card {
    padding: 18px 16px;
    box-shadow: 0 10px 24px rgba(12, 11, 10, 0.04);
  }
  .chk-method {
    padding: 14px 12px;
  }
  .chk-summary,
  .bag-summary-card {
    box-shadow: 0 10px 24px rgba(12, 11, 10, 0.04);
  }

  .bag-sticky,
  .chk-sticky,
  .wa-done-sticky {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .bag-sticky .btn,
  .chk-sticky .btn,
  .wa-done-sticky .btn {
    min-height: 52px;
  }

  .btn {
    min-height: 48px;
  }
  .btn:active {
    transform: none;
  }
  .btn-primary:hover,
  .btn-whatsapp:hover,
  .btn-outline:hover {
    transform: none;
  }

  .mobile-menu {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
  .mobile-menu-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .page-hero h1 {
    line-height: 1.12;
  }
  .page-hero p {
    font-size: 17px;
    max-width: none;
  }
  .breadcrumb {
    margin-bottom: 10px;
  }

  .form-panel {
    padding: 20px 14px;
    margin-inline: 0;
  }
  .form-tabs a {
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 11px 8px;
  }
  .form-row {
    gap: 6px;
  }
  .form-switch {
    font-size: 16.5px;
  }
  .form-forgot a {
    display: inline-block;
    padding: 6px 0;
  }

  .chk-brand {
    font-size: 11px;
  }
  .chk-top-copy h1 {
    font-size: calc(1.35rem + 1px);
  }
  .chk-steps li span {
    width: 22px;
    height: 22px;
  }
  .chk-steps li {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .chk-card-head {
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }
  .chk-card-head > span {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .chk-method-copy small {
    font-size: 14.5px;
  }
  .chk-item {
    grid-template-columns: 48px minmax(0, 1fr) auto;
  }
  .chk-item-media {
    width: 48px;
    height: 60px;
  }

  .bag-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .bag-media {
    width: 64px;
    height: 80px;
  }
  .bag-controls {
    flex-wrap: wrap;
  }

  .wa-done {
    padding: 18px 0 calc(100px + env(safe-area-inset-bottom, 0px));
  }
  .wa-done-shell {
    gap: 16px;
  }
  .wa-done-actions {
    display: grid;
    gap: 10px;
  }
  .wa-done-actions .btn {
    width: 100%;
    min-height: 52px;
  }
  .wa-done-bank {
    padding: 14px;
  }
  .wa-done-bank p {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .wa-done-bank strong {
    text-align: left;
  }

  .newsletter-form {
    gap: 8px;
  }
  .newsletter-form .btn {
    min-height: 48px;
    width: 100%;
  }

  .trust-item {
    padding: 18px 16px;
  }

  .hero-stage {
    width: min(100% - 24px, 420px);
  }
  .hero-actions {
    display: grid;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .shop-layout {
    gap: 20px;
    padding-top: 28px;
  }
  .shop-search .btn {
    letter-spacing: 0.08em;
  }

  .product-grid,
  .shop-grid,
  .category-grid {
    gap: 14px 10px;
  }
  .product-info {
    padding-top: 10px;
  }
}

@media (max-width: 380px) {
  .chk-steps li {
    font-size: 10px;
  }
  .currency-switch {
    transform: scale(0.86);
  }
  .form-tabs a {
    font-size: 13px;
  }
}
