:root {
  --black: #070708;
  --black-soft: #0c0c0f;
  --white: #f8f5f0;
  --ivory: #f8f5f0;
  --yellow: #f2d65e;
  --yellow-deep: #d4b435;
  --gold: var(--yellow);
  --gold-light: #f8e895;
  --gold-deep: var(--yellow-deep);
  --champagne: rgba(242, 214, 94, 0.14);
  --taupe: #9f9688;
  --taupe-dark: #656058;
  --glass: rgba(255, 255, 255, 0.055);
  --panel: rgba(255, 255, 255, 0.038);
  --panel-border: rgba(255, 255, 255, 0.09);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-deep: 0 32px 100px rgba(0, 0, 0, 0.55),
    0 12px 36px rgba(242, 214, 94, 0.07);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.055);
  --shadow-card-hover: 0 26px 64px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(242, 214, 94, 0.22), 0 0 56px rgba(242, 214, 94, 0.08);
  --focus-ring: 0 0 0 2px rgba(7, 7, 8, 0.95), 0 0 0 4px rgba(242, 214, 94, 0.32);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Syne", var(--font);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --fast: 0.16s;
  --mid: 0.24s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(242, 214, 94, 0.3);
  color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-visual {
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(110% 75% at 50% -18%, rgba(242, 214, 94, 0.07), transparent 56%),
    radial-gradient(85% 55% at 100% 0%, rgba(110, 100, 165, 0.07), transparent 52%),
    radial-gradient(70% 50% at 0% 105%, rgba(165, 120, 75, 0.05), transparent 55%),
    radial-gradient(90% 60% at 50% 120%, rgba(0, 0, 0, 0.45), transparent 45%),
    linear-gradient(180deg, #0e0e12 0%, var(--black) 40%, #030304 100%);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.62;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transition: opacity 0.22s var(--ease-soft);
}
body.bms-ready {
  opacity: 1;
}

/* Custom scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) rgba(255, 255, 255, 0.06);
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--yellow), var(--yellow-deep));
  border-radius: 999px;
  border: 2px solid var(--black);
}

/* Desktop custom cursor — disabled by default for speed & accessibility (see site.js) */
body.use-fancy-cursor {
  cursor: none;
}
#cursor-ring {
  display: none;
  pointer-events: none;
  position: fixed;
  z-index: 99999;
  width: 36px;
  height: 36px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease,
    opacity 0.2s ease;
  opacity: 0.85;
}
#cursor-dot {
  display: none;
  pointer-events: none;
  position: fixed;
  z-index: 99998;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
body.use-fancy-cursor #cursor-ring,
body.use-fancy-cursor #cursor-dot {
  display: block;
}

a {
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.28s var(--ease-soft), opacity 0.28s var(--ease-soft),
    text-shadow 0.28s var(--ease-soft);
}
a:hover {
  color: #fffef8;
  text-shadow: 0 0 24px rgba(242, 214, 94, 0.22);
}

.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 900px) {
  .shell {
    padding: 0 1.75rem;
  }
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px) saturate(1.45);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
  background: linear-gradient(
    180deg,
    rgba(7, 7, 8, 0.78),
    rgba(7, 7, 8, 0.52)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(242, 214, 94, 0.06), 0 12px 40px rgba(0, 0, 0, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
}
.logo:focus-visible {
  outline: none;
  border-radius: 8px;
  box-shadow: var(--focus-ring);
}
.logo span {
  color: var(--yellow);
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
nav.main-nav a {
  color: rgba(248, 245, 240, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}
nav.main-nav a:focus-visible {
  outline: none;
  border-radius: 6px;
  box-shadow: var(--focus-ring);
}
nav.main-nav a:hover {
  color: var(--yellow);
}
nav.main-nav a.btn {
  margin-left: 0.15rem;
}

/* Primary store CTA in header — drives shoppers back to the catalogue */
nav.main-nav a.nav-store {
  padding: 0.44rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: linear-gradient(145deg, #fff3a6 0%, var(--yellow) 40%, var(--yellow-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 6px 22px rgba(242, 214, 94, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out),
    filter 0.25s var(--ease-soft);
}
nav.main-nav a.nav-store:hover {
  color: var(--black) !important;
  text-shadow: none;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 10px 28px rgba(242, 214, 94, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
nav.main-nav a.nav-store:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), 0 8px 26px rgba(242, 214, 94, 0.28);
}

.masthead-subnav a.masthead-subnav-store {
  color: var(--yellow) !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.masthead-subnav a.masthead-subnav-store:hover {
  color: #fff8dc !important;
  text-shadow: 0 0 22px rgba(242, 214, 94, 0.35);
}

.product-breadcrumb a[href*="index.html#shop"],
.product-breadcrumb a[href$="#shop"] {
  font-weight: 700;
  color: var(--yellow);
}

.store-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.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;
}

/* Home: headerless masthead, centered name */
body.page-home header.site-header--bare {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.82) 0%, rgba(7, 7, 8, 0.55) 100%);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  border-bottom: none;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}
body.page-home header.site-header--bare::after {
  content: "";
  display: block;
  height: 1px;
  margin: 0 auto;
  max-width: 6rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 213, 71, 0.35),
    transparent
  );
}
.masthead-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 1.5rem 0 0.35rem;
}
.masthead-side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.masthead-side--left {
  left: 1.25rem;
}
.masthead-side--right {
  right: 1.25rem;
}
@media (min-width: 900px) {
  .masthead-side--left {
    left: 1.75rem;
  }
  .masthead-side--right {
    right: 1.75rem;
  }
}
.logo--masthead {
  font-size: clamp(1.4rem, 5vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-align: center;
}
.masthead-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
  background: linear-gradient(145deg, #fff2a8 0%, var(--yellow) 42%, var(--yellow-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 22px rgba(242, 214, 94, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out),
    filter 0.28s var(--ease-out);
}
.masthead-chip:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 8px 28px rgba(242, 214, 94, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.masthead-chip--ghost {
  background: rgba(255, 255, 255, 0.045);
  color: rgba(248, 245, 240, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.masthead-chip--ghost:hover {
  color: var(--yellow);
  border-color: rgba(242, 214, 94, 0.45);
  background: rgba(242, 214, 94, 0.08);
}
.masthead-chip:focus-visible,
.logo--masthead:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.masthead-subnav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem 0.65rem;
  padding: 0.15rem 0 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.masthead-subnav::-webkit-scrollbar {
  display: none;
}
@media (min-width: 720px) {
  .masthead-subnav {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    mask-image: none;
  }
}
.masthead-subnav a {
  color: rgba(250, 248, 245, 0.42);
  text-decoration: none;
}
.masthead-subnav a:hover {
  color: var(--yellow);
}
.masthead-dot {
  color: rgba(250, 248, 245, 0.22);
  user-select: none;
}

.section.store-heroless {
  padding-top: 0.35rem;
  padding-bottom: 2.5rem;
}
body.page-home main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
body.page-home .section {
  padding: 2.75rem 0;
}
body.page-home .section.store-heroless {
  padding-top: 0.5rem;
}
.store-search-block {
  max-width: 36rem;
  margin: 0 auto 0.65rem;
}
.store-search-input {
  width: 100%;
  display: block;
  padding: 0.88rem 1.15rem 0.88rem 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.42) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%239f9688' stroke-width='2' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E")
    1rem 50% no-repeat;
  background-size: 1.1rem 1.1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.98rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.28s var(--ease-soft), box-shadow 0.28s var(--ease-soft);
}
.store-search-input::placeholder {
  color: rgba(248, 245, 240, 0.36);
}
.store-search-input:focus {
  border-color: rgba(242, 214, 94, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 3px rgba(242, 214, 94, 0.12);
}
.store-search-meta {
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.48;
  margin: 0 0 1rem;
  min-height: 1.15em;
}

.store-advanced {
  max-width: 42rem;
  margin: 0 auto 0.85rem;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.store-advanced-summary {
  cursor: pointer;
  list-style: none;
  padding: 0.72rem 1.05rem 0.72rem 1.15rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(248, 245, 240, 0.85);
  user-select: none;
}
.store-advanced-summary::-webkit-details-marker {
  display: none;
}
.store-advanced-summary::after {
  content: "";
  float: right;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.35rem;
  border-right: 2px solid rgba(168, 159, 145, 0.55);
  border-bottom: 2px solid rgba(168, 159, 145, 0.55);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.store-advanced[open] .store-advanced-summary::after {
  transform: rotate(-135deg);
  margin-top: 0.5rem;
}
.store-advanced-panel {
  padding: 0 0.85rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.store-advanced-grid {
  margin-top: 0.75rem;
}
.store-advanced-cod .store-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  opacity: 0.92;
}
.store-advanced-cod input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent, #f5d547);
}
.store-advanced-actions {
  margin-top: 0.25rem;
}
@media (min-width: 640px) {
  .store-advanced-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.lead-strip--compact {
  margin-bottom: 1.15rem;
}
@media (max-width: 520px) {
  .masthead-side--left {
    left: 0.65rem;
  }
  .masthead-side--right {
    right: 0.65rem;
  }
  .masthead-chip {
    padding: 0.38rem 0.62rem;
    font-size: 0.72rem;
  }
  .logo--masthead {
    font-size: 1.12rem;
    max-width: 52vw;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.68rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #fff3a6 0%, var(--yellow) 38%, var(--yellow-deep) 100%);
  color: var(--black);
  box-shadow: 0 10px 32px rgba(242, 214, 94, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
    filter 0.28s var(--ease-soft);
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), 0 14px 40px rgba(242, 214, 94, 0.32);
}
.btn:hover {
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.03);
  box-shadow: 0 16px 44px rgba(242, 214, 94, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}
.btn:active {
  transform: translateY(0) scale(1);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.btn-ghost:hover {
  border-color: rgba(242, 214, 94, 0.45);
  color: var(--yellow);
  background: rgba(242, 214, 94, 0.07);
  filter: none;
}
.btn-ghost:focus-visible {
  box-shadow: var(--focus-ring);
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  perspective: 1200px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--taupe);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  line-height: 1.02;
  margin: 1rem 0 0.75rem;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
  text-shadow: 0 0 48px rgba(242, 214, 94, 0.35), 0 0 80px rgba(242, 214, 94, 0.12);
}
.hero-lead {
  color: rgba(248, 245, 240, 0.68);
  max-width: 36ch;
  font-size: 1.06rem;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.hero-visual {
  position: relative;
  animation: floatSoft 8s ease-in-out infinite;
}
@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-card {
  border-radius: calc(var(--radius) + 10px);
  padding: 1.05rem;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(110, 100, 165, 0.06) 40%,
    rgba(10, 10, 12, 0.94) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero-card img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-float {
  position: absolute;
  right: -6%;
  bottom: 8%;
  padding: 0.78rem 1.1rem;
  border-radius: 14px;
  background: rgba(7, 7, 8, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(242, 214, 94, 0.32);
  font-size: 0.84rem;
  color: var(--yellow);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
@media (max-width: 900px) {
  .hero-float {
    right: 4%;
  }
}

/* Section titles */
.section {
  padding: 3.25rem 0;
}
.section.store-first {
  padding-top: 1.35rem;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-head h1,
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  margin: 0;
  letter-spacing: -0.028em;
  font-weight: 800;
}
.section-head p {
  margin: 0;
  color: rgba(248, 245, 240, 0.5);
  max-width: 42ch;
  font-size: 0.96rem;
  line-height: 1.5;
}

.store-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--taupe);
}
.store-first .section-head {
  margin-bottom: 1.15rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.store-first .lead-strip {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.section-head--tight {
  margin-bottom: 1.25rem !important;
}

/* FAQ (homepage + shared patterns) */
.faq-list {
  max-width: 52rem;
}
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-q {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 1.1rem;
  list-style: none;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-item[open] .faq-q {
  color: var(--yellow);
}
.faq-a {
  padding: 0 1.1rem 1.1rem;
  margin: 0;
  opacity: 0.88;
  line-height: 1.55;
  font-size: 0.96rem;
  white-space: pre-wrap;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-grid-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  opacity: 0.55;
  font-size: 0.95rem;
}
.product-grid-empty p {
  margin: 0;
}
.product-card {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(12, 12, 15, 0.55) 42%,
    rgba(6, 6, 8, 0.98) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.38s var(--ease-out), box-shadow 0.38s var(--ease-out),
    border-color 0.32s var(--ease-soft);
  box-shadow: var(--shadow-card);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 214, 94, 0.28);
  box-shadow: var(--shadow-card-hover);
}
.product-card .media {
  position: relative;
  overflow: hidden;
}
.product-card .media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(7, 7, 8, 0.65) 0%,
    transparent 55%
  );
  opacity: 0.88;
}
.product-card img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-card .body {
  padding: 1.05rem 1.15rem 1.2rem;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.48rem;
}
.tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(242, 214, 94, 0.1);
  color: #fceea8;
  border: 1px solid rgba(242, 214, 94, 0.22);
  font-weight: 700;
}
.tag.taupe {
  background: rgba(159, 150, 136, 0.12);
  color: var(--taupe);
  border-color: rgba(159, 150, 136, 0.28);
}
.product-card h3 {
  margin: 0 0 0.38rem;
  font-size: 1.06rem;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.price {
  font-weight: 800;
  color: var(--yellow);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.qty button {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.qty button:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.qty span {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 700;
}

/* Lead strip */
.lead-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}
.lead-pill {
  padding: 1.05rem 1.25rem;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-soft),
    box-shadow 0.3s var(--ease-out);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lead-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 214, 94, 0.38);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.lead-pill strong {
  display: block;
  color: var(--yellow);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

/* Custom quote panel */
.quote-panel {
  border-radius: calc(var(--radius) + 6px);
  padding: 2rem 2rem 2.1rem;
  background: linear-gradient(
    148deg,
    rgba(242, 214, 94, 0.08) 0%,
    rgba(110, 100, 165, 0.05) 35%,
    rgba(8, 8, 10, 0.96) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.form-section-title {
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.quote-panel h2 {
  font-family: var(--display);
  margin-top: 0;
}
.cq-optional {
  font-weight: 400;
  opacity: 0.65;
  font-size: 0.88em;
  text-transform: none;
  letter-spacing: 0;
}
.cq-image-hint {
  font-size: 0.82rem;
  opacity: 0.72;
  margin: 0.4rem 0 0;
  line-height: 1.45;
  max-width: 52ch;
  color: rgba(250, 248, 245, 0.78);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--taupe);
  margin-bottom: 0.35rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.28s var(--ease-soft), box-shadow 0.28s var(--ease-soft);
}
.field select {
  cursor: pointer;
}
.field select option {
  background: #121214;
  color: var(--white);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(242, 214, 94, 0.5);
  box-shadow: var(--focus-ring), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: none;
}
.field-full {
  grid-column: 1 / -1;
}

.field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  opacity: 0.68;
}

.address-autocomplete-wrap {
  position: relative;
}

.address-autocomplete-wrap input[type="search"] {
  width: 100%;
}

.address-suggestions {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  max-height: 280px;
  overflow-y: auto;
  background: rgba(18, 18, 20, 0.98);
  border: 1px solid var(--panel-border);
  border-radius: calc(var(--radius) - 6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.address-suggestion {
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.88rem;
  line-height: 1.35;
}

.address-suggestion strong {
  font-weight: 600;
  color: var(--white);
}

.address-suggestion span {
  font-size: 0.78rem;
  opacity: 0.72;
}

.address-suggestion:hover,
.address-suggestion.is-active {
  background: rgba(212, 175, 95, 0.12);
}

.address-map-preview {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0.5rem;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: rgba(0, 0, 0, 0.2);
}

.address-map-preview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}

.address-map-label {
  margin: 0;
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.65;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Footer */
footer.site-footer {
  margin-top: 3.5rem;
  padding: 3.25rem 0 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
}
.footer-aside-title {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
}
.footer-meta {
  color: rgba(250, 248, 245, 0.55);
  font-size: 0.92rem;
  margin-top: 0.5rem;
  max-width: 38ch;
  line-height: 1.55;
}
.footer-workshop-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 1.35rem 2rem;
  align-items: start;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-workshop-row--compact {
  margin-top: 0;
  padding-top: 1.5rem;
  padding-bottom: 0.25rem;
}
.footer-address {
  font-style: normal;
  line-height: 1.55;
  color: rgba(250, 248, 245, 0.78);
  margin: 0.35rem 0 0;
}
.footer-map-actions {
  margin: 0.75rem 0 0;
}
.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.footer-map-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-map-embed {
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  min-height: 10rem;
}
.footer-map-embed iframe {
  display: block;
  width: 100%;
  height: 11.5rem;
  border: 0;
}
@media (max-width: 720px) {
  .footer-workshop-row {
    grid-template-columns: 1fr;
  }
  .footer-map-embed iframe {
    height: 10rem;
  }
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 0 0 1rem;
  font-size: 0.85rem;
}
.footer-legal a {
  color: var(--taupe);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal a:hover {
  color: var(--yellow);
}

/* Legal documents */
.legal-prose {
  max-width: 52rem;
  padding-bottom: 4rem;
  color: rgba(250, 248, 245, 0.88);
  line-height: 1.65;
  font-size: 0.95rem;
}
.legal-prose h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 2.25rem 0 0.75rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.legal-prose h2:first-of-type {
  margin-top: 1.25rem;
}
.legal-prose h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--yellow);
  font-weight: 700;
}
.legal-prose p,
.legal-prose li {
  margin: 0.5rem 0;
  max-width: 68ch;
}
.legal-prose ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}
.legal-prose .legal-callout {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 213, 71, 0.25);
  background: rgba(245, 213, 71, 0.06);
  font-size: 0.9rem;
  max-width: 68ch;
}
.legal-prose a {
  color: var(--yellow);
}
.legal-prose strong {
  color: rgba(250, 248, 245, 0.95);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100000;
  padding: 0.95rem 1.25rem;
  border-radius: 16px;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(242, 214, 94, 0.28);
  color: var(--white);
  font-size: 0.9rem;
  max-width: min(22rem, calc(100vw - 2rem));
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Checkout / secondary pages */
.page-hero {
  padding: 2.5rem 0 1.25rem;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}
.page-hero .checkout-lead {
  margin: 0;
  opacity: 0.78;
  font-size: 1rem;
}
.page-hero .checkout-sub {
  margin: 0.85rem 0 0;
  max-width: 62ch;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(250, 248, 245, 0.68);
}
.checkout-banner {
  display: none;
  margin: 1.1rem 0 0;
  padding: 0.85rem 1.1rem;
  max-width: 62ch;
  border-radius: calc(var(--radius) - 4px);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(250, 248, 245, 0.88);
}
.checkout-banner.is-visible {
  display: block;
}
.checkout-banner a {
  color: var(--yellow);
  font-weight: 600;
}
.checkout-banner a:hover {
  color: var(--white);
}
.quote-actions {
  margin-top: 1.35rem;
}
.summary-card h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

/* Checkout — dual-pane POS layout (ticket + register) */
.checkout-pos-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: start;
  padding-bottom: 3.5rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-pos-pane--ticket,
.checkout-pos-pane--register {
  min-width: 0;
}

.checkout-pos-pane--ticket {
  position: relative;
}

.checkout-pos-pane--ticket::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -12px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--yellow), rgba(212, 168, 75, 0.35));
  opacity: 0.9;
  pointer-events: none;
}

@media (max-width: 960px) {
  .checkout-pos-grid {
    grid-template-columns: 1fr;
  }
  .checkout-pos-pane--ticket::before {
    inset: -8px -1px auto -1px;
    width: auto;
    height: 4px;
  }
}

/* Empty bag — ticket stub */
.pos-empty-ticket {
  border-radius: calc(var(--radius) + 4px);
  padding: 2.25rem 1.75rem;
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(250, 248, 245, 0.07) 0%,
    rgba(18, 17, 15, 0.94) 45%,
    rgba(10, 10, 12, 0.98) 100%
  );
  border: 1px solid rgba(168, 159, 145, 0.22);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
}
.pos-empty-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.45);
}
.pos-empty-title {
  margin: 0.65rem 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.03em;
}
.pos-empty-hint {
  margin: 0 0 1.35rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(250, 248, 245, 0.62);
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

/* Sale ticket column */
.summary-card.pos-ticket {
  position: sticky;
  top: 5.5rem;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(
    168deg,
    rgba(255, 252, 247, 0.09) 0%,
    rgba(22, 21, 19, 0.97) 38%,
    rgba(8, 8, 10, 0.99) 100%
  );
  border: 1px solid rgba(200, 188, 168, 0.28);
  box-shadow:
    var(--shadow-card),
    0 24px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pos-ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent);
}

.pos-ticket-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.48);
}

.pos-ticket-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  letter-spacing: -0.03em;
}

.pos-ticket-pill {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink, #0a0a0b);
  background: linear-gradient(135deg, var(--yellow), #e8c56a);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.pos-line-items {
  padding: 0.5rem 0.65rem 0.85rem;
  max-height: min(52vh, 28rem);
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.pos-line {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  gap: 0.75rem 0.85rem;
  align-items: center;
  padding: 0.75rem 0.75rem;
  margin-bottom: 0.35rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pos-line:hover {
  border-color: rgba(212, 168, 75, 0.35);
  background: rgba(0, 0, 0, 0.32);
}

.pos-line-img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
}

.pos-line-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pos-line-img--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(250, 248, 245, 0.35);
  background: linear-gradient(145deg, rgba(212, 168, 75, 0.12), rgba(0, 0, 0, 0.4));
}

.pos-line-main {
  min-width: 0;
}

.pos-line-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.pos-line-name:hover {
  color: var(--yellow);
}

.pos-line-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  align-items: baseline;
  font-size: 0.78rem;
  color: rgba(250, 248, 245, 0.55);
}

.pos-line-variant {
  padding: 0.12rem 0.45rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(250, 248, 245, 0.78);
  font-weight: 600;
}

.pos-line-side {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.pos-qty-pill {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(250, 248, 245, 0.85);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.pos-line-ext {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--yellow);
  white-space: nowrap;
}

@media (max-width: 420px) {
  .pos-line {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
  }
  .pos-line-img {
    width: 3.5rem;
    height: 3.5rem;
    grid-row: 1 / -1;
    align-self: center;
  }
  .pos-line-main {
    grid-column: 2;
    grid-row: 1;
  }
  .pos-line-side {
    grid-column: 2;
    grid-row: 2;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }
}

.pos-ticket-divider {
  height: 10px;
  margin: 0 0.5rem;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 5px,
    rgba(255, 255, 255, 0.08) 5px,
    rgba(255, 255, 255, 0.08) 7px
  );
  mask-image: radial-gradient(circle at 6px 50%, transparent 5px, #000 5.5px);
  mask-size: 12px 100%;
  mask-repeat: repeat-x;
  opacity: 0.85;
}

.pos-ticket-figures {
  padding: 0.35rem 1.35rem 1.4rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent);
}

.pos-ticket-figures .summary-row {
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
}

.pos-ticket-figures .summary-row > span:first-child {
  flex: 1;
  min-width: 12rem;
  font-size: 0.88rem;
  line-height: 1.35;
}

.pos-ticket-figures .summary-row > span:last-child {
  font-variant-numeric: tabular-nums;
}

/* Register column — terminal panel */
.pos-register {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  padding: 1.5rem 1.45rem 1.6rem;
  background: linear-gradient(
    165deg,
    rgba(36, 34, 30, 0.55) 0%,
    rgba(12, 11, 10, 0.92) 42%,
    rgba(6, 6, 8, 0.98) 100%
  );
  border: 1px solid rgba(168, 159, 145, 0.22);
  box-shadow:
    var(--shadow-card),
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pos-register-head {
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pos-register-kicker {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 168, 75, 0.85);
}

.pos-register-title {
  margin: 0.35rem 0 0.4rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  letter-spacing: -0.03em;
}

.pos-register-hint {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(250, 248, 245, 0.58);
  max-width: 48ch;
}

@media (max-width: 960px) {
  .summary-card.pos-ticket {
    position: relative;
    top: auto;
  }
  .pos-line-items {
    max-height: none;
  }
}

.summary-card {
  border-radius: calc(var(--radius) + 2px);
  padding: 1.35rem 1.4rem;
  background: linear-gradient(
    165deg,
    rgba(250, 248, 245, 0.05),
    rgba(12, 12, 14, 0.92)
  );
  border: 1px solid rgba(168, 159, 145, 0.2);
  height: fit-content;
  position: sticky;
  top: 5.5rem;
  box-shadow: var(--shadow-card);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: rgba(250, 248, 245, 0.75);
}
.summary-row.total {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--yellow);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

.pay-method-choices {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pay-method-label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.35;
  cursor: pointer;
}
.pay-method-label input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Admin */
.admin-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}
.admin-shell .admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.admin-shell .admin-nav button {
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 0.45rem 0.9rem;
  font-family: var(--font);
  font-size: 0.85rem;
}
.admin-shell .admin-nav button.active {
  border-color: var(--yellow);
  color: var(--yellow);
}
.table-wrap {
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
table.data th,
table.data td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
table.data th {
  background: rgba(245, 213, 71, 0.08);
  color: var(--taupe);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
}
table.data tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.login-card {
  max-width: 420px;
  margin: 4rem auto;
  padding: 2.35rem 2.45rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(
    165deg,
    rgba(242, 214, 94, 0.07) 0%,
    rgba(110, 100, 165, 0.04) 45%,
    rgba(10, 10, 12, 0.94) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.login-card h1 {
  font-family: var(--display);
  margin-top: 0;
  letter-spacing: -0.03em;
}
.login-card code {
  font-size: 0.78rem;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-app-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 248, 245, 0.38);
  white-space: nowrap;
}
.admin-app-title {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.admin-app-bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}
.admin-site-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(250, 248, 245, 0.62);
}
.admin-site-link:hover {
  color: var(--yellow);
}
.admin-drawer {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 6, 0.62);
  backdrop-filter: blur(4px);
  display: none;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 200000;
}
.admin-drawer.open {
  display: flex;
}
.admin-drawer-panel {
  width: min(520px, 100%);
  background: linear-gradient(180deg, #141416, var(--black));
  border-left: 1px solid rgba(245, 213, 71, 0.18);
  padding: 1.35rem 1.4rem;
  overflow: auto;
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
}

.admin-hint {
  font-size: 0.82rem;
  opacity: 0.62;
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

.admin-toolbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 0.65rem 0.75rem;
}

.admin-toolbar--wrap {
  flex-wrap: wrap;
}

.admin-toolbar-grow {
  flex: 1 1 12rem;
  min-width: 10rem;
}

.admin-toolbar .field {
  margin-bottom: 0;
}

.admin-toolbar .btn {
  margin-bottom: 0.1rem;
}

.admin-list-meta {
  font-size: 0.82rem;
  opacity: 0.65;
  margin: 0.35rem 0 0.75rem;
}

.admin-cat-manage .admin-toolbar {
  margin-bottom: 0.5rem;
}

.admin-cat-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.admin-cat-chip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
}

.admin-cat-chip-name {
  font-weight: 600;
}

.admin-cat-chip-slug {
  font-size: 0.72rem;
  opacity: 0.55;
}

.admin-cat-empty {
  opacity: 0.55;
  font-size: 0.85rem;
  padding: 0.25rem 0;
}

.btn-tiny {
  font-size: 0.72rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}

.admin-inline-select {
  font-size: 0.78rem;
  max-width: 100%;
  padding: 0.25rem 0.4rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
}

/* Product detail page */
.product-breadcrumb {
  font-size: 0.88rem;
  opacity: 0.65;
  margin: 0 0 0.5rem;
}
.product-breadcrumb a {
  color: var(--taupe);
}
.product-breadcrumb a:hover {
  color: var(--yellow);
}
.product-detail {
  padding-bottom: 4rem;
}

.product-detail-page {
  padding-bottom: 0;
}

.product-detail-page > .shell.product-detail {
  padding-bottom: 1.25rem;
}

/* Custom quote — full-bleed atelier (product page) */
.pd-custom-fullbleed.cq-atelier {
  --cq-glow: rgba(212, 168, 75, 0.14);
  --cq-line: rgba(255, 255, 255, 0.07);
  position: relative;
  width: 100%;
  margin: 2.75rem 0 0;
  padding: 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(120% 80% at 10% 0%, var(--cq-glow), transparent 55%),
    radial-gradient(90% 60% at 100% 20%, rgba(110, 100, 165, 0.08), transparent 50%),
    linear-gradient(180deg, #101012 0%, #070708 48%, #0c0b0a 100%);
  overflow: hidden;
}

.pd-custom-fullbleed.cq-atelier::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), rgba(212, 168, 75, 0.35), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.pd-custom-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.5rem 0 3.25rem;
}

.cq-atelier-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.45;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, black 0%, transparent 92%);
  pointer-events: none;
}

.cq-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 1.25rem;
}

.cq-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(212, 168, 75, 0.9);
}

.cq-title,
.pd-custom-fullbleed .pd-custom-title.cq-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 18ch;
}

.cq-variant-live.pd-quote-target {
  flex: 1;
  min-width: min(100%, 320px);
  max-width: 520px;
  margin: 0;
  padding: 1rem 1.15rem 1rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(245, 213, 71, 0.28);
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(22, 20, 18, 0.75) 100%
  );
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.55;
  position: relative;
}

.cq-variant-live.pd-quote-target::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--yellow), rgba(212, 168, 75, 0.25));
}

.cq-lead,
.pd-custom-fullbleed .cq-lead {
  margin: 0 0 1.75rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(250, 248, 245, 0.72);
  max-width: 58ch;
}

.cq-form {
  margin: 0;
}

.cq-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .cq-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "contact contact"
      "dimensions mood"
      "notes notes"
      "upload upload";
    gap: 1rem 1.1rem;
  }
  .cq-card--contact {
    grid-area: contact;
  }
  .cq-card--dimensions {
    grid-area: dimensions;
  }
  .cq-card--mood {
    grid-area: mood;
  }
  .cq-card--notes {
    grid-area: notes;
  }
  .cq-card--upload {
    grid-area: upload;
  }
}

.cq-card {
  border-radius: 16px;
  border: 1px solid var(--cq-line);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(8, 8, 10, 0.88) 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.cq-card:focus-within {
  border-color: rgba(245, 213, 71, 0.35);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(245, 213, 71, 0.08);
}

.cq-card--contact {
  background: linear-gradient(
    155deg,
    rgba(245, 213, 71, 0.06) 0%,
    rgba(12, 11, 14, 0.92) 55%,
    rgba(6, 6, 8, 0.96) 100%
  );
}

.cq-card--dimensions {
  border-color: rgba(168, 200, 255, 0.12);
}

.cq-card--mood {
  border-color: rgba(245, 213, 71, 0.15);
}

.cq-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1rem 1.15rem 0.65rem;
  border-bottom: 1px solid var(--cq-line);
}

.cq-card-head-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cq-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: 0.1rem;
  border-radius: 10px;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(10, 10, 12, 0.92);
  background: linear-gradient(145deg, var(--yellow), #c9a24a);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.cq-card-title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cq-card-sub {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(250, 248, 245, 0.52);
}

.cq-card-body {
  padding: 1rem 1.15rem 1.15rem;
}

.cq-field-row {
  display: grid;
  gap: 0.85rem;
}

.cq-field-row--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cq-field-row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cq-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.55);
}

.cq-field input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.cq-field input::placeholder {
  color: rgba(250, 248, 245, 0.28);
}

.cq-field input:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.cq-field input:focus {
  outline: none;
  border-color: rgba(245, 213, 71, 0.55);
  background: rgba(0, 0, 0, 0.5);
}

.cq-textarea {
  display: block;
  width: 100%;
  min-height: 7.5rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.32);
  color: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.cq-textarea--compact {
  min-height: 5.5rem;
}

.cq-textarea::placeholder {
  color: rgba(250, 248, 245, 0.32);
}

.cq-textarea:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.cq-textarea:focus {
  outline: none;
  border-color: rgba(245, 213, 71, 0.45);
  box-shadow: 0 0 0 3px rgba(245, 213, 71, 0.08);
}

.cq-file-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 7.5rem;
  padding: 1.25rem 1rem;
  border-radius: 14px;
  border: 1px dashed rgba(245, 213, 71, 0.35);
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  text-align: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.cq-file-zone:hover {
  border-color: rgba(245, 213, 71, 0.55);
  background: rgba(245, 213, 71, 0.05);
  transform: translateY(-1px);
}

.cq-file-zone:focus-within {
  border-style: solid;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245, 213, 71, 0.12);
}

.cq-file-zone-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(250, 248, 245, 0.92);
}

.cq-file-zone-hint {
  font-size: 0.78rem;
  color: rgba(250, 248, 245, 0.48);
}

.cq-file-zone .cq-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
  z-index: 2;
}

.cq-file-zone-title,
.cq-file-zone-hint {
  position: relative;
  z-index: 0;
  pointer-events: none;
}

.cq-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cq-actions-hint {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(250, 248, 245, 0.5);
  max-width: 36ch;
}

.cq-submit {
  min-width: 12rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.pd-quote-target strong {
  color: var(--yellow);
  font-weight: 700;
}
.pd-quote-target .pd-quote-price {
  font-weight: 600;
  color: rgba(245, 213, 71, 0.85);
}
.pd-quote-target .pd-quote-muted {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.84rem;
  font-weight: 400;
  opacity: 0.72;
  color: rgba(250, 248, 245, 0.75);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}
.product-gallery {
  position: relative;
}
.product-stage {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 280px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.product-stage-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-stage-frame {
  aspect-ratio: 16/9;
  max-height: 70vh;
}
.product-stage-frame iframe,
.product-stage-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}
.product-stage-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  opacity: 0.55;
}
.product-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.product-thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-thumb .thumb-fake {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--yellow);
  font-size: 1.1rem;
}
.product-thumb.active {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.product-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.product-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--yellow);
  margin: 0.25rem 0 1rem;
}
.product-desc {
  opacity: 0.78;
  margin: 0 0 1.25rem;
  max-width: 48ch;
}
.pd-visualize {
  margin: 0 0 1.25rem;
  padding: 1.05rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(242, 214, 94, 0.045);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.pd-visualize h2 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.05rem;
}
.pd-visualize-lead {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  opacity: 0.78;
  line-height: 1.45;
}
.pd-visualize-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.65rem;
}
.pd-visualize-actions input[type="file"] {
  max-width: 100%;
  font-size: 0.82rem;
}
.pd-visualize-out {
  margin-top: 0.75rem;
}
.pd-visualize-out img {
  width: 100%;
  max-width: 520px;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pd-visualize-note {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  opacity: 0.55;
  line-height: 1.35;
  max-width: 52ch;
}
.pd-visualize-status {
  font-size: 0.82rem;
  opacity: 0.75;
  min-height: 1.25rem;
}
.pd-custom:not(.pd-custom-fullbleed) {
  margin-top: 1.5rem;
}
.variant-fieldset {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin: 0 0 1rem;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.variant-fieldset legend {
  padding: 0 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--taupe);
}
.variant-radios {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.variant-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.variant-option:has(input:checked) {
  border-color: rgba(245, 213, 71, 0.45);
  background: rgba(245, 213, 71, 0.06);
}
.variant-option input {
  accent-color: var(--yellow);
}
.variant-option span:nth-of-type(1) {
  flex: 1;
  font-weight: 600;
}
.variant-option-price {
  font-weight: 700;
  color: var(--yellow);
  font-size: 0.92rem;
}
.product-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.qty-label {
  font-size: 0.85rem;
  opacity: 0.75;
}
.variant-hint {
  font-size: 0.88rem;
  opacity: 0.72;
  margin: 0 0 1rem;
  max-width: 44ch;
}
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card-link:focus-visible {
  outline: none;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--focus-ring);
}

.account-order-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.account-order-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}
.account-order-meta {
  display: block;
  font-size: 0.82rem;
  opacity: 0.7;
  margin-top: 0.15rem;
}
.account-order-empty {
  opacity: 0.65;
  font-size: 0.9rem;
}

.track-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.track-step {
  display: grid;
  grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
@media (max-width: 600px) {
  .track-step {
    grid-template-columns: 1fr;
  }
}
.track-step-media img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1;
  object-fit: cover;
}
.track-step-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.05rem;
}
.track-step-cap {
  margin: 0;
  opacity: 0.82;
  font-size: 0.9rem;
  line-height: 1.45;
}
.track-step-time {
  display: block;
  font-size: 0.78rem;
  opacity: 0.55;
  margin-top: 0.45rem;
}

.track-page-shell {
  max-width: 56rem;
}
.track-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .track-layout {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 2rem;
  }
  .track-summary-panel {
    position: sticky;
    top: 1rem;
  }
}
.track-panel-heading {
  margin-top: 0;
  font-family: var(--display);
  font-size: 1.15rem;
}
.track-items-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}
.track-activity-lead {
  margin: 0 0 1.25rem;
  opacity: 0.78;
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 52ch;
}
.track-feed {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 1.15rem;
}
.track-feed::before {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.4rem;
  bottom: 0.35rem;
  width: 2px;
  background: rgba(250, 248, 245, 0.1);
  border-radius: 2px;
}
.track-event {
  position: relative;
  padding: 0 0 1.4rem 1.05rem;
}
.track-event:last-child {
  padding-bottom: 0;
}
.track-event::before {
  content: "";
  position: absolute;
  left: -0.82rem;
  top: 0.32rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(10, 10, 11, 0.85);
}
.track-event--paid::before {
  background: var(--yellow-deep);
}
.track-event--progress::before {
  background: var(--taupe);
}
.track-event--current::before {
  background: #7cb87c;
}
.track-event--layby-lock::before {
  background: #c9a227;
}
.track-event-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.25rem;
}
.track-event h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.05rem;
}
.track-event-detail {
  margin: 0;
  opacity: 0.88;
  font-size: 0.92rem;
  line-height: 1.5;
}
.track-event time {
  display: block;
  font-size: 0.78rem;
  opacity: 0.55;
  margin-top: 0.45rem;
}
.track-event-progress-inner {
  display: grid;
  grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-top: 0.65rem;
}
@media (max-width: 600px) {
  .track-event-progress-inner {
    grid-template-columns: 1fr;
  }
}
.track-event-progress-inner .track-step-media img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1;
  object-fit: cover;
}
.track-event-progress-inner .track-step-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.02rem;
}
.track-event-progress-inner .track-step-cap {
  margin: 0;
  opacity: 0.82;
  font-size: 0.9rem;
  line-height: 1.45;
}

.track-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.track-gallery-item {
  margin: 0;
}

.track-gallery-item a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.track-gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.track-gallery-item figcaption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  line-height: 1.35;
  opacity: 0.85;
}

.track-gallery-item figcaption strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}

.track-gallery-item figcaption span {
  opacity: 0.75;
}

/* Floating WhatsApp + AI assistant (see site.js initFloatingHelpWidgets) */
body.bms-has-float-widgets {
  padding-bottom: 5.5rem;
}
@media (min-width: 721px) {
  body.bms-has-float-widgets {
    padding-bottom: 0;
  }
}
#bms-float-help {
  position: fixed;
  z-index: 9998;
  inset: auto 0 0 0;
  pointer-events: none;
}
#bms-float-help > * {
  pointer-events: auto;
}
.bms-float-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  padding: 0 1rem 1.1rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 721px) {
  .bms-float-stack {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: auto;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  #bms-float-help {
    inset: auto;
    pointer-events: none;
  }
}
.bms-fab {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.bms-fab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.bms-fab:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), var(--shadow-card);
}
.bms-fab--wa {
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
}
.bms-fab--wa.bms-fab--muted {
  background: linear-gradient(145deg, #3a5a4a, #2a4338);
  opacity: 0.92;
}
.bms-fab--ai {
  background: linear-gradient(145deg, #3d2f6b, #1a1230 55%, #12101c);
  border-color: rgba(245, 213, 71, 0.22);
  color: var(--yellow);
}
#bms-ai-panel {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0.75rem;
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  background: rgba(5, 5, 8, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#bms-ai-panel[hidden] {
  display: none !important;
}
@media (min-width: 721px) {
  #bms-ai-panel {
    padding: 1rem;
    padding-bottom: 5.5rem;
    align-items: flex-end;
  }
}
.bms-ai-panel-inner {
  width: min(100%, 420px);
  max-height: min(78vh, 560px);
  display: flex;
  flex-direction: column;
  background: var(--black-soft);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}
.bms-ai-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bms-ai-panel-title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
}
.bms-ai-panel-sub {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  opacity: 0.72;
  line-height: 1.35;
}
.bms-ai-close {
  font-size: 1.35rem;
  line-height: 1;
  padding: 0.15rem 0.45rem !important;
  min-height: auto;
}
.bms-ai-msgs {
  flex: 1;
  min-height: 140px;
  overflow-y: auto;
  padding: 0.65rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.bms-ai-row {
  display: flex;
}
.bms-ai-row--user {
  justify-content: flex-end;
}
.bms-ai-row--assistant {
  justify-content: flex-start;
}
.bms-ai-bubble {
  max-width: 92%;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}
.bms-ai-row--user .bms-ai-bubble {
  background: rgba(245, 213, 71, 0.14);
  border: 1px solid rgba(245, 213, 71, 0.22);
}
.bms-ai-row--assistant .bms-ai-bubble {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bms-ai-disclaimer {
  margin: 0;
  padding: 0 0.85rem;
  font-size: 0.68rem;
  opacity: 0.5;
  line-height: 1.35;
}
.bms-ai-compose {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.bms-ai-compose textarea {
  width: 100%;
  resize: vertical;
  min-height: 2.75rem;
  max-height: 8rem;
  font: inherit;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
}
.bms-ai-compose textarea:focus {
  outline: none;
  border-color: rgba(245, 213, 71, 0.35);
  box-shadow: var(--focus-ring);
}

/* ═══ Layout refresh — navigation, UX, performance (Syne + DM Sans) ═══ */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 100000;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}
.skip-link:focus {
  left: 0.75rem;
  box-shadow: var(--focus-ring);
}

.lux-hero {
  text-align: center;
  padding: 1.35rem 0 0.25rem;
}
.lux-eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}
.lux-tagline {
  margin: 0.35rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ivory);
  line-height: 1.2;
}
.lux-rule {
  width: 3.5rem;
  height: 1px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

header.site-header,
body.page-home header.site-header--bare {
  background: rgba(7, 7, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 1px 0 rgba(242, 214, 94, 0.04);
}

.masthead-chip {
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform var(--fast) var(--ease-out), box-shadow var(--mid) var(--ease-soft);
}
.masthead-chip:hover {
  transform: translateY(-1px);
}

.masthead-subnav a {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.68rem;
  transition: color var(--fast) ease, opacity var(--fast) ease;
}
.masthead-subnav a.masthead-subnav-store {
  color: var(--gold-light) !important;
  letter-spacing: 0.18em;
}

.btn {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.72rem 1.45rem;
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  box-shadow: 0 6px 24px rgba(242, 214, 94, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform var(--fast) var(--ease-out), box-shadow var(--mid) var(--ease-soft),
    filter var(--fast) ease;
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.btn:active {
  transform: translateY(0);
}

.section-head h1,
.section-head h2,
.page-hero h1,
.quote-panel h2,
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.product-grid {
  gap: 1.35rem;
}
.product-card {
  contain: layout style paint;
  content-visibility: auto;
  contain-intrinsic-size: 320px 380px;
  transition: transform var(--mid) var(--ease-out), box-shadow var(--mid) var(--ease-out),
    border-color var(--fast) var(--ease-soft);
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-card:hover img {
  transform: scale(1.03);
}
.product-card img {
  transition: transform 0.45s var(--ease-out);
}
.product-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
}
.price {
  color: var(--gold-light);
  font-family: var(--display);
  font-weight: 600;
}

.field input,
.field select,
.field textarea,
.store-search-input {
  min-height: 2.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  transition: border-color var(--fast) ease, box-shadow var(--fast) ease;
}
.field textarea {
  min-height: 5rem;
}
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.35rem;
}

.quote-panel,
.faq-item,
.store-advanced {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(
    165deg,
    rgba(242, 214, 94, 0.05) 0%,
    rgba(8, 8, 10, 0.92) 100%
  );
}

.page-hero {
  padding: 2.5rem 0 1.5rem;
}
.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 0.65rem;
}
.page-hero p {
  opacity: 0.72;
  max-width: 52ch;
  margin: 0;
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
  margin-top: 2rem;
}
.footer-brand {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.footer-aside-title {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}

.toast {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(242, 214, 94, 0.35);
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

/* Mobile dock — fast thumb navigation */
.bms-dock {
  position: fixed;
  z-index: 9990;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0.35rem 0.5rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 7, 8, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
@media (min-width: 900px) {
  .bms-dock {
    display: none;
  }
}
.bms-dock a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.45rem 0.25rem;
  border-radius: 12px;
  color: rgba(248, 245, 240, 0.55);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--fast) ease, background var(--fast) ease;
}
.bms-dock a:hover,
.bms-dock a.is-active {
  color: var(--gold-light);
  background: rgba(242, 214, 94, 0.08);
}
.bms-dock-icon {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.9;
}
.bms-dock-badge {
  position: absolute;
  margin-top: -1.35rem;
  margin-left: 0.85rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bms-dock-link {
  position: relative;
}

body.bms-has-dock {
  padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) {
  body.bms-has-dock {
    padding-bottom: 0;
  }
}
body.bms-has-dock.bms-has-float-widgets {
  padding-bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 721px) {
  body.bms-has-dock.bms-has-float-widgets {
    padding-bottom: 0;
  }
}

nav.main-nav a.nav-store {
  background: linear-gradient(145deg, var(--gold-light), var(--gold), var(--gold-deep));
  letter-spacing: 0.12em;
}

@media (prefers-reduced-motion: no-preference) {
  .product-card,
  .btn,
  .lead-pill {
    will-change: transform;
  }
}
