/* ---------- Tokens ---------- */
:root {
  --wood:        #3a2a1e;
  --ink:         #241a12;
  --cream:       #fbf4e8;
  --cream-soft:  #f2e6d3;
  --card:        #ffffff;
  --orange:      #e8592c;
  --orange-dark: #c94a22;
  --blue:        #2e4fe0;
  --teal:        #2fa99a;
  --tan:         #d9b48f;
  --line:        rgba(36, 26, 18, 0.12);

  --font-display: 'Secular One', 'Heebo', sans-serif;
  --font-body:    'Heebo', sans-serif;
  --font-utility: 'Rubik', sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-card: 0 10px 24px -12px rgba(36, 26, 18, 0.28);
  --shadow-pop:  0 6px 16px -6px rgba(36, 26, 18, 0.35);
}

@media (prefers-reduced-motion: no-preference) {
  :root { --motion-ok: 1; }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.skip-link {
  position: absolute;
  right: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 100;
}
.skip-link:focus {
  right: 12px;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 5px 0 0 var(--orange-dark), var(--shadow-pop);
}
.btn-primary:hover { background: #ef642f; }
.btn-primary:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 0 var(--orange-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-add {
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 5px 0 0 #0f0a06;
  position: relative;
  overflow: hidden;
}
.btn-add:hover { background: #33241a; }
.btn-add:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 0 #0f0a06;
}
.btn-add.is-added {
  background: var(--teal);
  box-shadow: 0 5px 0 0 #1f7a6f;
}
.btn-add-check {
  display: inline-block;
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.btn-add.is-added .btn-add-check { transform: scale(1); }
.btn-add.is-added .btn-add-label::after { content: " ✓"; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 244, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: var(--shadow-pop);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-utility);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--wood);
  opacity: 0.75;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 500;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.8;
  transition: opacity 0.15s ease;
}
.site-nav a:hover { opacity: 1; }

.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}
.nav-search-btn:hover { border-color: var(--ink); }

.cart-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  font-family: var(--font-utility);
  font-weight: 700;
  color: var(--ink);
  position: relative;
}
.cart-toggle:hover { border-color: var(--ink); }

.cart-count {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  padding: 0 5px;
}
.cart-count[hidden] { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 40px;
  background:
    radial-gradient(ellipse at 20% -10%, rgba(232, 89, 44, 0.10), transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(46, 79, 224, 0.08), transparent 50%);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-utility);
  font-weight: 700;
  color: var(--orange-dark);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--ink);
}

.hero-sub {
  font-size: 1.08rem;
  max-width: 46ch;
  color: var(--wood);
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  height: 380px;
}
.hero-photo {
  position: absolute;
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 6px solid var(--card);
}
.photo-1 { top: 0;    right: 8%;  transform: rotate(-6deg); z-index: 3; }
.photo-2 { top: 46%;  right: 34%; transform: rotate(5deg);  z-index: 2; width: 150px; height: 150px; }
.photo-3 { top: 8%;   left: 2%;   transform: rotate(8deg);  z-index: 2; width: 148px; height: 148px; }
.photo-4 { bottom: 0; left: 22%;  transform: rotate(-4deg); z-index: 1; width: 156px; height: 156px; }

/* ---------- Products ---------- */
.products { padding: 24px 0 70px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 8px;
}
.section-sub {
  color: var(--wood);
  margin: 0 0 34px;
}

.product-search {
  margin: 0 0 24px;
}
.product-search input {
  width: 100%;
  max-width: 360px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
}
.product-search input:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.product-search input::-webkit-search-cancel-button {
  cursor: pointer;
}

.search-empty {
  color: var(--wood);
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin: 0 0 24px;
  font-size: 0.9rem;
}

.product-card.is-search-hidden {
  display: none;
}

.custom-request-card {
  border: 2px dashed var(--line);
  box-shadow: none;
  background: var(--cream-soft);
}
.custom-request-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.custom-request-icon {
  font-family: var(--font-display);
  font-size: 6.5rem;
  line-height: 1;
  color: var(--orange);
  -webkit-text-stroke: 2px var(--orange-dark);
}
.custom-request-sub {
  font-size: 0.85rem;
  color: var(--wood);
  margin: 0 0 12px;
  flex: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -14px rgba(36, 26, 18, 0.35);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--cream-soft);
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.06);
}

.price-sticker {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-utility);
  font-weight: 800;
  font-size: 0.92rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  white-space: nowrap;
  transform: rotate(-8deg);
  box-shadow: 0 4px 10px -3px rgba(0,0,0,0.4);
  border: 2px dashed rgba(255,255,255,0.6);
}
.price-currency { font-size: 0.8rem; }

.product-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 4px;
}

.keychain-addon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--wood);
  cursor: pointer;
  margin: -4px 0 2px;
}
.keychain-addon input {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---------- About strip ---------- */
.about {
  background: var(--wood);
  color: var(--cream);
  padding: 56px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-item { text-align: center; }
.about-icon { font-size: 1.9rem; display: block; margin-bottom: 10px; }
.about-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.about-item p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer { padding: 50px 0 34px; }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { width: 72px; height: 72px; border-radius: var(--radius-sm); }
.footer-name {
  font-family: var(--font-utility);
  font-weight: 700;
  margin: 0;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--wood);
  opacity: 0.7;
  margin: 6px 0 0;
}
.footer-terms-link {
  font-size: 0.8rem;
  color: var(--wood);
  opacity: 0.8;
  text-decoration: underline;
}
.footer-terms-link:hover { opacity: 1; }

/* ---------- Product modal ---------- */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 26, 18, 0.55);
  z-index: 80;
}
.product-modal-overlay[hidden] { display: none; }

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(420px, calc(100% - 32px));
  max-height: calc(100% - 48px);
  overflow-y: auto;
  background: var(--cream);
  border-radius: var(--radius-lg);
  z-index: 90;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.product-modal[hidden] { display: none; }
.product-modal.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.product-modal-close:hover { background: #fff; }

.product-modal-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-modal-body {
  padding: 20px 24px 26px;
  text-align: center;
}
.product-modal-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 8px;
}
.product-modal-price {
  font-family: var(--font-utility);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--orange-dark);
  margin: 0 0 18px;
}
.product-modal-cart-control .btn-add {
  width: 100%;
}
.modal-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.modal-qty .qty-btn {
  width: 46px;
  height: 46px;
  font-size: 1.3rem;
}
.modal-qty .qty-val {
  font-family: var(--font-utility);
  font-weight: 800;
  font-size: 1.4rem;
  min-width: 30px;
  text-align: center;
}

.product-media {
  cursor: pointer;
}
.custom-request-media {
  cursor: default;
}

.custom-request-modal-sub {
  font-size: 0.88rem;
  color: var(--wood);
  margin: 0 0 18px;
}
.custom-request-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  margin-bottom: 16px;
}
.custom-request-submit {
  width: 100%;
}

.custom-request-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 0 12px;
}
.custom-request-success[hidden] { display: none; }
.custom-request-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.custom-request-success-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0;
}
.custom-request-success-sub {
  font-size: 0.9rem;
  color: var(--wood);
  margin: 0;
}

/* ---------- Clearance / sale item ---------- */
.clearance-card {
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 89, 44, 0.12), var(--shadow-card);
}
.clearance-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-utility);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 3px 8px -2px rgba(0, 0, 0, 0.4);
}

.clearance-text {
  font-size: 0.9rem;
  color: var(--wood);
  margin: 0 0 14px;
  text-align: right;
}
.clearance-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
}
.clearance-limited {
  font-family: var(--font-utility);
  font-weight: 700;
  color: var(--orange-dark);
  text-align: center;
  margin: 0 0 18px;
}
.clearance-ack {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: right;
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin: 0 0 16px;
  font-size: 0.85rem;
  cursor: pointer;
}
.clearance-ack input {
  margin-top: 3px;
  accent-color: var(--orange);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.clearance-confirm {
  width: 100%;
}
.clearance-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Terms of service ---------- */
.terms-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: right;
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  margin: 12px 0 6px;
  font-size: 0.82rem;
  cursor: pointer;
}
.terms-agree input {
  margin-top: 2px;
  accent-color: var(--orange);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.terms-agree a {
  color: var(--blue);
  text-decoration: underline;
}
.terms-error {
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  margin: 0 0 10px;
}
.terms-error[hidden] { display: none; }

.terms-modal {
  width: min(560px, calc(100% - 32px)) !important;
}
.terms-body {
  text-align: right;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--wood);
}
.terms-body h4 {
  font-family: var(--font-utility);
  color: var(--ink);
  font-size: 0.98rem;
  margin: 18px 0 6px;
}
.terms-body h4:first-child {
  margin-top: 0;
}
.terms-body p {
  margin: 0 0 8px;
}

/* ---------- Code-gated item ---------- */
.code-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-utility);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 3px 8px -2px rgba(0, 0, 0, 0.4);
}
.code-gate-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wood);
  margin: 0 0 10px;
}
.code-gate-field input {
  font-family: var(--font-utility);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 2px solid var(--cream-soft);
  background: var(--cream-soft);
  text-align: center;
  letter-spacing: 2px;
}
.code-gate-field input:focus {
  outline: none;
  border-color: var(--blue);
}
.code-gate-error {
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  margin: 0 0 14px;
}
.wholesale-notice {
  background: rgba(232, 89, 44, 0.1);
  border: 1.5px dashed var(--orange);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-dark);
  text-align: center;
  margin: 0 0 14px;
}
.wholesale-notice[hidden] { display: none; }
.wholesale-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin: 0 0 12px;
}
.wholesale-item-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.wholesale-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  text-align: right;
}
.wholesale-item-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
}
.wholesale-item-meta {
  font-size: 0.78rem;
  color: var(--wood);
}
.wholesale-qty-input {
  width: 64px;
  font-family: var(--font-utility);
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
  text-align: center;
  flex-shrink: 0;
}
.wholesale-qty-input:focus {
  outline: none;
  border-color: var(--blue);
}
.product-media.no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-photo-icon {
  font-size: 3.2rem;
  opacity: 0.5;
}

/* ---------- Countdown reveal ---------- */
.reveal-locked .product-media img {
  filter: blur(7px) brightness(0.7);
}
.reveal-locked .price-sticker {
  display: none;
}
.reveal-badge {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(36, 26, 18, 0.4);
  color: #fff;
  font-family: var(--font-utility);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 10px;
}
.reveal-locked .btn-add {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ---------- Cost-price promo (Romi) ---------- */
.cost-price-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-utility);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 3px 8px -2px rgba(0, 0, 0, 0.4);
}

.welcome-promo-media {
  position: relative;
}
.welcome-promo-tag {
  font-family: var(--font-utility);
  font-weight: 800;
  color: var(--teal);
  margin: 0 0 4px;
  font-size: 0.85rem;
}

/* ---------- Mystery bundle ---------- */
.mystery-card {
  border: 2px dashed var(--teal);
  box-shadow: none;
  background: var(--cream-soft);
}
.mystery-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.mystery-icon { font-size: 3rem; }
.mystery-sub {
  font-size: 0.85rem;
  color: var(--wood);
  margin: 0 0 12px;
  flex: 1;
}

.mystery-intro {
  font-size: 0.88rem;
  color: var(--wood);
  margin: 0 0 18px;
}
.mystery-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
}
.mystery-input-row input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--ink);
}
.mystery-input-row input:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.mystery-currency {
  font-family: var(--font-utility);
  font-weight: 700;
  color: var(--wood);
}

.mystery-error {
  color: var(--orange-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  background: rgba(232, 89, 44, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin: 0 0 14px;
}

.mystery-result {
  text-align: right;
}
.mystery-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 12px;
}
.mystery-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mystery-item-row img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.mystery-item-name {
  flex: 1;
  font-size: 0.88rem;
}
.mystery-item-price {
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange-dark);
  white-space: nowrap;
}
.mystery-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-utility);
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  margin-bottom: 16px;
}
.mystery-total strong { font-size: 1.2rem; }
.mystery-actions {
  display: flex;
  gap: 10px;
}
.mystery-actions .btn { flex: 1; }

/* ---------- Cart ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 26, 18, 0.5);
  z-index: 60;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--cream);
  z-index: 70;
  display: flex;
  flex-direction: column;
  box-shadow: -18px 0 40px -20px rgba(0,0,0,0.4);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}
.cart-drawer[hidden] { display: none; }
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-head h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0;
}
.cart-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
  width: 36px;
  height: 36px;
  border-radius: 999px;
}
.cart-close:hover { background: var(--cream-soft); }

.cart-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.cart-items {
  padding: 10px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-empty {
  text-align: center;
  color: var(--wood);
  padding: 0 30px;
  margin-top: 10px;
}

.cart-line {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-name {
  font-weight: 700;
  font-size: 0.92rem;
  margin: 0 0 4px;
}
.cart-line-price {
  font-family: var(--font-utility);
  font-size: 0.85rem;
  color: var(--orange-dark);
  margin: 0;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--card);
  cursor: pointer;
  font-family: var(--font-utility);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.qty-btn:hover { border-color: var(--ink); }
.qty-val {
  font-family: var(--font-utility);
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}
.cart-remove {
  background: none;
  border: none;
  color: var(--wood);
  opacity: 0.6;
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
  padding: 4px;
}
.cart-remove:hover { opacity: 1; }

.cart-footer {
  padding: 18px 22px 24px;
  border-top: 1px solid var(--line);
}

.fulfillment {
  border: none;
  padding: 0;
  margin: 0 0 14px;
}
.fulfillment-label {
  padding: 0;
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.fulfillment-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.fulfillment-option:hover { border-color: var(--wood); }
.fulfillment-option:has(input:checked),
.fulfillment-option.is-selected {
  border-color: var(--orange);
  background: rgba(232, 89, 44, 0.06);
}
.fulfillment-option input { margin-top: 3px; accent-color: var(--orange); }
.fulfillment-text { display: flex; flex-direction: column; gap: 2px; }
.fulfillment-text strong { font-size: 0.9rem; }
.fulfillment-text small { color: var(--wood); opacity: 0.8; font-size: 0.78rem; }

.order-recap {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin: 0 0 16px;
}
.order-recap-title {
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--wood);
  opacity: 0.8;
  margin: 0 0 6px;
}
.order-recap-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  padding: 2px 0;
}
.order-recap-line strong { font-family: var(--font-utility); font-weight: 700; }
.order-recap-total {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 0.88rem;
}

.contact-fields-title {
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 0.88rem;
  margin: 0 0 2px;
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 16px;
  padding: 14px;
  background: var(--cream-soft);
  border-radius: var(--radius-md);
}
.address-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.address-fields[hidden] { display: none; }
.field-row {
  display: flex;
  gap: 10px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wood);
}
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  background: var(--card);
  resize: vertical;
}
.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.field input.is-invalid,
.field textarea.is-invalid {
  border-color: var(--orange);
  background: rgba(232, 89, 44, 0.06);
}
.field-error {
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
}

.cart-shipping-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--wood);
  margin-bottom: 8px;
}
.cart-shipping-line[hidden] { display: none; }

.cart-discount-line {
  color: var(--teal);
  font-weight: 700;
}

.coupon-box {
  margin: 0 0 14px;
}
.coupon-label {
  display: block;
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--wood);
  margin-bottom: 6px;
}
.coupon-input-row {
  display: flex;
  gap: 8px;
}
.coupon-input-row input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--ink);
}
.coupon-input-row input:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.coupon-apply-btn {
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  white-space: nowrap;
}
.coupon-apply-btn:hover { background: #33241a; }
.coupon-message {
  font-size: 0.8rem;
  margin: 6px 0 0;
  font-weight: 700;
}
.coupon-message.is-success { color: var(--teal); }
.coupon-message.is-error { color: var(--orange-dark); }

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-utility);
  margin-bottom: 14px;
}
.cart-subtotal strong { font-size: 1.3rem; }
.btn-checkout { width: 100%; }
.btn-checkout.is-disabled { opacity: 0.5; pointer-events: none; }

.pay-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--wood);
  opacity: 0.6;
  font-size: 0.78rem;
  margin: 16px 0;
}
.pay-divider::before,
.pay-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.pay-divider span { padding: 0 12px; }

.bit-pay {
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
}
.bit-pay-label {
  font-family: var(--font-utility);
  font-weight: 700;
  margin: 0 0 4px;
}
.bit-pay-instructions {
  font-size: 0.85rem;
  color: var(--wood);
  margin: 0 0 10px;
}
.bit-pay-instructions strong { color: var(--orange-dark); }
.bit-pay-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bit-pay-number span {
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.bit-copy {
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 0.78rem;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  cursor: pointer;
}
.bit-copy:hover { border-color: var(--ink); }
.bit-copy.is-copied {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.cash-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(47, 169, 154, 0.12);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 0 0 16px;
}
.cash-note[hidden] { display: none; }
.cash-note-icon { font-size: 1.3rem; line-height: 1; }
.cash-note p { margin: 0; font-size: 0.88rem; color: var(--wood); }

.cart-note {
  font-size: 0.76rem;
  color: var(--wood);
  opacity: 0.75;
  text-align: center;
  margin: 10px 0 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 300px; margin-top: 10px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; }
  .site-nav { order: 3; width: 100%; justify-content: center; padding-top: 8px; border-top: 1px solid var(--line); }
  .brand { margin-left: 0; }
  .cart-toggle { margin-right: auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body { padding: 12px 12px 14px; gap: 6px; }
  .product-name { font-size: 0.95rem; }
  .price-sticker { width: 42px; height: 42px; font-size: 0.78rem; }
  .price-currency { font-size: 0.68rem; }
  .product-card .btn-add { padding: 10px 8px; font-size: 0.82rem; }
  .hero { padding-top: 40px; }
  .hero-visual { height: 240px; }
  .hero-photo { width: 128px !important; height: 128px !important; }
}
