:root {
  --green-950: #050604;
  --green-900: #0a0805;
  --green-850: #110e09;
  --green-800: #181410;
  --moss: #c4942e;
  --bone: #f6f1e6;
  --bone-soft: #c8b68a;
  --muted: #b8a574;
  --ink: #100e0a;
  --line: rgba(212, 167, 53, 0.35);
  --line-strong: rgba(212, 167, 53, 0.55);
  --section-border: 1px solid var(--line);
  --cta: #d4a735;
  --gold: #d4a735;
  --gold-soft: #e8c256;
  --gold-dim: #9d741f;
  --gold-bronze: #72490c;
  --gold-brown: #583d17;
  --champagne: #0a0805;
  --champagne-card: #14110c;
  --champagne-text: #f6f1e6;
  --champagne-gold: #d4a735;
  --champagne-muted-gold: #c4942e;
  --champagne-border: rgba(212, 167, 53, 0.28);
  --silver: #c89b32;
  --silver-soft: #b8ad91;
  --gunmetal: #151a1d;
  --charcoal: #050604;
  --green-accent: #25d366;
  --foil: linear-gradient(110deg, #f7d676 0%, #d4a735 26%, #e8c256 48%, #72490c 68%, #f0d890 100%);
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --glow: 0 0 0 1px rgba(212, 167, 53, 0.08), 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  position: relative;
  height: auto;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--green-950);
  color: var(--bone);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
a,
input,
select,
textarea {
  outline-color: var(--moss);
}

body.gated {
  overflow: hidden;
}

body:not(.gated):not(.nav-open) {
  overflow-y: auto;
}

body.gated > :not(.age-gate) {
  pointer-events: none;
  user-select: none;
  filter: blur(8px);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 6, 4, 0.96);
}

body:not(.gated) .age-gate {
  display: none;
}

.age-panel,
.modal-panel {
  width: min(100%, 560px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0a0805;
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 44px);
}

.age-panel {
  text-align: center;
}

.age-panel h1,
.age-panel h2,
.age-title,
.modal-panel h2,
.checkout-section h2,
.section-title h2 {
  margin: 10px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.08em;
  line-height: 0.98;
  text-transform: uppercase;
}

.age-panel h1,
.age-panel h2,
.age-title {
  font-size: clamp(2rem, 7vw, 4rem);
  color: var(--bone);
}

.age-panel p,
.modal-panel p {
  color: var(--bone-soft);
  line-height: 1.7;
}

.gate-actions,
.modal-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 560px) {
  .gate-actions,
  .modal-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.button,
.nav-cta,
.tabs button,
.segmented button,
.checkout-card button,
.deliver-to button {
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 900;
  transition: 160ms ease;
}

.button-light,
.nav-cta:hover,
.segmented button.active,
.tabs button.active {
  border-color: var(--cta);
  background: linear-gradient(180deg, #e8c256, #d4a735 58%, #9d741f);
  color: #07090a;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.button-ghost,
.nav-cta,
.tabs button,
.segmented button {
  background: rgba(255, 255, 255, 0.04);
  color: var(--bone);
}

.button:hover,
.nav-cta:hover,
.tabs button:hover,
.segmented button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.full {
  width: 100%;
}

.eyebrow {
  margin: 0;
  color: var(--moss);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.site-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--green-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 58%, rgba(34, 48, 28, 0.08), transparent 24rem),
    radial-gradient(circle at 86% 0%, rgba(212, 167, 53, 0.05), transparent 25rem),
    linear-gradient(165deg, #050604 0%, #060704 52%, #050604 100%);
}

.hero-bg-watermark,
.hero-bg-mark {
  display: none;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::after {
  background:
    radial-gradient(ellipse at center, transparent 0 36%, rgba(0, 0, 0, 0.38) 76%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, transparent 24%, transparent 76%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, transparent 20%, transparent 70%, rgba(0, 0, 0, 0.48) 100%);
  opacity: 1;
}

.top-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 154px), 1760px);
  margin: 0 auto;
  min-height: 80px;
  padding: 24px 0 22px;
  border-bottom: 1px solid rgba(243, 236, 217, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 950;
  letter-spacing: 0.18em;
  color: #fbf7ea;
  font-size: 1.7rem;
}

.brand img {
  width: clamp(176px, 15vw, 260px);
  height: 68px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: normal;
}

.nav-links {
  display: none;
  gap: 42px;
  color: var(--bone-soft);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-whatsapp {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 14px 8px 10px;
  color: var(--bone);
  transition: 160ms ease;
}

.nav-whatsapp:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.08);
  color: white;
}

.nav-whatsapp-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.nav-whatsapp-copy small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-whatsapp-copy strong {
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--bone);
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle-bars {
  position: relative;
  width: 14px;
  height: 10px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle-bars::before {
  top: 0;
  box-shadow: 0 4px 0 currentColor;
}

.nav-toggle-bars::after {
  bottom: 0;
}

body.nav-open {
  overflow: hidden;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-items: start;
  justify-items: stretch;
  padding: 12px;
  background: rgba(5, 6, 7, 0.76);
  backdrop-filter: blur(10px);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav-panel {
  width: min(100%, 420px);
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 11, 13, 0.98);
  box-shadow: var(--shadow);
  padding: 18px;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-nav-close {
  border: 0;
  background: transparent;
  color: var(--bone);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-links {
  display: grid;
  gap: 8px;
}

.mobile-nav-links a {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 16px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-nav-wa {
  border-color: rgba(37, 211, 102, 0.42) !important;
  background: rgba(37, 211, 102, 0.1) !important;
  color: #d8ffe7 !important;
}

.wa-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #25d366;
  color: #053b1d;
  flex: 0 0 auto;
}

.wa-icon::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 2.09.6 4.09 1.74 5.83L2 22l4.39-1.85a9.86 9.86 0 0 0 5.65 1.76h.01c5.46 0 9.91-4.45 9.91-9.91C21.95 6.45 17.5 2 12.04 2Zm0 18.08h-.01a8.16 8.16 0 0 1-4.16-1.14l-.3-.18-2.6 1.1 1.11-2.54-.19-.31a8.14 8.14 0 0 1-1.25-4.36c0-4.5 3.66-8.16 8.16-8.16s8.16 3.66 8.16 8.16-3.66 8.16-8.16 8.16Zm4.52-6.1c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.12-.17.25-.64.81-.78.97-.14.17-.29.19-.54.06-.25-.12-1.05-.39-2-1.23-.74-.66-1.24-1.47-1.39-1.72-.14-.25-.02-.38.11-.51.11-.11.25-.29.37-.43.12-.14.17-.25.25-.41.08-.17.04-.31-.02-.43-.06-.12-.56-1.35-.77-1.85-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.43.06-.66.31-.23.25-.87.85-.87 2.07 0 1.22.89 2.4 1.01 2.56.12.17 1.75 2.67 4.23 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.07.15-1.18-.06-.1-.23-.16-.48-.28Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 2.09.6 4.09 1.74 5.83L2 22l4.39-1.85a9.86 9.86 0 0 0 5.65 1.76h.01c5.46 0 9.91-4.45 9.91-9.91C21.95 6.45 17.5 2 12.04 2Zm0 18.08h-.01a8.16 8.16 0 0 1-4.16-1.14l-.3-.18-2.6 1.1 1.11-2.54-.19-.31a8.14 8.14 0 0 1-1.25-4.36c0-4.5 3.66-8.16 8.16-8.16s8.16 3.66 8.16 8.16-3.66 8.16-8.16 8.16Zm4.52-6.1c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.12-.17.25-.64.81-.78.97-.14.17-.29.19-.54.06-.25-.12-1.05-.39-2-1.23-.74-.66-1.24-1.47-1.39-1.72-.14-.25-.02-.38.11-.51.11-.11.25-.29.37-.43.12-.14.17-.25.25-.41.08-.17.04-.31-.02-.43-.06-.12-.56-1.35-.77-1.85-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.43.06-.66.31-.23.25-.87.85-.87 2.07 0 1.22.89 2.4 1.01 2.56.12.17 1.75 2.67 4.23 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.07.15-1.18-.06-.1-.23-.16-.48-.28Z'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: none;
  opacity: 1;
}

.nav-bag {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 999px;
  background: rgba(9, 11, 13, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
  padding: 10px 14px 10px 10px;
  color: #eafff1;
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 160ms ease;
}

body.show-whatsapp-float .whatsapp-float {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body.show-whatsapp-float .whatsapp-float:hover {
  transform: translateY(-1px);
  border-color: #25d366;
}

.whatsapp-float.wa-missing {
  opacity: 0.72;
}

.whatsapp-float-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.whatsapp-float-copy small {
  color: #9fd9b2;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.whatsapp-float-copy strong {
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.whatsapp-contact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(18px, 3vw, 28px);
}

.whatsapp-contact h2,
.whatsapp-contact h3 {
  margin: 8px 0 0;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.whatsapp-contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.whatsapp-display {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-main {
  display: grid;
  gap: 18px;
}

.subpage-footer-main {
  width: min(100%, 860px);
  margin: 28px auto 0;
}

.inline-wa {
  color: var(--moss);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-wa:hover {
  color: white;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(32px, 4.5vw, 72px);
  align-items: start;
  justify-content: center;
  width: min(calc(100% - 80px), 1440px);
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  padding: 62px 0 70px;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 18px 0 0;
  color: white;
  font-size: clamp(3.2rem, 14vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--bone-soft);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.85;
}

.hero-product-showcase {
  display: grid;
  gap: 26px;
  min-width: 0;
  width: min(100%, 760px);
  margin-top: 62px;
}

.showcase-head,
.flow-strip,
.showcase-products,
.hero-bag-card,
.bag-copy {
  min-width: 0;
  max-width: 100%;
}

.showcase-head h1 {
  margin: 0;
  color: white;
  font-family: inherit;
  font-size: clamp(3rem, 4.3vw, 4.55rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: none;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.56);
  text-wrap: balance;
}

.showcase-head p:not(.delivery-pill) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--bone-soft);
  font-size: 1.18rem;
  line-height: 1.55;
}

.flow-strip {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 68px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.flow-strip div {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(12, 15, 17, 0.78);
  padding: 0 30px;
}

.flow-strip b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cta);
}

.flow-strip span {
  color: white;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.hero-bag-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 396px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(14, 12, 9, 0.9);
  box-shadow: var(--glow);
  padding: 22px 28px 22px;
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.hero-bag-card::before {
  display: none;
}

.hero-bag-card.green {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 167, 53, 0.1), transparent 46%),
    rgba(14, 12, 9, 0.92);
}

.hero-bag-card.selected {
  border-color: rgba(212, 167, 53, 0.5);
  box-shadow: 0 0 0 1px rgba(212, 167, 53, 0.08), 0 0 34px rgba(212, 167, 53, 0.08), var(--shadow);
}

.hero-bag-card.red {
  background:
    radial-gradient(circle at 50% 20%, rgba(181, 111, 91, 0.1), transparent 46%),
    rgba(14, 12, 9, 0.92);
}

.product-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(10, 8, 5, 0.64);
  color: var(--cta);
  padding: 9px 16px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-bag-card img {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 100%;
  width: 312px;
  height: 286px;
  justify-self: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: normal;
  object-fit: contain;
  object-position: 48% 50%;
  filter: brightness(1.04) contrast(1.02) saturate(1.03) drop-shadow(0 22px 34px rgba(0, 0, 0, 0.34));
}

.hero-bag-card.green img {
  filter: brightness(1.06) contrast(1.02) saturate(1.06) drop-shadow(0 22px 34px rgba(0, 0, 0, 0.34));
}

.hero-bag-card.red img {
  filter: brightness(1.07) contrast(1) saturate(1.02) drop-shadow(0 22px 34px rgba(0, 0, 0, 0.34));
}

.bag-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-top: 14px;
  text-align: left;
}

.bag-copy p,
.bag-copy strong {
  margin: 0;
  color: white;
  font-weight: 950;
}

.bag-copy p {
  font-size: 1.48rem;
  line-height: 1.04;
}

.bag-copy span {
  color: var(--muted);
  display: block;
  margin-top: 9px;
  font-size: 0.92rem;
}

.bag-copy strong {
  color: var(--bone);
  display: block;
  font-size: 1rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.bag-copy small {
  display: block;
  margin-top: 10px;
  color: var(--bone-soft);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: right;
}

.hero-qty {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: fit-content;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.24);
}

.hero-qty button {
  width: 42px;
  height: 40px;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 1.05rem;
}

.hero-qty strong {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 40px;
  border-inline: 1px solid var(--line);
  color: white;
}

.qty.large {
  position: relative;
  z-index: 1;
  justify-self: center;
  margin-top: 18px;
  background: rgba(0, 0, 0, 0.24);
}

.qty.large button {
  width: clamp(40px, 8vw, 52px);
  height: clamp(40px, 8vw, 52px);
}

.qty.large strong {
  width: clamp(38px, 8vw, 52px);
}

.trust-row,
.note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span,
.note-row span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
  color: var(--bone-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-shop {
  display: grid;
  gap: 16px;
}

.hero-products {
  display: grid;
  gap: 14px;
}

.mini-product,
.delivery-board,
.plan-card,
.product-card,
.checkout-card {
  border: 1px solid var(--line);
  background: rgba(14, 12, 9, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mini-product {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.mini-product img,
.product-card img {
  width: 74px;
  height: 74px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  object-fit: contain;
  padding: 8px;
}

.mini-product p,
.product-card h3 {
  margin: 0;
  color: white;
  font-weight: 950;
}

.mini-product span,
.product-card p,
.product-card small {
  color: var(--muted);
  line-height: 1.55;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.qty button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 1.1rem;
}

.qty strong {
  width: 34px;
  text-align: center;
}

.delivery-board {
  padding: 32px;
  border-radius: 18px;
}

.board-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.board-head h2 {
  margin: 14px 0 0;
  color: white;
  font-size: 2.25rem;
  letter-spacing: 0.01em;
}

.order-panel {
  width: min(100%, 500px);
  min-height: 0;
  padding: 32px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 8, 5, 0.92);
}

.order-snapshot {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
}

.panel-cart-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.panel-empty-cart,
.panel-cart-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
  padding: 14px;
}

.panel-empty-cart p,
.panel-cart-item p {
  margin: 0;
  color: white;
  font-weight: 900;
}

.panel-empty-cart small,
.panel-cart-item small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.panel-cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.panel-cart-item strong {
  color: var(--bone);
  white-space: nowrap;
}

.panel-cart-item span {
  color: white;
  font-weight: 950;
  white-space: nowrap;
}

.order-snapshot div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  font-size: 1.02rem;
}

.order-snapshot .panel-total {
  border-bottom: 0;
  padding-top: 4px;
  font-size: 1.1rem;
}

.panel-checkout {
  margin-top: 24px;
  min-height: 60px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.segmented.single-option {
  grid-template-columns: 1fr;
}

.segmented button {
  min-height: 60px;
}

.segmented button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.outside-note,
.panel-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.panel-payment-note {
  margin: 16px 0 0;
  border: 1px solid rgba(243, 236, 217, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--bone-soft);
  padding: 12px 14px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.panel-note {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  padding: 16px;
}

.address-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 16px;
  cursor: pointer;
  text-align: left;
}

.address-button small,
.deliver-to small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.address-button strong,
.deliver-to strong {
  display: block;
  margin-top: 4px;
}

.address-button em {
  font-style: normal;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--bone-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  color: white;
  padding: 12px;
}

textarea {
  resize: vertical;
}

.paper-section,
.dark-section,
.checkout-section {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 5vw, 54px);
}

.paper-section {
  background:
    radial-gradient(ellipse 72% 48% at 50% 0%, rgba(212, 167, 53, 0.07), transparent 58%),
    radial-gradient(ellipse 42% 36% at 88% 100%, rgba(114, 73, 12, 0.08), transparent 54%),
    linear-gradient(180deg, #060504 0%, #0a0805 100%);
  color: var(--bone);
  border-top: var(--section-border);
}

#how-it-works.paper-section {
  padding-block: clamp(56px, 7vw, 90px);
  background:
    radial-gradient(ellipse 62% 48% at 50% 0%, rgba(212, 167, 53, 0.1), transparent 64%),
    radial-gradient(ellipse 40% 34% at 78% 100%, rgba(114, 73, 12, 0.05), transparent 58%),
    var(--green-800);
  border-top-color: rgba(212, 167, 53, 0.18);
}

.paper-section .eyebrow {
  color: var(--gold-soft);
}

.paper-section .section-title h2 {
  color: #fbfaf5;
}

.dark-section,
.checkout-section {
  background:
    radial-gradient(ellipse 68% 42% at 18% 0%, rgba(212, 167, 53, 0.05), transparent 58%),
    var(--green-950);
  color: var(--bone);
  border-top: var(--section-border);
}

.section-title {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-title.left {
  margin: 0;
  text-align: left;
}

.section-title h2,
.checkout-section h2 {
  font-size: clamp(2.4rem, 8vw, 5rem);
}

.steps {
  display: grid;
  gap: 16px;
  width: min(100%, 1120px);
  margin: clamp(32px, 4vw, 44px) auto 0;
}

.steps article {
  border: 1px solid rgba(212, 167, 53, 0.22);
  background:
    linear-gradient(180deg, rgba(247, 214, 118, 0.04), rgba(212, 167, 53, 0.02)),
    rgba(10, 8, 5, 0.88);
  padding: 22px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.steps b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 1px solid rgba(212, 167, 53, 0.38);
  background: rgba(212, 167, 53, 0.1);
  color: var(--gold-soft);
}

.steps h3 {
  margin: 0;
  color: var(--bone);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steps p,
.about-copy p {
  color: rgba(246, 241, 230, 0.76);
  line-height: 1.7;
}

.menu-layout,
.about-layout,
.checkout-layout {
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  width: min(100%, 1280px);
  margin: 0 auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.addon-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--bone-soft);
  padding: 10px 14px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.addon-note strong {
  color: white;
}

.addon-note span {
  color: var(--muted);
}

.product-card {
  padding: 18px;
}

.product-card-head {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-card .price {
  color: white;
  font-weight: 950;
}

.accessories-teaser {
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.accessories-teaser-inner {
  display: grid;
  gap: 24px;
  align-items: center;
  width: min(100%, 1120px);
  margin: 0 auto;
  border: var(--section-border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 167, 53, 0.08), transparent 22rem),
    radial-gradient(circle at 88% 82%, rgba(88, 61, 23, 0.12), transparent 18rem),
    rgba(10, 8, 5, 0.84);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}

.accessories-teaser h2 {
  margin: 10px 0 0;
  color: white;
  font-size: clamp(1.55rem, 4vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accessories-teaser-copy {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.accessories-teaser-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--bone-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.plan-card,
.checkout-card {
  height: fit-content;
  padding: 22px;
}

.plan-card dl,
.totals {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.plan-card dl div,
.totals div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  color: white;
  font-weight: 850;
  text-align: right;
}

.about-copy {
  font-size: 1rem;
}

.note-row span {
  border-color: rgba(212, 167, 53, 0.24);
  background: rgba(212, 167, 53, 0.06);
  color: rgba(246, 241, 230, 0.88);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.note-row span:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.checkout-section > .checkout-layout > div > p {
  max-width: 720px;
  color: var(--bone-soft);
  line-height: 1.75;
}

.cart-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  background: var(--green-850);
  padding: 16px;
}

.cart-item p {
  margin: 0;
  color: white;
  font-weight: 900;
}

.cart-item small {
  color: var(--muted);
}

.deliver-to {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.deliver-to span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.8rem;
}

.deliver-to button {
  background: transparent;
  color: white;
}

.totals .grand {
  border-bottom: 0;
  padding-top: 6px;
  font-size: 1.15rem;
}

.payment-note {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  padding: 14px;
  margin-bottom: 14px;
}

.payment-note small {
  display: block;
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.payment-note p {
  margin: 6px 0 0;
  color: var(--bone-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.consent {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  padding: 14px;
  color: var(--bone-soft);
  font-weight: 500;
  line-height: 1.55;
}

.consent input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--moss);
}

.tiny-note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid rgba(212, 167, 53, 0.14);
  background:
    radial-gradient(ellipse 64% 40% at 50% 0%, rgba(212, 167, 53, 0.045), transparent 60%),
    var(--green-950);
  padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 48px) clamp(28px, 4vw, 40px);
  color: var(--bone-soft);
}

.footer-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
}

.footer-col {
  min-width: 0;
}

.footer-brand-col {
  display: grid;
  gap: 0;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
}

.footer-logo img {
  width: clamp(168px, 14vw, 220px);
  height: auto;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
  filter:
    brightness(1.1)
    contrast(1.06)
    saturate(1.05)
    drop-shadow(0 2px 12px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 20px rgba(212, 167, 53, 0.07));
}

.footer-tagline {
  max-width: 280px;
  margin: clamp(14px, 2vw, 18px) 0 clamp(18px, 2.5vw, 22px);
  color: rgba(246, 241, 230, 0.72);
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  line-height: 1.55;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(212, 167, 53, 0.28);
  border-radius: 50%;
  background: rgba(212, 167, 53, 0.1);
  color: var(--gold-soft);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-social-link:hover {
  background: rgba(212, 167, 53, 0.18);
  border-color: rgba(212, 167, 53, 0.42);
  color: #fff;
  transform: translateY(-1px);
}

.footer-heading {
  margin: 0 0 16px;
  color: #fbfaf5;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.footer-nav,
.footer-support {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a,
.footer-support a,
.footer-support-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(246, 241, 230, 0.76);
  font-size: 0.92rem;
  line-height: 1.45;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-support a:hover,
.footer-policy a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-support svg,
.footer-support-note svg {
  flex: 0 0 18px;
}

.footer-support-note {
  color: rgba(246, 241, 230, 0.62);
}

.footer-divider {
  height: 1px;
  margin: clamp(32px, 4vw, 48px) 0 clamp(24px, 3vw, 32px);
  background: rgba(212, 167, 53, 0.18);
}

.footer-legal {
  max-width: 920px;
  margin: 0 auto;
  color: rgba(200, 182, 138, 0.68);
  font-size: clamp(0.74rem, 0.95vw, 0.82rem);
  line-height: 1.65;
  text-align: center;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p + p {
  margin-top: 12px;
}

.footer-legal strong {
  color: rgba(232, 194, 86, 0.92);
}

.footer-bottom {
  margin-top: clamp(24px, 3vw, 32px);
  text-align: center;
}

.footer-copyright {
  margin: 0;
  color: rgba(246, 241, 230, 0.72);
  font-size: clamp(0.8rem, 0.95vw, 0.88rem);
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  color: rgba(246, 241, 230, 0.68);
  font-size: clamp(0.8rem, 0.95vw, 0.88rem);
}

.footer-policy a {
  color: inherit;
  text-decoration: none;
}

.footer-policy span {
  color: rgba(212, 167, 53, 0.28);
}

/* Legacy footer helpers still used on subpages */
.footer-main {
  display: grid;
  gap: clamp(22px, 3.5vw, 40px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  gap: 5px;
}

.footer-brand strong {
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0.28em;
}

.footer-brand span {
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  line-height: 1.6;
}

.footer-copy {
  color: var(--bone-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: white;
}

/* Legacy fineprint on older subpages */
.footer-fineprint {
  display: grid;
  gap: 8px;
  max-width: 860px;
  border-top: 0;
  padding-top: 0;
  color: rgba(200, 182, 138, 0.72);
  font-size: clamp(0.84rem, 1.05vw, 0.96rem);
  line-height: 1.65;
}

.mobile-order-bar {
  display: none;
}

.accessories-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--green-950);
  color: var(--bone);
  padding-bottom: clamp(48px, 8vw, 86px);
}

.accessories-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 8% 28%, rgba(159, 187, 130, 0.14), transparent 18rem),
    radial-gradient(circle at 90% 88%, rgba(159, 187, 130, 0.1), transparent 20rem),
    linear-gradient(90deg, rgba(6, 16, 12, 0.98), rgba(6, 16, 12, 0.7)),
    url("/images/kdb-night-hero.webp") center / cover;
}

.accessories-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.64);
  backdrop-filter: blur(1px);
}

.accessory-nav,
.accessories-hero,
.shop-grid,
.accessory-grid,
.accessory-return {
  position: relative;
  z-index: 1;
}

.accessories-hero,
.shop-grid,
.accessory-grid,
.accessory-return {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.accessories-hero {
  padding: clamp(48px, 8vw, 92px) 0 28px;
}

.accessories-hero h1 {
  margin: 12px 0 0;
  color: white;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.accessories-hero p:not(.eyebrow) {
  max-width: 650px;
  color: var(--bone-soft);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.7;
}

.shop-grid {
  display: grid;
  gap: 18px;
  margin-top: 14px;
}

.shop-product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(243, 236, 217, 0.18);
  border-radius: 18px;
  background: rgba(246, 241, 230, 0.96);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.shop-product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(239, 231, 211, 0.92));
}

.shop-product-media img {
  width: min(78%, 330px);
  height: auto;
  display: block;
}

.stock-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(16, 24, 18, 0.18);
  border-radius: 999px;
  background: #141b15;
  color: #f5ead2;
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-product-info {
  display: grid;
  gap: 24px;
  padding: clamp(20px, 4vw, 34px);
}

.shop-category {
  color: #667055;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-product-info h2 {
  margin: 8px 0 0;
  color: #111812;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.shop-product-info p {
  max-width: 560px;
  margin: 12px 0 0;
  color: #46513f;
  line-height: 1.65;
}

.shop-product-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(16, 24, 18, 0.12);
  padding-top: 18px;
}

.shop-product-bottom strong {
  color: #111812;
  font-size: 1rem;
}

.shop-product-bottom .button-ghost {
  border-color: rgba(16, 24, 18, 0.14);
  background: rgba(16, 24, 18, 0.06);
  color: #394333;
}

.accessory-grid {
  display: grid;
  gap: 16px;
}

.accessory-grid:has(.accessory-card:only-child) {
  grid-template-columns: minmax(0, 620px);
}

.accessory-copy-panel {
  display: block;
}

.accessory-copy-panel p + p {
  margin-top: 12px;
}

.accessory-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 16, 18, 0.78);
  box-shadow: var(--glow);
  padding: 16px;
  backdrop-filter: blur(18px);
}

.accessory-card.available {
  border-color: var(--line-strong);
}

.accessory-card img,
.accessory-icon {
  width: 86px;
  height: 86px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

.accessory-icon {
  display: grid;
  place-items: center;
  color: var(--cta);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.accessory-card span {
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.accessory-card h2 {
  margin: 5px 0 0;
  color: white;
  font-size: 1.25rem;
}

.accessory-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.accessory-return {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 11, 13, 0.72);
  padding: 18px;
}

.accessory-return p {
  max-width: 620px;
  margin: 0;
  color: var(--bone-soft);
  line-height: 1.6;
}

.rollpapers-product {
  display: grid;
  gap: 18px;
  align-items: center;
  max-width: 780px;
  margin-top: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(9, 11, 13, 0.76);
  box-shadow: var(--glow);
  padding: clamp(18px, 4vw, 28px);
  backdrop-filter: blur(18px);
}

.rollpapers-product img {
  width: min(100%, 180px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
}

.rollpapers-product span {
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rollpapers-product h2 {
  margin: 8px 0 0;
  color: white;
  font-size: clamp(1.55rem, 4vw, 2.3rem);
}

.rollpapers-product p {
  margin: 10px 0 18px;
}

@media (min-width: 720px) {
  .rollpapers-product {
    grid-template-columns: 190px 1fr;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  max-height: 92vh;
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 1.4rem;
}

.modal-panel form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

#orderSummary {
  margin-top: 20px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.6;
}

@media (min-width: 720px) {
  .flow-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .segmented,
  .schedule-row,
  .hero-products,
  .product-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .accessory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .nav-whatsapp {
    display: inline-flex;
  }
}


@media (min-width: 980px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
  }

  .hero-product-showcase {
    margin-top: 24px;
  }

  .hero-shop {
    position: sticky;
    top: 32px;
    align-self: start;
    justify-self: end;
    width: min(100%, 500px);
    margin-top: 66px;
  }

  .showcase-products {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-bag-card {
    display: grid;
    grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
    align-items: center;
    min-height: 270px;
    padding: 24px 28px;
  }

  .hero-bag-card::before {
    inset: 18px auto 18px 18px;
    width: min(290px, calc(100% - 36px));
    height: auto;
  }

  .hero-bag-card img {
    width: 220px;
    height: 210px;
  }

  .bag-copy {
    align-items: center;
    margin-top: 0;
  }

  .hero-qty {
    grid-column: 2;
    margin-top: 14px;
  }

  .bag-copy p {
    font-size: 1.3rem;
  }

  .bag-copy span {
    font-size: 0.86rem;
  }

  .bag-copy strong,
  .bag-copy small {
    font-size: 0.88rem;
  }

  .menu-layout,
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
  }

  .accessories-teaser-inner {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .about-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    min-height: clamp(360px, 42vh, 520px);
  }

  #about.paper-section {
    padding-block: clamp(88px, 10vw, 132px);
    min-height: clamp(520px, 58vh, 680px);
  }

  #how-it-works.paper-section {
    padding-block: clamp(72px, 8vw, 108px);
    min-height: clamp(460px, 48vh, 560px);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: clamp(24px, 3vw, 48px);
  }

  .footer-tagline {
    display: none;
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .paper-section {
    min-height: 430px;
    display: grid;
    align-content: center;
  }

  .accessory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 979px) {
  .hero-product-showcase {
    width: 100%;
  }

  .showcase-head h1 {
    font-size: clamp(2.75rem, 8.4vw, 4rem);
    white-space: normal;
    text-wrap: balance;
  }

  .showcase-products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 719px) {
  body {
    padding-bottom: 76px;
  }

  .top-nav {
    min-height: 88px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand img {
    width: clamp(150px, 33vw, 190px);
    height: 58px;
  }

  .hero-grid {
    padding-top: 14px;
  }

  .hero-product-showcase {
    gap: 18px;
    margin-top: 16px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 92px;
  }

  body.gated .whatsapp-float {
    display: none;
  }

  .mobile-order-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(9, 11, 13, 0.94);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.46);
    padding: 10px;
    backdrop-filter: blur(18px);
  }

  body.gated .mobile-order-bar {
    display: none;
  }

  .mobile-order-bar small {
    display: block;
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-order-bar strong {
    display: block;
    margin-top: 3px;
    color: white;
    font-size: 0.95rem;
  }

  .mobile-order-bar button {
    border: 1px solid var(--cta);
    border-radius: 12px;
    background: linear-gradient(180deg, #e8c256, #d4a735 58%, #9d741f);
    color: #07090a;
    cursor: pointer;
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-order-bar button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
  }

  .order-panel {
    min-height: 0;
    padding: 24px;
  }

  .order-snapshot {
    margin-top: 24px;
  }

  .panel-cart-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .panel-cart-item span {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .segmented {
    margin-top: 22px;
  }

  .segmented button {
    min-height: 62px;
  }

  .showcase-products {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-bag-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
    min-height: 186px;
    padding: 12px 16px;
  }

  .hero-bag-card img {
    width: 108px;
    height: 108px;
  }

  .bag-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 0;
  }

  .hero-qty {
    justify-self: end;
    width: min(100%, 178px);
  }

  .flow-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: 74px;
  }

  .flow-strip div {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0 4px;
    text-align: center;
  }

  .flow-strip b {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }

  .flow-strip span {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .showcase-head h1 {
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 560px) {
  .top-nav {
    width: min(100% - 24px, 1280px);
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav-whatsapp-copy {
    display: none;
  }

  .nav-whatsapp {
    display: inline-flex;
    padding: 8px;
  }

  .hero-grid {
    width: min(100% - 24px, 1280px);
    padding-top: 10px;
    padding-bottom: 42px;
  }

  .mini-product {
    grid-template-columns: 62px 1fr;
  }

  .mini-product .qty {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .showcase-head h1 {
    font-size: clamp(2.28rem, 11.2vw, 3.05rem);
    letter-spacing: -0.012em;
  }

  .showcase-head p {
    font-size: 0.93rem;
    line-height: 1.52;
  }

  .showcase-products {
    gap: 12px;
  }

  .hero-bag-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    min-height: 154px;
    padding: 12px;
  }

  .hero-bag-card::before {
    inset: 12px auto 12px 12px;
    width: 112px;
    height: auto;
  }

  .hero-bag-card img {
    width: 104px;
    height: 104px;
    border-radius: 12px;
  }

  .product-tag {
    top: 10px;
    right: 10px;
    padding: 7px 10px;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .bag-copy {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    padding-right: 2px;
  }

  .bag-copy p {
    max-width: 9.5rem;
    font-size: 0.98rem;
    line-height: 1.05;
  }

  .bag-copy span {
    margin-top: 6px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .bag-copy strong {
    font-size: 0.82rem;
  }

  .bag-copy small {
    margin-top: 4px;
    font-size: 0.74rem;
    text-align: left;
  }

  .hero-qty {
    grid-column: 2;
    margin-top: 4px;
  }

  .hero-qty button,
  .hero-qty strong {
    width: 34px;
    min-width: 34px;
    height: 34px;
  }

  .delivery-board {
    box-shadow: none;
  }

  .addon-note {
    align-items: flex-start;
    border-radius: 14px;
  }

  .accessory-card {
    grid-template-columns: 72px 1fr;
  }

  .accessory-card img,
  .accessory-icon {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 360px) {
  .top-nav {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero-product-showcase {
    gap: 18px;
  }

  .showcase-head h1 {
    font-size: clamp(2rem, 10.8vw, 2.46rem);
  }

  .showcase-head p {
    margin-top: 18px;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .flow-strip {
    display: none;
  }

  .hero-bag-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 146px;
    padding: 10px;
  }

  .hero-bag-card::before {
    inset: 10px auto 10px 10px;
    width: 104px;
  }

  .hero-bag-card img {
    width: 96px;
    height: 96px;
  }

  .bag-copy p {
    font-size: 0.92rem;
  }

  .bag-copy span {
    font-size: 0.68rem;
  }

  .mobile-order-bar {
    left: 10px;
    right: 10px;
    bottom: 8px;
  }
}

/* KDB reference homepage rebuild */
.site-hero {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 58% at 22% 16%, rgba(212, 167, 53, 0.1), transparent 58%),
    radial-gradient(ellipse 68% 52% at 80% 34%, rgba(212, 167, 53, 0.08), transparent 54%),
    #060704;
}

.site-hero::after {
  content: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 54% 40% at 24% 18%, rgba(212, 167, 53, 0.1), transparent 62%),
    radial-gradient(ellipse 46% 48% at 86% 32%, rgba(212, 167, 53, 0.08), transparent 58%),
    radial-gradient(ellipse 74% 54% at 8% 80%, rgba(34, 48, 28, 0.08), transparent 56%),
    radial-gradient(ellipse 60% 44% at 94% 12%, rgba(28, 40, 24, 0.07), transparent 54%),
    linear-gradient(165deg, #050604 0%, #060704 52%, #050604 100%);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.hero-bg::before {
  background:
    radial-gradient(ellipse 130px 290px at 7% 76%, rgba(40, 58, 32, 0.08), transparent 72%),
    radial-gradient(ellipse 95px 230px at 14% 90%, rgba(32, 46, 26, 0.07), transparent 70%),
    radial-gradient(ellipse 150px 310px at 93% 16%, rgba(36, 52, 30, 0.08), transparent 72%),
    radial-gradient(ellipse 105px 250px at 86% 6%, rgba(28, 40, 24, 0.06), transparent 68%),
    linear-gradient(118deg, transparent 0 30%, rgba(212, 167, 53, 0.1) 41%, rgba(212, 167, 53, 0.04) 46%, transparent 56%),
    radial-gradient(circle at 38% 8%, rgba(212, 167, 53, 0.07), transparent 15rem);
  opacity: 0.82;
}

.hero-bg::after {
  background:
    radial-gradient(ellipse at center, transparent 0 36%, rgba(0, 0, 0, 0.38) 76%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, transparent 24%, transparent 76%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, transparent 20%, transparent 70%, rgba(0, 0, 0, 0.48) 100%);
  opacity: 1;
  background-size: auto;
}

.top-nav {
  width: min(calc(100% - 56px), 1240px);
  min-height: 76px;
  padding: 16px 0;
  border-bottom-color: rgba(212, 167, 53, 0.13);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.04) 78%, transparent),
    linear-gradient(90deg, transparent, rgba(212, 167, 53, 0.026) 52%, transparent);
}

.brand img {
  width: clamp(120px, 9.6vw, 156px);
  height: auto;
  max-height: 70px;
}

.nav-links {
  gap: clamp(34px, 5vw, 70px);
  font-size: 0.8rem;
}

.nav-whatsapp {
  border-color: rgba(212, 167, 53, 0.28);
  background: linear-gradient(180deg, rgba(246, 241, 230, 0.075), rgba(212, 167, 53, 0.035));
  color: var(--bone);
  padding: 8px 16px 8px 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-grid {
  width: min(calc(100% - 56px), 1240px);
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(0, 750px) minmax(340px, 390px);
  gap: clamp(46px, 6vw, 84px);
  justify-content: space-between;
  padding: 34px 0 64px;
}

.hero-product-showcase {
  width: 100%;
  gap: 26px;
  margin-top: 0;
}

.delivery-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 42px;
  border: 1px solid rgba(212, 167, 53, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(246, 241, 230, 0.16), transparent 9rem),
    linear-gradient(180deg, rgba(246, 241, 230, 0.075), rgba(212, 167, 53, 0.03)),
    linear-gradient(110deg, rgba(246, 241, 230, 0.075), rgba(212, 167, 53, 0.035), transparent 62%);
  color: #e8c256;
  padding: 9px 18px;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow:
    0 0 20px rgba(212, 167, 53, 0.28),
    0 1px 0 rgba(0, 0, 0, 0.82);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(246, 241, 230, 0.13),
    inset 0 -1px 0 rgba(0, 0, 0, 0.62);
}

.delivery-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(212, 167, 53, 0.32);
}

.showcase-head h1 {
  max-width: 740px;
  font-size: clamp(3.25rem, 5vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
  color: #fbfaf5;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.96),
    0 22px 58px rgba(0, 0, 0, 0.66),
    0 0 34px rgba(212, 167, 53, 0.11);
}

.showcase-head h1 em {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.9),
    0 0 26px rgba(212, 167, 53, 0.2);
}

.showcase-head .delivery-pill {
  margin: 0 0 42px;
  color: #e8c256;
  text-shadow:
    0 0 20px rgba(212, 167, 53, 0.28),
    0 1px 0 rgba(0, 0, 0, 0.82);
}

.showcase-head p:not(.delivery-pill):not(.showcase-head__subcopy),
.showcase-head__copy {
  max-width: 540px;
  margin-top: 18px;
  color: rgba(246, 241, 230, 0.82);
  font-size: 1.07rem;
  line-height: 1.65;
}

.showcase-head__subcopy {
  max-width: 540px;
  margin: 10px 0 0;
  color: rgba(175, 168, 149, 0.78);
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.flow-strip {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 58px;
  border-radius: 14px;
  border: 1px solid rgba(212, 167, 53, 0.16);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(246, 241, 230, 0.06), transparent 15rem),
    rgba(4, 4, 4, 0.86);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(246, 241, 230, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.76);
}

.flow-strip::before {
  content: "";
  position: absolute;
  inset: 0 14px auto;
  height: 1px;
  pointer-events: none;
  background: var(--foil);
  opacity: 0.28;
}

.flow-strip div {
  position: relative;
  gap: 16px;
  padding: 0 22px;
  background: linear-gradient(180deg, rgba(246, 241, 230, 0.03), rgba(212, 167, 53, 0.012));
}

.flow-strip div:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: 20px;
  color: rgba(184, 173, 145, 0.45);
  font-weight: 400;
}

.flow-strip b {
  width: 31px;
  height: 31px;
  font-size: 0.82rem;
  border-color: rgba(212, 167, 53, 0.42);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.025);
}

.flow-strip span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
}

.catalog-head h2 {
  margin: 8px 0 0;
  color: #fbfaf5;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.05;
}

.catalog-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 430px);
  border-left: 1px solid rgba(212, 167, 53, 0.2);
}

.catalog-notes span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: rgba(246, 241, 230, 0.88);
  padding: 0 16px;
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.25;
}

.catalog-notes span:not(:last-child) {
  border-right: 1px solid rgba(212, 167, 53, 0.2);
}

.catalog-notes span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border: 1px solid rgba(212, 167, 53, 0.58);
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(246, 241, 230, 0.56), rgba(212, 167, 53, 0.2));
  box-shadow: 0 0 14px rgba(212, 167, 53, 0.08);
}

.showcase-products {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 167, 53, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(246, 241, 230, 0.04), rgba(212, 167, 53, 0.012)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 38%),
    rgba(5, 5, 4, 0.92);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(246, 241, 230, 0.055),
    inset 0 -1px 0 rgba(0, 0, 0, 0.72),
    inset 18px 0 42px rgba(0, 0, 0, 0.44);
}

.showcase-products::before {
  content: "";
  position: absolute;
  inset: 0 18px auto;
  z-index: 2;
  height: 1px;
  pointer-events: none;
  background: var(--foil);
  opacity: 0.22;
}

.showcase-products::after {
  content: "";
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 54px;
  margin-top: -54px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 4, 0), rgba(5, 5, 4, 0.78) 58%, rgba(5, 5, 4, 0.96));
  opacity: 0;
  transition: opacity 180ms ease;
}

.showcase-products.can-scroll-bottom::after {
  opacity: 1;
}

.showcase-products.can-scroll-top {
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.56),
    inset 0 18px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(246, 241, 230, 0.055),
    inset 0 -1px 0 rgba(0, 0, 0, 0.72),
    inset 18px 0 42px rgba(0, 0, 0, 0.44);
}

.showcase-products.is-scrollable {
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 167, 53, 0.38) rgba(5, 5, 4, 0.7);
}

.showcase-products.is-scrollable::-webkit-scrollbar {
  width: 8px;
}

.showcase-products.is-scrollable::-webkit-scrollbar-track {
  background: rgba(5, 5, 4, 0.7);
}

.showcase-products.is-scrollable::-webkit-scrollbar-thumb {
  border: 2px solid rgba(5, 5, 4, 0.86);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(246, 241, 230, 0.52), rgba(212, 167, 53, 0.42));
}

.hero-bag-card.product-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 112px 116px;
  align-items: center;
  min-height: 92px;
  border: 0;
  border-bottom: 1px solid rgba(212, 167, 53, 0.18);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(246, 241, 230, 0.018), transparent 50%),
    rgba(9, 9, 8, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(246, 241, 230, 0.035),
    inset 0 -1px 0 rgba(0, 0, 0, 0.72);
  padding: 10px 16px 10px 14px;
}

.hero-bag-card.product-row.red {
  background:
    linear-gradient(180deg, rgba(246, 241, 230, 0.018), transparent 50%),
    rgba(9, 9, 8, 0.94);
}

.hero-bag-card.product-row:last-child {
  border-bottom: 0;
}

.hero-bag-card.product-row:hover,
.hero-bag-card.product-row.selected {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(246, 241, 230, 0.105), transparent 13rem),
    linear-gradient(110deg, rgba(246, 241, 230, 0.07), rgba(212, 167, 53, 0.035), transparent 58%),
    linear-gradient(90deg, rgba(212, 167, 53, 0.075), transparent 72%),
    rgba(13, 12, 10, 0.96);
  box-shadow:
    inset 2px 0 0 rgba(212, 167, 53, 0.4),
    inset 0 1px 0 rgba(246, 241, 230, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.7);
}

.hero-bag-card.product-row img {
  width: 76px;
  height: 76px;
  justify-self: center;
  filter: brightness(1.08) contrast(1.04) saturate(1.02) drop-shadow(0 15px 22px rgba(0, 0, 0, 0.54));
}

.hero-bag-card.product-row.red img {
  filter: brightness(1.12) contrast(1.03) saturate(1.01) drop-shadow(0 15px 22px rgba(0, 0, 0, 0.54));
}

.hero-bag-card.product-row .product-tag {
  position: static;
  display: inline-flex;
  width: fit-content;
  margin: 0 0 6px;
  border: 1px solid rgba(212, 167, 53, 0.32);
  background: rgba(212, 167, 53, 0.08);
  color: var(--gold-soft);
  padding: 3px 8px;
  font-size: 0.58rem;
}

.hero-bag-card.product-row.red .product-tag {
  border-color: rgba(212, 167, 53, 0.32);
  background: rgba(212, 167, 53, 0.08);
  color: var(--gold-soft);
}

.hero-bag-card.product-row .bag-copy {
  display: block;
  margin: 0;
}

.hero-bag-card.product-row .bag-copy p {
  font-size: 1.13rem;
  font-weight: 920;
  line-height: 1;
}

.hero-bag-card.product-row .bag-copy small {
  margin: 6px 0 0;
  color: rgba(184, 173, 145, 0.78);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.28;
  text-align: left;
}

.product-price {
  text-align: right;
}

.product-price strong {
  display: block;
  color: #f6f1e6;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.product-price small {
  display: block;
  margin-top: 8px;
  color: rgba(184, 173, 145, 0.88);
  font-size: 0.78rem;
}

.hero-bag-card.product-row .hero-qty {
  justify-self: end;
  margin: 0;
}

.hero-bag-card.product-row .hero-qty button,
.hero-bag-card.product-row .hero-qty strong {
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-color: rgba(212, 167, 53, 0.2);
  color: #f6f1e6;
}

.hero-shop {
  position: sticky;
  top: 24px;
  align-self: start;
  width: 100%;
  margin-top: 26px;
}

.order-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(212, 167, 53, 0.24);
  background:
    linear-gradient(118deg, rgba(246, 241, 230, 0.06), rgba(212, 167, 53, 0.026) 32%, transparent 56%),
    radial-gradient(circle at 48% 0%, rgba(212, 167, 53, 0.12), transparent 15rem),
    linear-gradient(145deg, rgba(246, 241, 230, 0.052), rgba(212, 167, 53, 0.016) 42%, rgba(0, 0, 0, 0.18)),
    rgba(7, 7, 6, 0.97);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.68),
    inset 0 1px 0 rgba(246, 241, 230, 0.09),
    inset 0 -1px 0 rgba(0, 0, 0, 0.82),
    -18px 0 58px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.order-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 24% 8%, rgba(246, 241, 230, 0.14), transparent 19rem),
    radial-gradient(ellipse at 92% 34%, rgba(212, 167, 53, 0.075), transparent 12rem),
    linear-gradient(108deg, transparent 0 18%, rgba(246, 241, 230, 0.035) 26%, transparent 38%);
  opacity: 0.7;
}

.order-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  z-index: 0;
  height: 1px;
  pointer-events: none;
  background: var(--foil);
  opacity: 0.34;
}

.order-panel > * {
  position: relative;
  z-index: 1;
}

.board-head h2 {
  margin-top: 12px;
  font-size: clamp(1.85rem, 2.4vw, 2.3rem);
  line-height: 1.05;
  text-shadow: 0 0 28px rgba(212, 167, 53, 0.14);
}

.panel-cart-list {
  margin-top: 28px;
}

.panel-empty-cart {
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 6px 0 20px;
  text-align: center;
}

.empty-bag {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(212, 167, 53, 0.2);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(246, 241, 230, 0.035), rgba(212, 167, 53, 0.014));
  position: relative;
}

.empty-bag::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 30px;
  width: 28px;
  height: 27px;
  border: 3px solid var(--silver-soft);
  border-radius: 3px;
}

.empty-bag::after {
  content: "";
  position: absolute;
  left: 33px;
  top: 22px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--silver-soft);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.panel-cart-item {
  grid-template-columns: minmax(0, 1fr) auto;
  border-color: rgba(212, 167, 53, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(246, 241, 230, 0.035), transparent 56%),
    rgba(255, 255, 255, 0.026);
}

.panel-cart-item span {
  grid-column: 1 / -1;
  justify-self: end;
}

.order-snapshot {
  margin-top: 18px;
}

.order-snapshot div {
  font-size: 0.95rem;
  border-bottom-color: rgba(212, 167, 53, 0.15);
}

.order-snapshot .panel-total dd {
  color: #fbfaf5;
  text-shadow: 0 0 22px rgba(212, 167, 53, 0.12);
}

.panel-payment-note {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(212, 167, 53, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(246, 241, 230, 0.07), transparent 12rem),
    linear-gradient(135deg, rgba(246, 241, 230, 0.035), transparent 58%),
    rgba(5, 5, 4, 0.72);
  color: rgba(184, 173, 145, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(246, 241, 230, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.64);
}

.panel-checkout {
  min-height: 58px;
  margin-top: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(246, 241, 230, 0.42);
  position: relative;
  overflow: hidden;
}

.panel-checkout:disabled {
  opacity: 1;
  border-color: rgba(212, 167, 53, 0.14);
  background: linear-gradient(180deg, rgba(184, 173, 145, 0.16), rgba(59, 55, 47, 0.22));
  color: rgba(184, 173, 145, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.panel-checkout:not(:disabled) {
  border-color: rgba(246, 241, 230, 0.7);
  background: linear-gradient(180deg, #f6f1e6, #c89b32 56%, #9d741f);
  color: #050607;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.44), 0 0 34px rgba(212, 167, 53, 0.16), inset 0 1px 0 rgba(246, 241, 230, 0.68);
}

.panel-checkout::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(108deg, transparent 0 22%, rgba(255, 255, 255, 0.22) 32%, transparent 44%);
  opacity: 0.24;
}

.panel-checkout:disabled::before {
  opacity: 0;
}

.panel-trust {
  margin: 10px 0 0;
  color: rgba(184, 173, 145, 0.82);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.02em;
  text-align: center;
}

@media (min-width: 980px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .hero-shop {
    position: static;
    margin-top: 0;
  }
}

@media (max-width: 719px) {
  body {
    padding-bottom: 92px;
  }

  .site-hero {
    min-height: auto;
  }

  .site-hero::after {
    display: none;
  }

  .hero-bg {
    position: absolute;
  }

  .top-nav {
    width: min(100% - 24px, 1240px);
    min-height: 72px;
    padding: 12px 0;
  }

  .brand img {
    width: 142px;
    height: 48px;
  }

  .hero-grid {
    width: min(100% - 24px, 1240px);
    padding: 26px 0 36px;
  }

  .delivery-pill {
    padding: 8px 12px;
    font-size: 0.58rem;
  }

  .showcase-head .delivery-pill {
    margin-bottom: 28px;
  }

  .showcase-head h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 0.98;
  }

  .showcase-head p:not(.delivery-pill) {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .showcase-head .delivery-pill {
    color: #e8c256;
  }

  .flow-strip {
    height: 68px;
    border-radius: 14px;
  }

  .flow-strip div {
    justify-content: center;
    padding: 0 4px;
  }

  .flow-strip div:not(:last-child)::after {
    display: none;
  }

  .catalog-head {
    display: grid;
    gap: 16px;
  }

  .catalog-notes {
    width: 100%;
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .catalog-notes span {
    min-height: 34px;
    border-right: 0;
    border-top: 1px solid rgba(212, 167, 53, 0.18);
    padding: 8px 0;
  }

  .hero-bag-card.product-row {
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 6px 12px;
    min-height: 108px;
    padding: 10px 12px;
  }

  .hero-bag-card.product-row img {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 64px;
    height: 64px;
  }

  .hero-bag-card.product-row .bag-copy {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .hero-bag-card.product-row .bag-copy p {
    max-width: none;
    font-size: 1.02rem;
  }

  .hero-bag-card.product-row .bag-copy small {
    font-size: 0.7rem;
  }

  .product-price {
    grid-column: 3;
    grid-row: 1;
    display: block;
    min-width: 72px;
    text-align: right;
  }

  .product-price strong {
    font-size: 0.76rem;
  }

  .product-price small {
    margin-top: 4px;
  }

  .hero-bag-card.product-row .hero-qty {
    grid-column: 3;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    width: auto;
  }

  .hero-bag-card.product-row .hero-qty button,
  .hero-bag-card.product-row .hero-qty strong {
    flex: 0 0 auto;
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .hero-shop {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 86px;
    z-index: 79;
    max-height: min(68vh, 620px);
    overflow: auto;
    transform: translateY(calc(100% + 110px));
    opacity: 0;
    pointer-events: none;
    transition: 180ms ease;
  }

  body.mobile-order-open .hero-shop {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .order-panel {
    padding: 20px;
    border-radius: 18px;
  }

  .mobile-order-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .mobile-summary-toggle {
    display: grid;
    justify-items: start;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 2px 4px;
    text-align: left;
  }

  .mobile-order-bar > button:last-child {
    min-width: 132px;
  }

  .whatsapp-float {
    display: none;
  }
}

/* Simple mobile-only product landing page */
.mobile-simple-landing {
  display: none;
}

@media (max-width: 719px) {
  :root {
    --simple-bg: #050604;
    --simple-card: #0d0f0a;
    --simple-card-2: #14160f;
    --simple-text: #f6f1e6;
    --simple-muted: #b8ad91;
    --simple-gold: #d4a735;
    --simple-border: rgba(212, 167, 53, 0.35);
    --simple-wa: #25d366;
  }

  body {
    background: var(--simple-bg) !important;
    color: var(--simple-text);
    padding-bottom: 96px;
  }

  .site-hero {
    min-height: auto;
    overflow: visible;
    border-bottom: 0;
    background: #050604 !important;
  }

  .hero-bg,
  .hero-grid,
  main,
  .site-footer,
  .whatsapp-float {
    display: none !important;
  }

  .top-nav {
    position: sticky;
    top: 0;
    z-index: 80;
    width: min(100% - 28px, 430px);
    min-height: 64px;
    margin: 0 auto;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 167, 53, 0.12);
    background: rgba(8, 9, 6, 0.86);
    backdrop-filter: blur(18px);
  }

  .brand img {
    width: 112px;
    height: auto;
  }

  .nav-whatsapp {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 46px;
    border-radius: 999px;
    border-color: rgba(212, 167, 53, 0.22);
    background: rgba(17, 19, 13, 0.9);
    color: var(--simple-text);
    padding: 0 16px;
  }

  .nav-toggle span:last-child {
    display: none;
  }

  .mobile-nav-panel {
    border: 1px solid var(--simple-border);
    border-radius: 28px;
    background: rgba(17, 19, 13, 0.98);
  }

  .mobile-nav-links a {
    border-color: rgba(212, 167, 53, 0.18);
    background: rgba(255, 255, 255, 0.03);
  }

  .mobile-simple-landing {
    display: block;
    width: min(100% - 28px, 430px);
    margin: 0 auto;
    padding: 16px 0 28px;
  }

  .mobile-simple-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    border: 1px solid var(--simple-border);
    border-radius: 34px;
    background:
      radial-gradient(circle at 50% 24%, rgba(212, 167, 53, 0.15), transparent 11rem),
      radial-gradient(circle at 50% 58%, rgba(44, 66, 35, 0.24), transparent 13rem),
      linear-gradient(180deg, #080906 0%, #0c0e09 58%, #050604 100%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .mobile-pouch-stage {
    position: relative;
    height: 430px;
    margin: 18px 0 0;
  }

  .mobile-pouch-glow {
    position: absolute;
    left: 50%;
    top: 46%;
    width: 250px;
    height: 310px;
    border-radius: 999px;
    background: rgba(212, 167, 53, 0.14);
    filter: blur(52px);
    transform: translate(-50%, -50%);
  }

  .mobile-pouch-image {
    position: absolute;
    inset: 0;
    background-image: url("images/kratom-pouch.webp");
    background-repeat: no-repeat;
    background-position: center 42%;
    background-size: 185%;
    filter: drop-shadow(0 36px 46px rgba(0, 0, 0, 0.72));
    -webkit-mask-image: radial-gradient(ellipse at 50% 45%, black 0%, black 35%, rgba(0, 0, 0, 0.72) 47%, transparent 72%);
    mask-image: radial-gradient(ellipse at 50% 45%, black 0%, black 35%, rgba(0, 0, 0, 0.72) 47%, transparent 72%);
  }

  .mobile-simple-copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .mobile-simple-copy .eyebrow,
  .mobile-simple-products .eyebrow,
  .mobile-simple-text .eyebrow {
    color: var(--simple-gold);
  }

  .mobile-simple-copy h1 {
    margin: 10px 0 12px;
    color: var(--simple-text);
    font-size: clamp(2.55rem, 12vw, 3.45rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
  }

  .mobile-simple-copy p:not(.eyebrow) {
    max-width: 330px;
    margin: 0;
    color: rgba(245, 240, 230, 0.76);
    font-size: 1rem;
    line-height: 1.62;
  }

  .mobile-simple-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 22px;
    border-radius: 999px;
    background: var(--simple-wa);
    color: #041207;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-simple-copy small {
    display: block;
    margin-top: 12px;
    color: var(--simple-muted);
    font-size: 0.76rem;
    text-align: center;
  }

  .mobile-simple-products,
  .mobile-simple-text {
    margin-top: 14px;
    border: 1px solid var(--simple-border);
    border-radius: 26px;
    background: linear-gradient(180deg, var(--simple-card-2), var(--simple-card));
    padding: 18px;
  }

  .mobile-simple-products h2 {
    margin: 8px 0 16px;
    color: var(--simple-text);
    font-size: 1.9rem;
    line-height: 1;
    letter-spacing: -0.055em;
  }

  .simple-product-list {
    display: grid;
    gap: 10px;
  }

  .simple-product-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(212, 167, 53, 0.2);
    border-radius: 20px;
    background: rgba(8, 9, 6, 0.56);
    padding: 14px;
  }

  .simple-product-row h3 {
    margin: 0;
    color: var(--simple-text);
    font-size: 1.02rem;
    line-height: 1.1;
  }

  .simple-product-row p {
    margin: 5px 0 0;
    color: var(--simple-muted);
    font-size: 0.86rem;
  }

  .simple-qty {
    display: grid;
    grid-template-columns: 36px 34px 36px;
    overflow: hidden;
    border: 1px solid rgba(212, 167, 53, 0.26);
    border-radius: 15px;
    background: #080906;
  }

  .simple-qty button,
  .simple-qty strong {
    display: grid;
    height: 38px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--simple-text);
    font-weight: 950;
  }

  .simple-qty button:first-child {
    border-right: 1px solid rgba(212, 167, 53, 0.16);
  }

  .simple-qty button:last-child {
    border-left: 1px solid rgba(212, 167, 53, 0.16);
  }

  .mobile-simple-text p:not(.eyebrow) {
    margin: 8px 0 0;
    color: rgba(245, 240, 230, 0.78);
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .mobile-order-bar {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(145px, 1.1fr);
    gap: 10px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: 1px solid var(--simple-border);
    border-radius: 22px;
    background: rgba(17, 19, 13, 0.96);
    padding: 10px;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.56);
    backdrop-filter: blur(18px);
  }

  .mobile-summary-toggle {
    display: grid;
    align-content: center;
    justify-items: start;
    border: 0;
    background: linear-gradient(180deg, #f0dfad, var(--simple-gold));
    border-radius: 16px;
    color: #080906;
    padding: 8px 14px;
    text-align: left;
  }

  .mobile-summary-toggle small {
    color: rgba(8, 9, 6, 0.58);
    font-size: 0.64rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-summary-toggle strong {
    color: #080906;
    font-size: 1.2rem;
  }

  .mobile-order-bar > button:last-child {
    min-height: 54px;
    border: 0;
    border-radius: 16px;
    background: rgba(245, 240, 230, 0.13);
    color: rgba(245, 240, 230, 0.48);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-order-bar > button:last-child:not(:disabled) {
    background: var(--simple-wa);
    color: #041207;
  }
}

@media (max-width: 719px) {
  .mobile-simple-copy {
    bottom: 92px;
  }
}

/* Creme-inspired mobile app skin: mobile-only, desktop untouched */
@media (max-width: 719px) {
  body {
    background: #030403 !important;
  }

  .top-nav {
    min-height: 76px;
    border-bottom: 0;
    background: #030403;
  }

  .brand img {
    width: 118px;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55));
  }

  .nav-toggle {
    min-width: 58px;
    min-height: 58px;
    border-radius: 999px;
    background: #080906;
    box-shadow: inset 0 0 0 1px rgba(212, 167, 53, 0.18);
  }

  .mobile-simple-landing {
    width: min(100% - 24px, 430px);
    padding-top: 4px;
  }

  .mobile-creme-rail {
    display: flex;
    gap: 12px;
    margin: 2px -2px 14px;
    overflow-x: auto;
    padding: 4px 2px 10px;
    scrollbar-width: none;
  }

  .mobile-creme-rail::-webkit-scrollbar {
    display: none;
  }

  .creme-rail-item {
    display: grid;
    flex: 0 0 auto;
    justify-items: center;
    gap: 7px;
    color: #f5f0e6;
  }

  .creme-rail-item span {
    position: relative;
    display: block;
    width: 66px;
    height: 66px;
    overflow: hidden;
    border: 2px solid rgba(212, 167, 53, 0.9);
    border-radius: 999px;
    background-color: #11130d;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 92%;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), inset 0 0 0 3px #030403;
  }

  .creme-rail-item.green span {
    background-image: url("images/green-thai-kratom-cutout-600.webp");
  }

  .creme-rail-item.red span {
    background-image: url("images/red-thai-kratom-cutout-600.webp");
  }

  .creme-rail-item.pouch span {
    background-image: url("images/kratom-pouch.webp");
    background-size: 210%;
  }

  .creme-rail-item.info span {
    background-image: radial-gradient(circle, rgba(212, 167, 53, 0.22), rgba(212, 167, 53, 0.08) 42%, transparent 70%);
    background-size: cover;
  }

  .creme-rail-item.delivery span {
    background-image: url("images/kdb-night-hero.webp");
    background-size: cover;
  }

  .creme-rail-item small {
    color: rgba(245, 240, 230, 0.68);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.04em;
  }

  .mobile-simple-hero {
    min-height: 700px;
    border: 0;
    border-radius: 30px;
    background: #080906;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.72);
  }

  .mobile-simple-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, transparent 0%, rgba(3, 4, 3, 0.05) 34%, rgba(3, 4, 3, 0.72) 68%, #030403 100%),
      radial-gradient(circle at 50% 34%, rgba(212, 167, 53, 0.08), transparent 16rem);
  }

  .mobile-favorite {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(245, 240, 230, 0.28);
    border-radius: 999px;
    background: rgba(3, 4, 3, 0.28);
    color: #f5f0e6;
    font-size: 1.6rem;
    line-height: 1;
    backdrop-filter: blur(12px);
  }

  .mobile-pouch-stage {
    height: 455px;
    margin: 0;
  }

  .mobile-pouch-glow {
    width: 270px;
    height: 330px;
    background: rgba(212, 167, 53, 0.12);
    filter: blur(58px);
  }

  .mobile-pouch-image {
    background-position: center 38%;
    background-size: 176%;
    filter: saturate(0.95) contrast(1.05) drop-shadow(0 42px 52px rgba(0, 0, 0, 0.78));
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 0%, black 41%, rgba(0, 0, 0, 0.82) 53%, transparent 76%);
    mask-image: radial-gradient(ellipse at 50% 40%, black 0%, black 41%, rgba(0, 0, 0, 0.82) 53%, transparent 76%);
  }

  .mobile-simple-copy {
    z-index: 3;
    bottom: 34px;
  }

  .mobile-simple-copy .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
  }

  .mobile-simple-copy h1 {
    max-width: 320px;
    font-size: clamp(2.45rem, 12vw, 3.35rem);
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.74);
  }

  .mobile-simple-copy p:not(.eyebrow) {
    max-width: 320px;
    color: rgba(245, 240, 230, 0.76);
  }

  .mobile-simple-cta {
    margin-top: 20px;
    min-height: 56px;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.16);
  }

  .mobile-simple-copy small {
    color: rgba(185, 174, 146, 0.84);
  }

  .mobile-simple-products,
  .mobile-simple-text {
    border-color: rgba(212, 167, 53, 0.24);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(23, 26, 18, 0.96), rgba(8, 9, 6, 0.98));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  }
}

/* Tighten Creme mobile hero so CTA stays visible above sticky order bar */
@media (max-width: 719px) {
  .mobile-simple-hero {
    min-height: 590px;
  }

  .mobile-pouch-stage {
    height: 330px;
  }

  .mobile-pouch-image {
    background-size: 162%;
    background-position: center 36%;
  }

  .mobile-simple-copy {
    bottom: 102px;
  }

  .mobile-simple-copy h1 {
    max-width: 290px;
    font-size: clamp(2.15rem, 10.5vw, 2.85rem);
    line-height: 0.92;
  }

  .mobile-simple-copy p:not(.eyebrow) {
    max-width: 305px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .mobile-simple-cta {
    min-height: 50px;
    margin-top: 14px;
  }

  .mobile-simple-copy small {
    margin-top: 8px;
    font-size: 0.68rem;
  }
}

/* Floreo-inspired KDB mobile landing: mobile-only, desktop untouched */
@media (max-width: 719px) {
  :root {
    --floreo-bg: #030403;
    --floreo-deep: #080a07;
    --floreo-panel: #0e1a10;
    --floreo-panel-2: #132415;
    --floreo-gold: #d6a83a;
    --floreo-gold-soft: #e6c66a;
    --floreo-text: #f4f0e4;
    --floreo-muted: #afa895;
    --floreo-border: rgba(214, 168, 58, 0.22);
  }

  html,
  body {
    overflow-x: hidden;
    background: var(--floreo-bg) !important;
  }

  body {
    padding-bottom: 0;
    color: var(--floreo-text);
  }

  .site-hero:has(.mobile-floreo-landing) {
    padding: 0;
    margin: 0;
    border: 0;
    overflow: visible;
    background: transparent !important;
  }

  .site-hero:has(.mobile-floreo-landing) .hero-bg,
  .site-hero:has(.mobile-floreo-landing)::before,
  .site-hero:has(.mobile-floreo-landing)::after {
    display: none !important;
    content: none !important;
  }

  .site-hero:has(.mobile-floreo-landing) .top-nav {
    display: none !important;
  }

  .hero-bg,
  .hero-grid,
  main,
  .site-footer,
  .mobile-order-bar {
    display: none !important;
  }

  body:has(.mobile-floreo-landing):not(.gated) .whatsapp-float {
    display: inline-flex !important;
    left: auto;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    gap: 0;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border: 1px solid rgba(214, 168, 58, 0.34);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(12, 14, 10, 0.96), rgba(3, 4, 3, 0.98));
    backdrop-filter: blur(10px);
    box-shadow:
      0 14px 32px rgba(0, 0, 0, 0.46),
      0 0 22px rgba(214, 168, 58, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 0;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    justify-content: center;
    align-items: center;
    transform: translateY(16px) scale(0.92);
    transition:
      opacity 220ms ease,
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 180ms ease,
      border-color 180ms ease;
  }

  body:has(.mobile-floreo-landing):not(.gated).show-whatsapp-float .whatsapp-float:active {
    transform: translateY(0) scale(0.96);
    border-color: rgba(230, 198, 106, 0.52);
  }

  body:has(.mobile-floreo-landing):not(.gated).show-whatsapp-float .whatsapp-float {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  body:has(.mobile-floreo-landing):not(.gated).show-whatsapp-float.mobile-wa-float-hidden .whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.9);
  }

  body:has(.mobile-floreo-landing) .whatsapp-float .wa-icon {
    width: 34px;
    height: 34px;
    border: 0;
    background: #25d366;
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
  }

  body:has(.mobile-floreo-landing) .whatsapp-float .wa-icon::before {
    width: 18px;
    height: 18px;
  }

  body:has(.mobile-floreo-landing) .whatsapp-float-copy {
    display: none;
  }

  body.gated:has(.mobile-floreo-landing) .whatsapp-float {
    display: none !important;
  }

  .mobile-nav {
    z-index: 120;
  }

  .mobile-nav-panel {
    border: 1px solid rgba(212, 167, 53, 0.24);
    border-radius: 0 0 26px 26px;
    background: rgba(10, 17, 8, 0.98);
  }

  .mobile-simple-landing.mobile-floreo-landing {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
  }

  .mobile-kdb-hero {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    max-width: none;
    height: 100svh;
    height: 100dvh;
    min-height: 100svh;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    line-height: 0;
    background: #030403;
  }

  .mobile-kdb-hero__art {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .mobile-kdb-hero__hits {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
  }

  .mobile-kdb-hero__brand-hit,
  .mobile-kdb-hero__menu-hit {
    position: absolute;
    border: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
  }

  .mobile-kdb-hero__brand-hit {
    top: 4.8%;
    left: 3.5%;
    width: 22%;
    height: 6.8%;
  }

  .mobile-kdb-hero__menu-hit {
    top: 4.8%;
    right: 3.5%;
    width: 12%;
    height: 6.8%;
  }

  .mobile-kdb-hero__order-cta {
    position: absolute;
    left: 50%;
    bottom: calc(32px + env(safe-area-inset-bottom, 0px));
    z-index: 5;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 1px solid rgba(230, 198, 106, 0.42);
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(214, 168, 58, 0.94), rgba(180, 136, 38, 0.94));
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.42),
      0 0 24px rgba(214, 168, 58, 0.18);
    color: #120e07;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
    pointer-events: auto;
  }

  .mobile-floreo-intro .eyebrow,
  .mobile-floreo-categories .eyebrow,
  .mobile-floreo-products .eyebrow {
    margin: 0;
    color: rgba(214, 168, 58, 0.82);
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-floreo-intro {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse 90% 55% at 50% -10%, rgba(214, 168, 58, 0.05), transparent 68%),
      linear-gradient(180deg, #080a07 0%, #0e1a10 100%);
    padding: 54px 20px 32px;
    text-align: center;
  }

  .mobile-floreo-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
      repeating-linear-gradient(
        125deg,
        transparent,
        transparent 52px,
        rgba(214, 168, 58, 0.14) 52px,
        rgba(214, 168, 58, 0.14) 53px
      ),
      radial-gradient(ellipse 34px 22px at 18% 28%, rgba(214, 168, 58, 0.18), transparent 72%),
      radial-gradient(ellipse 30px 20px at 78% 62%, rgba(214, 168, 58, 0.12), transparent 72%),
      radial-gradient(ellipse 26px 18px at 42% 82%, rgba(19, 36, 21, 0.55), transparent 70%);
    background-size: auto, 140px 140px, 120px 120px, 160px 160px;
    pointer-events: none;
  }

  .mobile-floreo-intro h2 {
    position: relative;
    max-width: 335px;
    margin: 16px auto 0;
    color: var(--floreo-text);
    font-size: clamp(1.22rem, 5.8vw, 1.56rem);
    line-height: 1.3;
    letter-spacing: -0.035em;
  }

  .mobile-floreo-intro__copy {
    position: relative;
    max-width: 320px;
    margin: 18px auto 0;
    color: var(--floreo-muted);
    font-size: 0.86rem;
    line-height: 1.62;
  }

  .mobile-floreo-intro__subcopy {
    position: relative;
    max-width: 320px;
    margin: 10px auto 0;
    color: rgba(175, 168, 149, 0.72);
    font-size: 0.74rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .mobile-floreo-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(214, 168, 58, 0.2);
    padding: 0;
  }

  .mobile-floreo-services article {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    padding: 24px 20px;
    color: var(--floreo-text);
  }

  .mobile-floreo-services article:nth-child(odd) {
    background: #080a07;
  }

  .mobile-floreo-services article:nth-child(even) {
    background: #0e1a10;
  }

  .mobile-floreo-services span {
    grid-row: span 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(214, 168, 58, 0.26);
    background: rgba(3, 4, 3, 0.42);
    color: var(--floreo-gold);
    font-size: 0.72rem;
    font-weight: 950;
  }

  .mobile-floreo-services h3,
  .mobile-floreo-services p {
    margin: 0;
  }

  .mobile-floreo-services h3 {
    color: var(--floreo-text);
    font-size: 1.02rem;
    line-height: 1.1;
  }

  .mobile-floreo-services p {
    margin-top: 7px;
    color: var(--floreo-muted);
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .mobile-floreo-categories,
  .mobile-floreo-products {
    margin: 0;
    border: 0;
    border-radius: 0;
    background: var(--floreo-bg);
    padding: 46px 20px;
    color: var(--floreo-text);
  }

  .mobile-floreo-categories {
    background:
      radial-gradient(ellipse 80% 40% at 50% 0%, rgba(214, 168, 58, 0.04), transparent 70%),
      #080a07;
    padding: 48px 20px 40px;
  }

  .mobile-floreo-categories .eyebrow,
  .mobile-floreo-products .eyebrow {
    color: var(--floreo-gold);
    text-align: center;
  }

  .mobile-floreo-categories h2,
  .mobile-floreo-products h2 {
    margin: 14px auto 28px;
    color: var(--floreo-text);
    font-size: clamp(1.65rem, 8vw, 2.18rem);
    line-height: 1;
    letter-spacing: -0.055em;
    text-align: center;
  }

  .mobile-floreo-category-grid {
    display: grid;
    gap: 18px;
  }

  .mobile-floreo-category {
    display: grid;
    min-height: 124px;
    align-content: end;
    overflow: hidden;
    border: 1px solid rgba(214, 168, 58, 0.24);
    border-radius: 2px;
    background: #132415;
    color: var(--floreo-text);
    padding: 20px;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    width: 100%;
    box-shadow:
      0 8px 28px rgba(0, 0, 0, 0.42),
      0 0 18px rgba(214, 168, 58, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  }

  .mobile-floreo-category.is-active {
    border-color: rgba(230, 198, 106, 0.72);
    box-shadow:
      inset 0 0 0 1px rgba(230, 198, 106, 0.35),
      0 0 24px rgba(214, 168, 58, 0.18);
    transform: scale(0.985);
  }

  .mobile-floreo-category.green {
    background:
      linear-gradient(180deg, rgba(3, 4, 3, 0.12) 0%, rgba(3, 4, 3, 0.52) 42%, rgba(3, 4, 3, 0.9) 100%),
      url("images/green-thai-kratom.webp") center / cover no-repeat;
  }

  .mobile-floreo-category.red {
    background:
      linear-gradient(180deg, rgba(3, 4, 3, 0.12) 0%, rgba(3, 4, 3, 0.52) 42%, rgba(3, 4, 3, 0.9) 100%),
      url("images/red-thai-kratom.webp") center / cover no-repeat;
  }

  .mobile-floreo-category.delivery,
  .mobile-floreo-category.white {
    background:
      linear-gradient(180deg, rgba(3, 4, 3, 0.12) 0%, rgba(3, 4, 3, 0.52) 42%, rgba(3, 4, 3, 0.9) 100%),
      url("images/green-thai-kratom.webp") center / cover no-repeat;
  }

  .mobile-floreo-category strong {
    display: block;
    color: var(--floreo-text);
    font-size: 1rem;
  }

  .mobile-floreo-category__price {
    display: block;
    margin-top: 6px;
    color: var(--floreo-gold-soft);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .mobile-floreo-category span {
    margin-top: 4px;
    color: rgba(244, 240, 228, 0.72);
    font-size: 0.78rem;
  }

  .mobile-floreo-products {
    background: #f6efdf;
  }

  .mobile-floreo-products .simple-product-list {
    display: grid;
    gap: 22px;
  }

  .mobile-floreo-products .simple-product-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border: 0;
    border-bottom: 1px solid rgba(16, 32, 13, 0.11);
    border-radius: 0;
    background: transparent;
    padding: 0 0 22px;
  }

  .mobile-floreo-product-photo {
    grid-row: span 2;
    width: 92px;
    height: 118px;
    background: #e8dfcb center / contain no-repeat;
  }

  .green-product .mobile-floreo-product-photo {
    background-image: url("images/green-thai-kratom-cutout-600.webp");
  }

  .red-product .mobile-floreo-product-photo {
    background-image: url("images/red-thai-kratom-cutout-600.webp");
  }

  .white-product .mobile-floreo-product-photo {
    background: #e8dfcb url("images/green-thai-kratom-cutout-600.webp") center / contain no-repeat;
  }

  .mobile-floreo-products .simple-product-row small {
    display: inline-block;
    margin-bottom: 8px;
    color: #9d741f;
    font-size: 0.58rem;
    font-weight: 950;
    letter-spacing: 0.1em;
  }

  .mobile-floreo-products .simple-product-row h3 {
    color: #10200d;
    font-size: 1.02rem;
  }

  .mobile-floreo-products .simple-product-row p {
    color: rgba(16, 32, 13, 0.68);
    font-size: 0.84rem;
  }

  .mobile-floreo-products .simple-qty {
    grid-column: 2;
    width: max-content;
    border: 1px solid rgba(158, 130, 55, 0.35);
    border-radius: 0;
    background: #fffaf0;
  }

  .mobile-floreo-products .simple-qty button,
  .mobile-floreo-products .simple-qty strong {
    color: #10200d;
  }

  .mobile-floreo-order-button {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, #d4a735, #9d741f);
    color: #081006;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-floreo-order-button:disabled {
    opacity: 0.58;
  }

  .mobile-floreo-about {
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(214, 168, 58, 0.05), transparent 72%),
      #080a07;
    border-top: 1px solid rgba(214, 168, 58, 0.2);
    padding: 48px 20px;
    text-align: center;
    color: var(--floreo-text);
  }

  .mobile-floreo-about .eyebrow {
    margin: 0;
    color: var(--floreo-gold);
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-floreo-about h2 {
    margin: 14px auto 22px;
    color: var(--floreo-text);
    font-size: clamp(1.65rem, 8vw, 2.18rem);
    line-height: 1;
    letter-spacing: -0.055em;
    text-align: center;
  }

  .mobile-floreo-about__copy {
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
  }

  .mobile-floreo-about__copy p {
    margin: 0;
    color: var(--floreo-muted);
    font-size: 0.86rem;
    line-height: 1.62;
  }

  .mobile-floreo-about__copy p + p {
    margin-top: 14px;
  }

  .mobile-floreo-about__notes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .mobile-floreo-about__notes span {
    border: 1px solid rgba(214, 168, 58, 0.24);
    background: rgba(3, 4, 3, 0.38);
    padding: 7px 11px;
    color: rgba(230, 198, 106, 0.88);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-floreo-footer {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-top: 1px solid rgba(214, 168, 58, 0.22);
    background:
      radial-gradient(ellipse 85% 45% at 50% 0%, rgba(214, 168, 58, 0.06), transparent 72%),
      #030403;
    padding: 44px 20px calc(64px + env(safe-area-inset-bottom, 0px));
    text-align: center;
    color: var(--floreo-text);
  }

  .mobile-floreo-footer__glow {
    position: absolute;
    top: -40px;
    left: 50%;
    width: min(280px, 72vw);
    height: 120px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 168, 58, 0.1), transparent 68%);
    pointer-events: none;
  }

  .mobile-floreo-footer__brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 4vw, 20px);
    width: min(100%, 360px);
    margin: 0 auto;
    text-align: left;
  }

  .mobile-floreo-footer__logo {
    flex: 0 0 auto;
    display: block;
    width: clamp(148px, 38vw, 172px);
    margin: 0;
  }

  .mobile-floreo-footer__logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    filter:
      brightness(1.08)
      contrast(1.05)
      drop-shadow(0 2px 10px rgba(0, 0, 0, 0.42))
      drop-shadow(0 0 18px rgba(214, 168, 58, 0.08));
  }

  .mobile-floreo-footer__tagline {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    margin: 0;
    color: var(--floreo-muted);
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: left;
  }

  .mobile-floreo-footer__flag {
    display: inline-block;
    margin-right: 0.2em;
    font-size: 1.05em;
    line-height: 1;
    vertical-align: -0.05em;
  }

  .mobile-floreo-footer__wa {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    margin-top: 32px;
    padding: 0 24px;
    padding: 0 22px;
    border: 1px solid rgba(214, 168, 58, 0.32);
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(214, 168, 58, 0.12), rgba(214, 168, 58, 0.04));
    box-shadow: 0 0 24px rgba(214, 168, 58, 0.08);
    color: var(--floreo-gold-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-floreo-footer__wa .wa-icon {
    width: 24px;
    height: 24px;
  }

  .mobile-floreo-footer__meta {
    position: relative;
    display: grid;
    gap: 6px;
    margin-top: 22px;
    color: rgba(175, 168, 149, 0.88);
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }

  .mobile-floreo-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: center;
    margin-top: 18px;
  }

  .mobile-floreo-footer__links a {
    color: rgba(246, 241, 230, 0.82);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: underline;
    text-decoration-color: rgba(212, 167, 53, 0.45);
    text-underline-offset: 0.18em;
  }

  .mobile-floreo-footer__divider {
    height: 1px;
    max-width: 280px;
    margin: 28px auto 22px;
    background: linear-gradient(90deg, transparent, rgba(214, 168, 58, 0.28), transparent);
  }

  .mobile-floreo-footer__legal {
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
  }

  .mobile-floreo-footer__legal p {
    margin: 0;
    color: var(--floreo-muted);
    font-size: 0.72rem;
    line-height: 1.62;
  }

  .mobile-floreo-footer__legal p + p {
    margin-top: 10px;
  }

  .mobile-floreo-footer__legal strong {
    color: rgba(244, 240, 228, 0.82);
    font-weight: 700;
  }

  .mobile-floreo-footer__copy {
    margin: 22px 0 0;
    color: rgba(175, 168, 149, 0.72);
    font-size: 0.68rem;
    letter-spacing: 0.03em;
  }

  .mobile-menu-drawer {
    position: fixed;
    inset: 0;
    z-index: 85;
    pointer-events: none;
  }

  .mobile-menu-drawer:not([hidden]) {
    pointer-events: auto;
  }

  .mobile-menu-drawer__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(8, 16, 6, 0.58);
    opacity: 0;
    transition: opacity 0.24s ease;
    cursor: pointer;
  }

  .mobile-menu-drawer:not([hidden]) .mobile-menu-drawer__backdrop {
    opacity: 1;
  }

  .mobile-menu-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(92vw, 360px);
    border-left: 1px solid var(--floreo-border);
    background:
      radial-gradient(ellipse 90% 42% at 50% 0%, rgba(214, 168, 58, 0.06), transparent 72%),
      linear-gradient(180deg, #080a07 0%, #0e1a10 100%);
    color: var(--floreo-text);
    box-shadow: -18px 0 48px rgba(0, 0, 0, 0.55);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu-drawer:not([hidden]) .mobile-menu-drawer__panel {
    transform: translateX(0);
  }

  .mobile-menu-drawer__head {
    position: relative;
    padding: 22px 20px 18px;
    border-bottom: 1px solid rgba(214, 168, 58, 0.14);
  }

  .mobile-menu-drawer__head .eyebrow {
    margin: 0;
    color: rgba(214, 168, 58, 0.82);
    text-align: left;
  }

  .mobile-menu-drawer__head h2 {
    margin: 8px 0 0;
    color: var(--floreo-text);
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    text-align: left;
  }

  .mobile-menu-drawer__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(214, 168, 58, 0.28);
    border-radius: 0;
    background: #132415;
    color: var(--floreo-text);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu-drawer__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
  }

  .mobile-menu-drawer__tab {
    min-height: 40px;
    border: 1px solid rgba(214, 168, 58, 0.24);
    border-radius: 0;
    background: #132415;
    color: rgba(244, 240, 228, 0.72);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-menu-drawer__tab.is-active {
    border-color: rgba(230, 198, 106, 0.72);
    background: linear-gradient(180deg, #d4a735, #9d741f);
    color: #081006;
  }

  .mobile-menu-drawer__list {
    overflow-y: auto;
    padding: 18px 20px 12px;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu-drawer__item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid rgba(214, 168, 58, 0.12);
    padding: 0 0 20px;
    margin-bottom: 20px;
  }

  .mobile-menu-drawer__item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .mobile-menu-drawer__item .mobile-floreo-product-photo {
    grid-row: span 2;
    width: 92px;
    height: 118px;
    border: 1px solid rgba(214, 168, 58, 0.14);
    background: #132415 center / contain no-repeat;
  }

  .mobile-menu-drawer__item.green-product .mobile-floreo-product-photo {
    background-image: url("images/green-thai-kratom-cutout-600.webp");
  }

  .mobile-menu-drawer__item.red-product .mobile-floreo-product-photo {
    background-image: url("images/red-thai-kratom-cutout-600.webp");
  }

  .mobile-menu-drawer__item.white-product .mobile-floreo-product-photo {
    background: #132415 url("images/green-thai-kratom-cutout-600.webp") center / contain no-repeat;
  }

  .mobile-menu-drawer__item small {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--floreo-gold-soft);
    font-size: 0.58rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-menu-drawer__item h3 {
    margin: 0;
    color: var(--floreo-text);
    font-size: 1.02rem;
  }

  .mobile-menu-drawer__item p {
    margin: 6px 0 0;
    color: var(--floreo-muted);
    font-size: 0.84rem;
  }

  .mobile-menu-drawer__item .simple-qty {
    grid-column: 2;
    width: max-content;
    border: 1px solid rgba(214, 168, 58, 0.24);
    border-radius: 0;
    background: #080906;
  }

  .mobile-menu-drawer__item .simple-qty button,
  .mobile-menu-drawer__item .simple-qty strong {
    color: var(--floreo-text);
  }

  .mobile-menu-drawer__item .simple-qty button:first-child {
    border-right: 1px solid rgba(214, 168, 58, 0.16);
  }

  .mobile-menu-drawer__item .simple-qty button:last-child {
    border-left: 1px solid rgba(214, 168, 58, 0.16);
  }

  .mobile-menu-drawer__foot {
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(214, 168, 58, 0.14);
    background: #080a07;
  }

  .mobile-menu-drawer__order {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, #d4a735, #9d741f);
    color: #081006;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-menu-drawer__order:disabled {
    opacity: 0.58;
    cursor: not-allowed;
  }

  body.menu-drawer-open {
    overflow: hidden;
  }
}

/* Floreo mobile header icon correction */
@media (max-width: 719px) {
  .nav-whatsapp {
    position: relative;
    display: block;
  }

  .nav-whatsapp .wa-icon {
    display: none;
  }

  .nav-whatsapp::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 9px;
    width: 13px;
    height: 12px;
    border: 1.7px solid rgba(255, 255, 255, 0.9);
    border-radius: 2px;
  }

  .nav-whatsapp::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 5px;
    width: 6px;
    height: 6px;
    border: 1.7px solid rgba(255, 255, 255, 0.9);
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
  }

  .nav-toggle-bars {
    display: none;
  }

  .nav-toggle::before {
    content: "";
    width: 17px;
    height: 12px;
    background:
      linear-gradient(var(--floreo-gold-soft), var(--floreo-gold-soft)) 0 0 / 17px 2px no-repeat,
      linear-gradient(var(--floreo-gold-soft), var(--floreo-gold-soft)) 0 5px / 17px 2px no-repeat,
      linear-gradient(var(--floreo-gold-soft), var(--floreo-gold-soft)) 0 10px / 17px 2px no-repeat;
  }
}

/* Mobile Floreo hero should own the full first screen */
@media (max-width: 719px) {
  .mobile-floreo-hero {
    min-height: 100svh;
    min-height: 100vh;
    padding-top: max(96px, env(safe-area-inset-top) + 88px);
    padding-bottom: max(72px, env(safe-area-inset-bottom) + 54px);
  }

  .mobile-kdb-hero {
    width: 100%;
    height: 100svh;
    height: 100dvh;
    min-height: 100svh;
    min-height: 100dvh;
    padding: 0;
  }

  .mobile-floreo-copy {
    transform: translateY(24px);
  }
}

/* Larger mobile logo and navigation markers */
@media (max-width: 719px) {
  .top-nav {
    min-height: 86px;
    padding: 22px 24px 0;
  }

  .brand img {
    width: clamp(94px, 28vw, 118px) !important;
    max-height: 55px;
  }

  .nav-actions {
    gap: 24px;
  }

  .nav-whatsapp,
  .nav-toggle {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
  }

  .nav-whatsapp::before {
    left: 10px;
    top: 14px;
    width: 21px;
    height: 20px;
    border-width: 2.5px;
    border-radius: 3px;
  }

  .nav-whatsapp::after {
    left: 16px;
    top: 7px;
    width: 9px;
    height: 10px;
    border-width: 2.5px;
  }

  .nav-toggle::before {
    width: 29px;
    height: 21px;
    background:
      linear-gradient(var(--floreo-gold-soft), var(--floreo-gold-soft)) 0 0 / 29px 3px no-repeat,
      linear-gradient(var(--floreo-gold-soft), var(--floreo-gold-soft)) 0 9px / 29px 3px no-repeat,
      linear-gradient(var(--floreo-gold-soft), var(--floreo-gold-soft)) 0 18px / 29px 3px no-repeat;
  }
}

/* Subtle living hero: mobile-only motion, no video or framework needed */
@media (max-width: 719px) {
  .mobile-floreo-hero:not(.mobile-kdb-premium-hero) {
    isolation: isolate;
    background-position: center bottom;
  }

  .mobile-floreo-hero:not(.mobile-kdb-premium-hero)::before {
    animation: kdbHeroBreath 16s ease-in-out infinite alternate;
    background:
      radial-gradient(circle at 50% 18%, rgba(212, 167, 53, 0.13), transparent 8rem),
      radial-gradient(ellipse at 28% 64%, rgba(232, 194, 86, 0.07), transparent 12rem),
      linear-gradient(90deg, rgba(5, 11, 5, 0.42), rgba(5, 11, 5, 0.04), rgba(5, 11, 5, 0.42));
  }

  .mobile-floreo-hero:not(.mobile-kdb-premium-hero)::after {
    content: "";
    position: absolute;
    inset: -8%;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 45% 68%, rgba(255, 255, 255, 0.07), transparent 14rem),
      linear-gradient(115deg, transparent 0 28%, rgba(255, 255, 255, 0.045) 42%, transparent 58% 100%);
    filter: blur(10px);
    opacity: 0.46;
    transform: translate3d(-3%, 2%, 0);
    animation: kdbHeroMist 18s ease-in-out infinite alternate;
  }

  .mobile-floreo-hero-shade {
    z-index: 1;
    animation: kdbHeroShade 13s ease-in-out infinite alternate;
  }

  .mobile-floreo-copy {
    z-index: 3;
  }
}

@keyframes kdbHeroBreath {
  from {
    opacity: 0.8;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.045);
  }
}

@keyframes kdbHeroMist {
  from {
    opacity: 0.28;
    transform: translate3d(-8%, 4%, 0) scale(1);
  }

  to {
    opacity: 0.58;
    transform: translate3d(7%, -3%, 0) scale(1.08);
  }
}

@keyframes kdbHeroShade {
  from {
    background: rgba(5, 12, 6, 0.5);
  }

  to {
    background: rgba(5, 12, 6, 0.36);
  }
}

/* Header KDB logo — size, clarity, alignment */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-block: 4px;
  margin-inline-end: 6px;
}

.top-nav .brand img {
  width: clamp(120px, 9.6vw, 156px);
  height: auto;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
  filter:
    brightness(1.1)
    contrast(1.06)
    saturate(1.05)
    drop-shadow(0 1px 0 rgba(212, 167, 53, 0.14))
    drop-shadow(0 2px 12px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 20px rgba(212, 167, 53, 0.07));
}

.mobile-nav-head img {
  width: 110px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  filter:
    brightness(1.1)
    contrast(1.06)
    saturate(1.05)
    drop-shadow(0 1px 0 rgba(212, 167, 53, 0.12))
    drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

@media (max-width: 719px) {
  .top-nav .brand img {
    width: clamp(94px, 28vw, 118px) !important;
    max-height: 55px;
  }

  .mobile-nav-head img {
    width: 106px;
    max-height: 50px;
  }
}

/* Section dividers below hero — one consistent weight; header borders unchanged */
main > section {
  border-top: var(--section-border);
}

main > section:first-child {
  border-top: none;
}

/* Desktop-only hero atmosphere — background depth, no layout changes */
@media (min-width: 720px) {
  .mobile-simple-landing,
  .mobile-floreo-landing,
  .mobile-kdb-hero,
  .mobile-floreo-intro,
  .mobile-floreo-services,
  .mobile-floreo-categories,
  .mobile-floreo-products,
  .mobile-floreo-about,
  .mobile-floreo-footer {
    display: none !important;
  }

  .hero-bg {
    display: block !important;
  }

  .hero-grid {
    display: grid !important;
  }

  .site-hero::before {
    content: none;
  }

  .site-hero::after {
    content: none;
  }

  .hero-bg {
    background:
      radial-gradient(ellipse 72% 56% at 50% 34%, rgba(212, 167, 53, 0.07), transparent 62%),
      radial-gradient(ellipse 54% 40% at 24% 18%, rgba(212, 167, 53, 0.06), transparent 62%),
      radial-gradient(ellipse 46% 48% at 86% 32%, rgba(212, 167, 53, 0.05), transparent 58%),
      linear-gradient(165deg, #050604 0%, #060704 52%, #050604 100%);
  }

  .hero-bg-watermark,
  .hero-bg-mark {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: url("assets/logos/kdb-logo-bg.png") center 5% / min(4200px, 265vw) no-repeat;
    opacity: 0.12;
    mix-blend-mode: screen;
    filter: sepia(0.35) saturate(0.65) brightness(0.78) contrast(1.05);
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 42%,
      rgba(0, 0, 0, 0.38) 62%,
      rgba(0, 0, 0, 0.1) 82%,
      transparent 96%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 42%,
      rgba(0, 0, 0, 0.38) 62%,
      rgba(0, 0, 0, 0.1) 82%,
      transparent 96%
    );
  }

  .hero-bg::before {
    z-index: 1;
    background:
      linear-gradient(118deg, transparent 0 30%, rgba(212, 167, 53, 0.08) 41%, rgba(212, 167, 53, 0.03) 46%, transparent 56%),
      radial-gradient(circle at 38% 8%, rgba(212, 167, 53, 0.05), transparent 15rem);
    opacity: 0.9;
  }

  .hero-bg::after {
    z-index: 2;
    background:
      radial-gradient(ellipse at center, transparent 0 34%, rgba(0, 0, 0, 0.34) 74%, rgba(0, 0, 0, 0.62) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, transparent 24%, transparent 76%, rgba(0, 0, 0, 0.22) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, transparent 20%, transparent 70%, rgba(0, 0, 0, 0.42) 100%);
  }
}

/* Desktop-only product list scroll. Keep after all showcase rules so it wins. */
@media (min-width: 980px) {
  .showcase-products {
    max-height: min(680px, calc(100vh - 210px));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

/* Desktop performance pass: keep mobile visual quality, remove desktop top-fold scroll jank. */
@media (min-width: 980px) {
  .site-hero,
  .hero-bg,
  .hero-bg::before,
  .hero-bg::after,
  .showcase,
  .showcase-grid,
  .order-panel,
  .hero-bag-card,
  .flow-strip,
  .catalog-notes,
  .showcase-products {
    animation: none !important;
  }

  .flow-strip,
  .hero-bag-card,
  .order-panel,
  .showcase-products,
  .nav-whatsapp,
  .whatsapp-float {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .hero-bag-card img,
  .hero-bag-card.green img,
  .hero-bag-card.red img,
  .product-row img {
    filter: brightness(1.06) contrast(1.02) saturate(1.03) !important;
  }

  .showcase-products,
  .showcase-products.can-scroll-top,
  .hero-bag-card,
  .order-panel {
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.46),
      inset 0 1px 0 rgba(246, 241, 230, 0.055) !important;
  }

  .showcase-products::after {
    transition: none !important;
  }
}

/* Desktop jank fix: remove sticky repaint + heavy hero background layers only on desktop. */
@media (min-width: 980px) {
  .site-hero {
    overflow: visible !important;
    background:
      radial-gradient(ellipse 54% 38% at 24% 16%, rgba(212, 167, 53, 0.08), transparent 60%),
      linear-gradient(165deg, #050604 0%, #070604 52%, #050604 100%) !important;
  }

  .hero-bg,
  .hero-bg::before,
  .hero-bg::after {
    display: none !important;
  }

  .hero-shop {
    position: static !important;
    top: auto !important;
    transform: none !important;
  }

  .order-panel::before,
  .showcase-products::before,
  .showcase-products::after {
    display: none !important;
  }

  .showcase-products {
    contain: content;
  }
}

/* Desktop crown restore: keep the top KDB mark, but avoid the old heavy scroll layers. */
@media (min-width: 980px) {
  .site-hero {
    overflow: hidden !important;
    background:
      linear-gradient(180deg, rgba(5, 6, 4, 0.08) 0%, rgba(5, 6, 4, 0.72) 58%, #050604 100%),
      #050604 !important;
  }

  .hero-bg {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    overflow: hidden !important;
    opacity: 1 !important;
    background: transparent !important;
  }

  .hero-bg::before,
  .hero-bg::after {
    content: none !important;
    display: none !important;
  }

  .hero-bg-watermark {
    display: block !important;
    position: absolute !important;
    top: -92px !important;
    left: 50% !important;
    width: min(1900px, 150vw) !important;
    height: min(560px, 56vh) !important;
    transform: translateX(-50%) !important;
    opacity: 0.19 !important;
    pointer-events: none !important;
    background: url("assets/logos/kdb-logo-bg.png") center top / contain no-repeat !important;
    mix-blend-mode: normal !important;
    filter: none !important;
  }

  .hero-bg-watermark::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(5, 6, 4, 0) 0%,
      rgba(5, 6, 4, 0) 34%,
      rgba(5, 6, 4, 0.62) 70%,
      #050604 100%
    );
  }
}

/* Desktop crown size correction: restore the original oversized crown scale, faded downward. */
@media (min-width: 980px) {
  .hero-bg-watermark {
    top: -11% !important;
    left: -16% !important;
    right: -16% !important;
    width: auto !important;
    height: min(64vh, 720px) !important;
    transform: none !important;
    opacity: 0.18 !important;
    background: url("assets/logos/kdb-logo-bg.png") center 5% / min(4200px, 265vw) no-repeat !important;
  }

  .hero-bg-watermark::after {
    background: linear-gradient(
      180deg,
      rgba(5, 6, 4, 0) 0%,
      rgba(5, 6, 4, 0) 42%,
      rgba(5, 6, 4, 0.70) 76%,
      #050604 100%
    ) !important;
  }
}

/* Desktop crown fine-tune: lower, wider, and a later fade start. */
@media (min-width: 980px) {
  .hero-bg-watermark {
    top: -5% !important;
    left: -22% !important;
    right: -22% !important;
    height: min(69vh, 780px) !important;
    opacity: 0.185 !important;
    background-size: min(4600px, 292vw) !important;
    background-position: center 8% !important;
  }

  .hero-bg-watermark::after {
    background: linear-gradient(
      180deg,
      rgba(5, 6, 4, 0) 0%,
      rgba(5, 6, 4, 0) 54%,
      rgba(5, 6, 4, 0.62) 84%,
      #050604 100%
    ) !important;
  }
}

/* Desktop crown depth pass: richer, heavier, and more embedded in the black/gold hero. */
@media (min-width: 980px) {
  .site-hero {
    background:
      radial-gradient(ellipse 70% 48% at 50% 9%, rgba(191, 145, 43, 0.105), transparent 62%),
      linear-gradient(180deg, rgba(5, 6, 4, 0.04) 0%, rgba(5, 6, 4, 0.68) 62%, #050604 100%),
      #050604 !important;
  }

  .hero-bg-watermark {
    opacity: 0.255 !important;
    filter: sepia(0.18) saturate(1.1) brightness(0.84) contrast(1.22) !important;
  }

  .hero-bg-watermark::after {
    background: linear-gradient(
      180deg,
      rgba(5, 6, 4, 0.06) 0%,
      rgba(5, 6, 4, 0) 46%,
      rgba(5, 6, 4, 0.56) 82%,
      #050604 100%
    ) !important;
  }
}

/* Desktop product-list quantity cleanup: give +/- controls real breathing room. */
@media (min-width: 980px) {
  .hero-bag-card.product-row {
    grid-template-columns: 112px minmax(0, 1fr) 132px 154px !important;
    column-gap: 18px !important;
  }

  .hero-bag-card.product-row .hero-qty {
    display: grid !important;
    grid-template-columns: 44px 46px 44px !important;
    gap: 6px !important;
    width: 152px !important;
    min-width: 152px !important;
    height: 46px !important;
    padding: 4px !important;
    overflow: visible !important;
    border-radius: 14px !important;
    border: 1px solid rgba(212, 167, 53, 0.26) !important;
    background: rgba(3, 3, 3, 0.46) !important;
  }

  .hero-bag-card.product-row .hero-qty button,
  .hero-bag-card.product-row .hero-qty strong {
    display: grid !important;
    place-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 38px !important;
    border: 1px solid rgba(212, 167, 53, 0.18) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.025) !important;
    line-height: 1 !important;
  }

  .hero-bag-card.product-row .hero-qty strong {
    border-color: rgba(212, 167, 53, 0.12) !important;
    background: rgba(212, 167, 53, 0.045) !important;
    font-size: 1rem !important;
  }

  .hero-bag-card.product-row .hero-qty button:hover {
    border-color: rgba(212, 167, 53, 0.42) !important;
    background: rgba(212, 167, 53, 0.11) !important;
  }
}

/* Lower-page crown echoes: subtle brand depth below the hero, desktop only. */
@media (min-width: 980px) {
  #how-it-works.paper-section,
  #about.paper-section,
  .site-footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  #how-it-works.paper-section > *,
  #about.paper-section > *,
  .site-footer > * {
    position: relative;
    z-index: 1;
  }

  #how-it-works.paper-section::before,
  #about.paper-section::before,
  .site-footer::before {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background: url("assets/logos/kdb-logo-bg.png") center / contain no-repeat;
    opacity: 0.105;
    filter: sepia(0.22) saturate(0.95) brightness(0.78) contrast(1.18);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 44%, transparent 76%);
    mask-image: radial-gradient(ellipse at center, #000 0%, #000 44%, transparent 76%);
  }

  #how-it-works.paper-section::before {
    width: min(1500px, 118vw);
    height: min(620px, 58vw);
    right: -34vw;
    top: -16%;
    transform: rotate(-4deg);
  }

  #about.paper-section::before {
    width: min(1420px, 112vw);
    height: min(600px, 56vw);
    left: -36vw;
    bottom: -28%;
    transform: rotate(5deg);
    opacity: 0.09;
  }

  .site-footer::before {
    width: min(1180px, 96vw);
    height: min(460px, 42vw);
    right: -24vw;
    top: -18%;
    opacity: 0.075;
  }
}

/* Header logo removal: keep navigation, remove the visible KDB mark from page headers. */
.top-nav > .brand {
  display: none !important;
}

@media (min-width: 720px) {
  .top-nav .nav-links {
    margin-left: auto;
    margin-right: auto;
  }

  .top-nav .nav-actions {
    margin-left: 0;
  }
}

.mobile-nav-head img {
  display: none !important;
}

/* Desktop catalog rows: keep price and quantity together on the right. */
@media (min-width: 980px) {
  .hero-bag-card.product-row {
    grid-template-columns: 112px minmax(0, 1fr) 176px !important;
    column-gap: 20px !important;
    align-items: center !important;
    min-height: 104px !important;
    padding-right: 18px !important;
  }

  .hero-bag-card.product-row .product-price {
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-self: end !important;
    min-width: 158px !important;
    margin: 0 0 52px !important;
    text-align: right !important;
  }

  .hero-bag-card.product-row .hero-qty {
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-self: end !important;
    margin: 44px 0 0 !important;
    width: 154px !important;
    min-width: 154px !important;
  }

  .hero-bag-card.product-row .product-price strong {
    font-size: 0.9rem !important;
    letter-spacing: 0.16em !important;
  }

  .hero-bag-card.product-row .product-price small {
    margin-top: 5px !important;
    font-size: 0.78rem !important;
  }

  .hero-bag-card.product-row .bag-copy {
    padding-right: 10px !important;
  }
}

/* Restore a small desktop brand mark in the header. */
@media (min-width: 720px) {
  .top-nav > .brand {
    display: inline-flex !important;
    width: clamp(82px, 7vw, 112px) !important;
    min-width: clamp(82px, 7vw, 112px) !important;
    padding-block: 2px !important;
    margin-right: clamp(18px, 4vw, 56px) !important;
  }

  .top-nav > .brand img {
    width: 100% !important;
    max-height: 42px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }
}

/* Small context bubble under the order panel; desktop only so mobile stays clean. */
.travel-note {
  display: none;
}

@media (min-width: 980px) {
  .travel-note {
    display: block;
    position: relative;
    overflow: hidden;
    margin-top: 18px;
    border: 1px solid rgba(212, 167, 53, 0.16);
    border-radius: 18px;
    padding: 18px 20px 20px;
    background:
      radial-gradient(ellipse 72% 120% at 8% 0%, rgba(212, 167, 53, 0.11), transparent 58%),
      linear-gradient(140deg, rgba(246, 241, 230, 0.045), rgba(212, 167, 53, 0.018) 42%, rgba(0, 0, 0, 0.18)),
      rgba(7, 7, 6, 0.88);
    box-shadow:
      0 18px 54px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(246, 241, 230, 0.055);
  }

  .travel-note::after {
    content: "";
    position: absolute;
    inset: auto 18px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 167, 53, 0.38), transparent);
    opacity: 0.7;
  }

  .travel-note .eyebrow {
    margin-bottom: 10px;
    color: rgba(232, 194, 86, 0.92);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .travel-note p:not(.eyebrow) {
    margin: 0;
    color: rgba(246, 241, 230, 0.72);
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .travel-note p + p:not(.eyebrow) {
    margin-top: 10px;
    color: rgba(246, 241, 230, 0.82);
  }
}

/* Header brand mark: match the visual weight of the WhatsApp pill. */
@media (min-width: 720px) {
  .top-nav > .brand {
    width: clamp(58px, 4.8vw, 78px) !important;
    min-width: clamp(58px, 4.8vw, 78px) !important;
    margin-right: clamp(26px, 5vw, 72px) !important;
  }

  .top-nav > .brand img {
    max-height: 34px !important;
    filter:
      brightness(1.08)
      contrast(1.05)
      saturate(1.04)
      drop-shadow(0 1px 0 rgba(212, 167, 53, 0.12))
      drop-shadow(0 2px 10px rgba(0, 0, 0, 0.38)) !important;
  }
}

/* Keep footer/customer-support area clean: no KDB crown watermark behind footer text. */
@media (min-width: 980px) {
  .site-footer::before {
    content: none !important;
    display: none !important;
  }
}

/* Header brand mark size bump. */
@media (min-width: 720px) {
  .top-nav > .brand {
    width: clamp(76px, 6.2vw, 104px) !important;
    min-width: clamp(76px, 6.2vw, 104px) !important;
  }

  .top-nav > .brand img {
    max-height: 44px !important;
  }
}

/* Header brand mark size bump 2. */
@media (min-width: 720px) {
  .top-nav > .brand {
    width: clamp(92px, 7.4vw, 126px) !important;
    min-width: clamp(92px, 7.4vw, 126px) !important;
  }

  .top-nav > .brand img {
    max-height: 54px !important;
  }
}

/* Header brand mark size bump 3. */
@media (min-width: 720px) {
  .top-nav > .brand {
    width: clamp(108px, 8.5vw, 148px) !important;
    min-width: clamp(108px, 8.5vw, 148px) !important;
  }

  .top-nav > .brand img {
    max-height: 62px !important;
  }
}

/* Keep the hero crown below the navigation so the header stays clean. */
@media (min-width: 980px) {
  .top-nav {
    position: relative;
    z-index: 4;
    background: linear-gradient(180deg, rgba(5, 6, 4, 0.78), rgba(5, 6, 4, 0.34) 70%, rgba(5, 6, 4, 0));
  }

  .hero-bg-watermark {
    top: 2% !important;
    background-position: center 13% !important;
  }
}

/* Hard position fix: move the oversized KDB background mark below the nav, same scale. */
@media (min-width: 980px) {
  .site-hero .hero-bg-watermark {
    top: 96px !important;
    background-position: center top !important;
  }
}

/* Revert crown position experiment: allow the oversized background mark to sit high again. */
@media (min-width: 980px) {
  .site-hero .hero-bg-watermark {
    top: -5% !important;
    background-position: center 8% !important;
  }
}

/* Simplified local-service footer. */
.footer-grid-simple {
  align-items: start;
}

.footer-service-col p {
  max-width: 360px;
  margin: 0;
  color: rgba(246, 241, 230, 0.72);
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.6;
}

.footer-service-col p + p {
  margin-top: 4px;
}

.footer-support-col {
  justify-self: start;
}

.footer-grid-simple .footer-support-note {
  display: inline-flex;
  padding-left: 0;
}

@media (min-width: 860px) {
  .footer-grid-simple {
    grid-template-columns: minmax(180px, 0.8fr) minmax(280px, 1.2fr) minmax(260px, 0.9fr);
  }

  .footer-support-col {
    justify-self: end;
  }
}

/* Compact travel note under the checkout sidebar. */
@media (min-width: 980px) {
  .hero-shop .travel-note {
    margin-top: 26px !important;
    border-radius: 22px !important;
    border-color: rgba(212, 167, 53, 0.20) !important;
    padding: 18px 22px !important;
    background:
      linear-gradient(118deg, rgba(246, 241, 230, 0.04), rgba(212, 167, 53, 0.018) 34%, transparent 58%),
      radial-gradient(circle at 42% 0%, rgba(212, 167, 53, 0.07), transparent 12rem),
      rgba(7, 7, 6, 0.88) !important;
    box-shadow:
      0 18px 56px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(246, 241, 230, 0.055) !important;
  }

  .hero-shop .travel-note::after {
    display: none !important;
  }

  .hero-shop .travel-note .eyebrow {
    margin: 0 0 8px !important;
    color: rgba(216, 196, 134, 0.82) !important;
    font-size: 0.64rem !important;
    letter-spacing: 0.2em !important;
  }

  .hero-shop .travel-note p:not(.eyebrow) {
    max-width: 34rem;
    color: rgba(246, 241, 230, 0.68) !important;
    font-size: 0.84rem !important;
    line-height: 1.55 !important;
  }
}

/* Mobile hero stability: stop browser-bar viewport jumps and soften the cut into the page. */
@media (max-width: 719px) {
  .mobile-kdb-hero {
    height: var(--kdb-mobile-hero-height, 100svh) !important;
    min-height: var(--kdb-mobile-hero-height, 100svh) !important;
    max-height: var(--kdb-mobile-hero-height, 100svh) !important;
    contain: layout paint;
  }

  .mobile-kdb-hero__art {
    height: 100% !important;
    min-height: 100% !important;
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
    image-rendering: auto;
  }

  .mobile-kdb-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2;
    height: clamp(84px, 17vh, 150px);
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(3, 4, 3, 0) 0%,
      rgba(3, 4, 3, 0.48) 54%,
      #030403 100%
    );
  }
}

/* Subtle lighting pass: lift footer glow and add restrained depth to existing panels. */
.site-footer {
  background:
    radial-gradient(ellipse 72% 34% at 50% -18%, rgba(212, 167, 53, 0.07), transparent 66%),
    linear-gradient(180deg, rgba(212, 167, 53, 0.018), transparent 18%),
    var(--green-950) !important;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(232, 194, 86, 0.34), transparent);
  opacity: 0.7;
}

@media (min-width: 980px) {
  .steps article,
  .about-copy,
  .travel-note,
  .footer-service-col,
  .footer-support-col {
    position: relative;
  }

  .steps article::after,
  .about-copy::after,
  .travel-note::before,
  .footer-service-col::after,
  .footer-support-col::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at center, rgba(232, 194, 86, 0.075), transparent 68%);
    opacity: 0.72;
  }

  .steps article > *,
  .about-copy > *,
  .travel-note > *,
  .footer-service-col > *,
  .footer-support-col > * {
    position: relative;
    z-index: 1;
  }

  .steps article::after {
    top: -18px;
    right: 12%;
    width: 44%;
    height: 54px;
  }

  .about-copy::after {
    top: -26px;
    right: -8%;
    width: 240px;
    height: 150px;
    opacity: 0.42;
  }

  .travel-note::before {
    top: -34px;
    left: 16%;
    width: 52%;
    height: 76px;
    opacity: 0.5;
  }

  .footer-service-col::after,
  .footer-support-col::after {
    top: -24px;
    left: 0;
    width: 68%;
    height: 72px;
    opacity: 0.32;
  }
}

/* How it works: light process flow instead of chunky cards. */
.steps {
  position: relative;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  width: min(100%, 1120px);
  margin: clamp(34px, 4vw, 52px) auto 0 !important;
}

.steps article {
  position: relative !important;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 18px 34px !important;
  text-align: center;
}

.steps article::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: -2px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(212, 167, 53, 0.34), rgba(212, 167, 53, 0.08));
  pointer-events: none;
}

.steps article:last-child::before {
  content: none;
}

.steps article::after {
  content: none !important;
  display: none !important;
}

.steps b {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 18px !important;
  border: 1px solid rgba(216, 196, 134, 0.58) !important;
  border-radius: 999px !important;
  background: rgba(5, 6, 4, 0.72) !important;
  color: rgba(216, 196, 134, 0.95) !important;
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(246, 241, 230, 0.06);
}

.steps h3 {
  margin: 0 !important;
  color: #fbfaf5 !important;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.steps p {
  max-width: 210px;
  margin: 10px auto 0 !important;
  color: rgba(246, 241, 230, 0.62) !important;
  font-size: clamp(0.86rem, 1vw, 0.95rem);
  line-height: 1.6;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    column-gap: clamp(22px, 4vw, 56px) !important;
  }

  .steps article {
    padding: 0 clamp(8px, 1.5vw, 16px) !important;
  }

  .steps article::before {
    top: 22px;
    bottom: auto;
    left: calc(50% + 38px);
    right: calc(-50% + 38px);
    width: auto;
    height: 1px;
    transform: none;
    background: linear-gradient(90deg, rgba(212, 167, 53, 0.28), rgba(212, 167, 53, 0.08));
  }

  .steps article:not(:last-child)::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    top: 18px;
    right: calc(-50% + 24px);
    width: 9px;
    height: 9px;
    border-top: 1px solid rgba(212, 167, 53, 0.28);
    border-right: 1px solid rgba(212, 167, 53, 0.28);
    transform: rotate(45deg);
    background: transparent !important;
    opacity: 1 !important;
    pointer-events: none;
  }

  .steps p {
    max-width: 240px;
  }
}


