:root {
  color-scheme: light dark;
  --maroon: #5c1a2e;
  --maroon-dark: #43121f;
  --bg: #ffffff;
  --fg: #1a1a1a;
  --card-bg: #ffffff;
  --muted: #8a8a8a;
  --border: rgba(0,0,0,0.08);
  --success: #1f9d55;
  --danger: #c0392b;
  --gold: #d9a441;
  --gold-light: #ecc873;
  --gold-dark: #b6811f;
  --ink: #1a1a1a;
  --whatsapp: #25D366;
  --font-display: "Fraunces", Georgia, serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14100f; --fg: #f2ece7; --card-bg: #1f1917;
    --muted: #a89b93; --border: rgba(255,255,255,0.1);
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }

/* ---- header / nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--maroon);
  color: #fff;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { line-height: 1; }
.brand-main {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 3px 0 0 2px;
}
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.search-box { display: flex; align-items: center; }
.search-box input {
  width: 0;
  padding: 9px 0;
  opacity: 0;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: width 0.25s ease, opacity 0.2s ease, padding 0.25s ease, margin 0.25s ease;
}
.search-box.open input { width: min(300px, 52vw); opacity: 1; padding: 9px 14px; margin-right: 8px; }
/* On narrow screens the open search takes the brand's spot so the cart stays visible. */
@media (max-width: 560px) {
  .search-box.open input { width: min(300px, 56vw); }
  .header-inner:has(.search-box.open) .brand { display: none; }
}
.search-box input::placeholder { color: rgba(255,255,255,0.7); }
.search-box input:focus { outline: none; background: rgba(255,255,255,0.22); }
.search-toggle {
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.12); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.15s ease;
}
.search-toggle:hover { background: rgba(255,255,255,0.22); }
.search-toggle svg { width: 17px; height: 17px; }
.cart-btn {
  position: relative;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  border-radius: 20px;
  padding: 9px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.cart-btn:hover { background: rgba(255,255,255,0.22); }
.cart-count {
  background: #fff;
  color: var(--maroon);
  font-weight: 700;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.subheader { background: rgba(0,0,0,0.06); }
.subheader-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--fg);
  overflow-x: auto;
}
.result-count { color: var(--muted); white-space: nowrap; }

main { max-width: 1200px; margin: 0 auto; padding: 24px 20px 60px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* ---- product card ---- */
.card {
  display: block;
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.12); border-color: rgba(92,26,46,0.2); }
.card:focus-visible { outline: 2px solid var(--maroon); outline-offset: 2px; }
.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f4e9c1;
  overflow: hidden;
}
.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}
.card-media .img-hover { opacity: 0; }
.card:hover .card-media.media--hover-effect .img-main { opacity: 0; }
.card:hover .card-media.media--hover-effect .img-hover {
  opacity: 1;
  transform: scale(1.05);
  transition: opacity 0.5s, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}
.badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--maroon);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.wishlist-btn {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wishlist-btn.active { color: var(--maroon); }
.card-body {
  padding: 14px 12px 14px;
  text-align: center;
  display: flex; flex-direction: column; gap: 8px;
}
.card-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  min-height: 2.7em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-price { font-size: 0.92rem; }
.card-price .price-old, .card-price .price-now { display: inline-block; white-space: nowrap; }
@media (max-width: 560px) { .card-body .card-price { font-size: 0.84rem; } }
.price-old { color: var(--muted); text-decoration: line-through; margin-right: 8px; }
.price-now { color: var(--maroon); font-weight: 700; }
@media (prefers-color-scheme: dark) { .price-now { color: #e8a0b4; } }
.card-add-full {
  display: block; width: 100%;
  background: var(--maroon); color: #fff;
  border-radius: 8px; padding: 11px 8px;
  font-weight: 800; font-size: 0.74rem; letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; transition: background 0.15s ease, transform 0.15s ease;
}
.card-add-full:hover { background: var(--maroon-dark); transform: translateY(-1px); }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  grid-column: 1 / -1;
}

/* ---- skeleton loading ---- */
.skeleton { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.skeleton .card-media { background: linear-gradient(90deg, var(--border) 25%, transparent 37%, var(--border) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; }
.skeleton .line { height: 12px; margin: 12px 14px; border-radius: 4px; background: var(--border); }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* ---- overlay / modal shared ---- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 4vh 16px;
  overflow-y: auto;
  z-index: 200;
}
.overlay.open { display: flex; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.06);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

/* ---- quick view modal ---- */
.modal {
  background: var(--bg);
  color: var(--fg);
  border-radius: 12px;
  max-width: 880px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) { .modal { grid-template-columns: 1fr; } }
.modal-gallery { background: var(--bg); align-self: start; }
.modal-main-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; background: #f4e9c1; }
.modal-thumbs { display: flex; gap: 6px; padding: 8px; overflow-x: auto; background: var(--bg); }
.modal-thumbs img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 6px; cursor: pointer;
  border: 2px solid transparent; opacity: 0.7;
}
.modal-thumbs img.active { border-color: var(--maroon); opacity: 1; }
.modal-info { padding: 28px 28px 24px; overflow-y: auto; max-height: 90vh; }
.modal-title { font-family: var(--font-display); margin: 0 0 10px; font-size: 1.35rem; font-weight: 600; }
.modal-price { font-size: 1.15rem; margin-bottom: 16px; }
.trust-row {
  display: flex; gap: 18px; flex-wrap: wrap;
  padding: 12px 0; margin-bottom: 16px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  font-size: 0.78rem; color: var(--muted);
}
.trust-row > div { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; text-align: center; }
.trust-row .icon { font-size: 1.3rem; }
.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 6px; }
.qty-control button { width: 32px; height: 32px; border: none; background: none; font-size: 1rem; cursor: pointer; color: inherit; }
.qty-control span { width: 32px; text-align: center; }
.btn-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.btn {
  display: block; width: 100%; text-align: center; padding: 13px 16px; border-radius: 10px; border: none;
  font-family: inherit; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  cursor: pointer; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #1a1200;
  box-shadow: 0 6px 18px rgba(182,129,31,0.35);
}
.btn-gold:hover { box-shadow: 0 10px 24px rgba(182,129,31,0.45); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-primary { background: var(--maroon); color: #fff; }
.btn-primary:hover { background: var(--maroon-dark); }
.btn-secondary { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.love-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.love-row span {
  background: rgba(92,26,46,0.08); color: var(--maroon); font-size: 0.75rem; font-weight: 600;
  padding: 5px 10px; border-radius: 20px;
}
@media (prefers-color-scheme: dark) { .love-row span { background: rgba(232,160,180,0.12); color: #e8a0b4; } }
.modal-desc { font-size: 0.88rem; line-height: 1.55; opacity: 0.9; }
.modal-desc :first-child { margin-top: 0; }

/* collapsible description sections (built by renderDescription in app.js) */
.desc-section {
  border: 1px solid var(--border); border-radius: 10px; background: var(--card-bg);
  padding: 11px 14px; margin: 0 0 8px;
}
.desc-section summary {
  cursor: pointer; font-weight: 700; font-size: 0.9rem; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.desc-section summary::-webkit-details-marker { display: none; }
.desc-section summary::after { content: "+"; font-size: 1.15rem; color: var(--maroon); flex-shrink: 0; }
.desc-section[open] summary::after { content: "−"; }
.desc-section-body { padding-top: 8px; }
.desc-section-body > :first-child { margin-top: 0; }
.desc-section-body > :last-child { margin-bottom: 0; }
.desc-section-body h3 { font-size: 0.85rem; margin: 12px 0 4px; }
.desc-section-body ul, .desc-section-body ol { margin: 4px 0; padding-left: 18px; }
.desc-section-body li { margin-bottom: 3px; }
.note { font-size: 0.72rem; color: var(--muted); margin-top: 18px; padding-top: 12px; border-top: 1px solid var(--border); }

/* ---- cart drawer ---- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  display: none; z-index: 300;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--bg); color: var(--fg);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.25s ease;
  box-shadow: -8px 0 24px rgba(0,0,0,0.2);
}
.cart-overlay.open .cart-drawer { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.cart-header h2 { font-family: var(--font-display); font-weight: 600; margin: 0; font-size: 1.15rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; background: #f4e9c1; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-size: 0.85rem; font-weight: 600; margin: 0 0 6px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cart-item-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.78rem; text-decoration: underline; padding: 0; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.cart-footer { padding: 16px 20px 20px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 14px; font-size: 1.05rem; }

/* ---- checkout page (full-page storefront checkout) ---- */
/* align-items must stay flex-start (from .overlay): stretch would lock the page's
 * height to the viewport, leaving overflowing form content without the white
 * background — min-height lets it fill the screen AND grow with the form. */
.checkout-overlay { padding: 0; }
.checkout-page {
  width: 100%; max-width: 560px; margin: 0 auto; min-height: 100vh;
  background: var(--bg); color: var(--fg); display: flex; flex-direction: column;
}
@media (min-width: 700px) {
  .checkout-overlay { padding: 4vh 16px; }
  .checkout-page { min-height: 0; border-radius: 16px; overflow: hidden; }
}
.checkout-header {
  background: var(--maroon); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
.checkout-close { position: static; background: rgba(255,255,255,0.15); color: #fff; }
.checkout-body { padding: 0 20px 24px; }
.order-summary-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.04); margin: 0 -20px 18px; padding: 12px 20px;
  font-size: 0.88rem; border-bottom: 1px solid var(--border);
}
.order-summary-bar span { color: var(--maroon); font-weight: 600; }
@media (prefers-color-scheme: dark) {
  .order-summary-bar { background: rgba(255,255,255,0.05); }
  .order-summary-bar span { color: #e8a0b4; }
}
.co-h { font-size: 1.05rem; font-weight: 800; margin: 20px 0 10px; }
.co-note { color: var(--muted); font-size: 0.8rem; margin: -4px 0 10px; }
.shipping-box {
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--maroon); background: rgba(92,26,46,0.05);
  border-radius: 10px; padding: 13px 14px; font-size: 0.9rem;
}
.pay-options { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.pay-option {
  display: flex; align-items: center; gap: 10px; padding: 13px 14px;
  font-size: 0.88rem; cursor: pointer; border-bottom: 1px solid var(--border);
}
.pay-option:last-child { border-bottom: none; }
.pay-option:has(input:checked) { background: rgba(92,26,46,0.05); border-color: var(--maroon); }
.pay-option input { accent-color: var(--maroon); margin: 0; flex-shrink: 0; }
.pay-option-label { flex: 1; font-weight: 600; }
.pay-badges { display: flex; gap: 4px; align-items: center; }
.pb {
  font-size: 0.55rem; font-weight: 800; border-radius: 3px; padding: 3px 5px;
  letter-spacing: 0.02em; display: inline-flex; align-items: center; line-height: 1;
}
.pb-visa { background: #1a1f71; color: #fff; font-style: italic; }
.pb-mc { background: #16130f; gap: 0; padding: 3px 6px; }
.pb-mc i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.pb-mc i:first-child { background: #eb001b; }
.pb-mc i:last-child { background: #f79e1b; margin-left: -4px; opacity: 0.9; }
.pb-naps { background: #f0f0f0; color: #333; }
.pay-option-note {
  background: rgba(0,0,0,0.04); color: var(--muted); font-size: 0.78rem;
  padding: 12px 14px; text-align: center; border-bottom: 1px solid var(--border);
}
@media (prefers-color-scheme: dark) { .pay-option-note { background: rgba(255,255,255,0.05); } }
.co-total-row { display: flex; align-items: center; gap: 12px; margin: 22px 0 14px; }
.co-total-row img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; background: #f4e9c1; }
.co-total-info { flex: 1; display: flex; flex-direction: column; }
.co-muted { color: var(--muted); font-size: 0.78rem; }
.co-total-amount { font-weight: 800; font-size: 1.1rem; }
.co-footer {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  border-top: 1px solid var(--border); margin-top: 24px; padding-top: 16px;
}
.co-footer a { font-size: 0.75rem; color: var(--muted); text-decoration: underline; cursor: pointer; }
#cardStep .btn-secondary, #otpForm .btn-secondary { margin-top: 10px; }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 0.8rem; margin-bottom: 6px; color: var(--muted); }
.form-row input, .form-row select {
  width: 100%; padding: 10px 12px; border-radius: 8px; border: 1px solid var(--border);
  background: var(--card-bg); color: var(--fg); font-size: 0.92rem;
}
.form-row input.invalid { border-color: var(--danger); }
.form-row .error-msg { color: var(--danger); font-size: 0.75rem; margin-top: 4px; display: none; }
.form-row.has-error .error-msg { display: block; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card-brand-icons { display: flex; gap: 6px; font-size: 1.1rem; margin-top: 6px; }
.checkout-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.05rem; margin: 18px 0; padding-top: 14px; border-top: 1px solid var(--border); }
.checkout-fineprint { font-size: 0.72rem; color: var(--muted); text-align: center; margin: 10px 0 0; }
.pay-status { text-align: center; padding: 20px 0; }
.pay-status .spinner {
  width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--maroon);
  border-radius: 50%; margin: 0 auto 16px; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pay-status.success .icon { color: var(--success); font-size: 2.4rem; }
.pay-status.error .icon { color: var(--danger); font-size: 2.4rem; }

/* ---- OTP verification step ---- */
.otp-input {
  text-align: center;
  font-size: 1.6rem !important;
  letter-spacing: 0.5em;
  font-weight: 700;
}
#otpForm .btn-secondary { margin-top: 10px; }

/* ---- toast ---- */
.toast-wrap { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 500; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast {
  background: var(--fg); color: var(--bg); padding: 10px 18px; border-radius: 8px; font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); animation: toast-in 0.2s ease;
}
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.site-footer { text-align: center; padding: 24px; color: var(--muted); font-size: 0.85rem; }

@media (max-width: 560px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  main { padding: 16px 12px 48px; }
}

/* ---- promo popup (the supplied banner image, shown as-is) ---- */
.promo-modal {
  max-width: 420px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.promo-banner-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 0;
}
.promo-banner-img { width: 100%; display: block; }
@media (prefers-color-scheme: dark) {
  .promo-modal { box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
}

/* ---- hero ---- */
.hero {
  background: linear-gradient(160deg, #fdf3dd 0%, #f6dfa8 55%, #eecd85 100%);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 40px 24px 32px; text-align: center; position: relative;
}
.hero-badge {
  position: absolute; top: 18px; right: 24px; width: 84px; height: 84px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2a2a2a, #000 70%); border: 3px solid #d9a441;
  color: #fff; font-weight: 800; font-size: 0.72rem; line-height: 1.15;
  display: flex; align-items: center; justify-content: center; text-align: center; transform: rotate(8deg);
}
.hero-title { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: #1a1a1a; margin: 0 0 12px; line-height: 1.15; }
.hero-title span { font-style: italic; }
.hero-title span {
  background: linear-gradient(90deg, #b6811f, #ecc873, #b6811f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-tagline { color: #5c4a1f; font-size: 0.95rem; margin: 0 0 20px; }
.hero-usp {
  list-style: none; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  margin: 0; padding: 0;
}
.hero-usp li { display: flex; flex-direction: column; align-items: center; gap: 6px; font-weight: 700; color: #1a1a1a; font-size: 0.85rem; }
.hero-usp-icon {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center; color: #1a1a1a;
}
.hero-usp-icon svg { width: 22px; height: 22px; }
.hero-strip {
  background: #1a1a1a; color: #ecc873; text-align: center; font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px;
}
@media (max-width: 560px) {
  .hero-badge { position: static; width: 68px; height: 68px; font-size: 0.6rem; margin: 0 auto 14px; transform: rotate(0deg); }
  .hero-title { font-size: 1.5rem; }
  .hero-usp { gap: 18px; }
}

/* ---- floating WhatsApp button ---- */
.whatsapp-fab {
  position: fixed; bottom: 22px; right: 22px; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.3); z-index: 60;
  transition: transform 0.15s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ---- shared section typography ---- */
.section-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--maroon);
}
@media (prefers-color-scheme: dark) { .section-eyebrow { color: #e8a0b4; } }
.section-title {
  font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; line-height: 1.25;
  margin: 6px 0 8px;
}
.section-sub { color: var(--muted); font-size: 0.92rem; margin: 0 0 24px; max-width: 560px; }

/* ---- hero offer card ---- */
.hero-offer { max-width: 1200px; margin: 0 auto; padding: 28px 20px 36px; }
.hero-offer-card {
  background: radial-gradient(circle at 20% 0%, #2b2b2b, #0e0e0e 65%);
  border: 1px solid rgba(217,164,65,0.35);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 20px;
  color: #f4ead3;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
.hero-offer-media { position: relative; justify-self: center; }
.hero-offer-media img {
  width: 190px; height: 190px; object-fit: contain; display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
}
.hero-offer-badge {
  position: absolute; top: -6px; right: -10px; background: var(--gold);
  color: #1a1200; font-weight: 800; font-size: 0.72rem; padding: 5px 10px; border-radius: 20px;
  transform: rotate(6deg); box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.hero-offer-eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px;
}
.hero-offer-info h2 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: 0 0 12px; color: #fff;
}
.hero-offer-points { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: #e8dcc4; }
.hero-offer-points li { display: flex; align-items: center; gap: 8px; }
.hero-offer-points li::before { content: "✦"; color: var(--gold); }
.hero-offer-price { font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; }
.hero-offer-price .price-old { color: #a89a7d; text-decoration: line-through; font-size: 1rem; margin-right: 8px; font-weight: 400; }
.hero-offer-price .price-now { color: var(--gold-light); }
.hero-offer-actions { display: flex; flex-direction: column; gap: 10px; }
.hero-offer-actions .btn-secondary { border-color: rgba(244,234,211,0.3); color: #f4ead3; }

/* ---- trust bar ---- */
.trust-bar { background: var(--card-bg); border-bottom: 1px solid var(--border); }
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 22px 20px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 700; line-height: 1.25; }
.trust-item svg { flex-shrink: 0; width: 26px; height: 26px; color: var(--maroon); }
@media (prefers-color-scheme: dark) { .trust-item svg { color: #e8a0b4; } }

/* ---- featured / top products ---- */
/* ---- views: the site is two "pages" — Home (landing) and Shop (catalog) ---- */
body.view-home main { display: none; }
body.view-home .subheader { display: none; }
body.view-shop .home-only { display: none; }

.btn-inline { display: inline-block; width: auto; padding: 13px 34px; margin-top: 22px; }

.back-link {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: inherit; font-size: 0.85rem; font-weight: 600; color: var(--muted);
  margin-bottom: 10px;
}
.back-link:hover { color: var(--maroon); }

.shop-chips { display: flex; gap: 8px; overflow-x: auto; padding: 14px 0 4px; -webkit-overflow-scrolling: touch; }
.shop-chip {
  flex-shrink: 0; border: 1px solid var(--border); background: var(--card-bg); color: var(--fg);
  border-radius: 20px; padding: 7px 15px; font-family: inherit; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.shop-chip:hover { border-color: var(--maroon); }
.shop-chip.active { background: var(--maroon); color: #fff; border-color: var(--maroon); }

/* ---- shop by brand ---- */
.brand-section-inner { max-width: 1200px; margin: 0 auto; padding: 36px 20px 8px; text-align: center; }
.brand-section-inner .section-sub { margin-left: auto; margin-right: auto; }
.brand-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 16px;
}
@media (max-width: 900px) { .brand-strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .brand-strip { grid-template-columns: repeat(3, 1fr); gap: 9px; } }
.brand-tile {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  aspect-ratio: 3 / 2; cursor: pointer; padding: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.brand-tile:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.brand-tile.active { border-color: var(--maroon); box-shadow: 0 0 0 2px var(--maroon); }
.brand-tile img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-tile-name {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: #1a1a1a;
  line-height: 1.15; text-align: center;
}
@media (max-width: 560px) { .brand-tile-name { font-size: 0.78rem; } }

/* ---- hot deals scroller ---- */
.deals-inner { max-width: 1200px; margin: 0 auto; padding: 36px 20px 8px; text-align: center; }
.deals-inner .section-sub { margin-left: auto; margin-right: auto; }
.deals-scroller {
  display: flex; gap: 14px; overflow-x: auto; padding: 14px 2px 18px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  text-align: left;
}
.deal-card {
  flex: 0 0 168px; scroll-snap-align: start;
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; cursor: pointer; padding: 0; font: inherit; color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.deal-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.1); }
.deal-media { position: relative; aspect-ratio: 1/1; background: #f4e9c1; }
.deal-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.deal-badge {
  position: absolute; top: 8px; left: 8px;
  background: #c0392b; color: #fff; font-size: 0.72rem; font-weight: 800;
  padding: 3px 7px; border-radius: 4px;
}
.deal-body { padding: 10px 11px 12px; }
.deal-body h3 {
  margin: 0 0 6px; font-size: 0.78rem; font-weight: 600; line-height: 1.3; min-height: 2.6em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.deal-body .card-price { font-size: 0.8rem; }

.featured-section { background: linear-gradient(180deg, rgba(217,164,65,0.08), transparent 60%); }
.top-grid { text-align: left; margin-top: 16px; }
.featured-section-inner { max-width: 1200px; margin: 0 auto; padding: 40px 20px 12px; text-align: center; }
.featured-section-inner .section-sub { margin-left: auto; margin-right: auto; }
.featured-grid { display: grid; grid-template-columns: 1fr; gap: 20px; text-align: left; margin-top: 8px; }
.featured-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.12); }
.featured-media { position: relative; aspect-ratio: 1/1; background: #f4e9c1; }
.featured-media img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.featured-tag {
  position: absolute; top: 10px; left: 10px; background: var(--ink); color: var(--gold-light);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 4px 9px; border-radius: 20px;
}
.featured-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.featured-body h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin: 0 0 6px; }
.featured-blurb { color: var(--muted); font-size: 0.85rem; line-height: 1.5; margin: 0 0 12px; flex: 1; }
.featured-body .card-price { font-size: 1.05rem; margin-bottom: 14px; }
.featured-actions .btn { padding: 11px; font-size: 0.9rem; }

/* ---- catalog header ---- */
.catalog-header { text-align: center; margin-bottom: 8px; }
.catalog-header .section-sub { margin-left: auto; margin-right: auto; }

/* ---- benefits section ---- */
.benefits-section { background: var(--card-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.benefits-inner { max-width: 1200px; margin: 0 auto; padding: 44px 20px; display: grid; gap: 28px; }
.benefits-media { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.benefits-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.benefit-tile svg { width: 30px; height: 30px; color: var(--maroon); margin-bottom: 8px; }
@media (prefers-color-scheme: dark) { .benefit-tile svg { color: #e8a0b4; } }
.benefit-tile h3 { font-size: 0.92rem; font-weight: 700; margin: 0 0 6px; }
.benefit-tile p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* ---- testimonials ---- */
.testimonials-section { background: linear-gradient(180deg, transparent, rgba(92,26,46,0.05) 40%, transparent); }
.testimonials-inner { max-width: 1200px; margin: 0 auto; padding: 44px 20px; }
.testimonials-heading { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.testimonials-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); flex-shrink: 0; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.testimonial-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; }
.testimonial-card .stars { color: var(--gold-dark); font-size: 0.95rem; margin-bottom: 8px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.88rem; line-height: 1.55; margin: 0 0 14px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700; }
.testimonial-author .muted { font-weight: 400; color: var(--muted); }
.avatar {
  width: 26px; height: 26px; border-radius: 50%; background: var(--maroon); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq-section { padding-bottom: 20px; }
.faq-inner { max-width: 760px; margin: 0 auto; padding: 44px 20px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; margin-bottom: 10px; background: var(--card-bg);
}
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 0.92rem; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.2rem; color: var(--maroon); flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin: 10px 0 0; }

@media (max-width: 700px) {
  .hero-offer-card { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 701px) {
  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-offer-card { grid-template-columns: 220px 1fr; align-items: center; padding: 32px; }
  .hero-offer-media img { width: 100%; height: auto; max-width: 220px; }
  .hero-offer-actions { flex-direction: row; }
  .hero-offer-actions .btn, .hero-offer-actions .btn-whatsapp { flex: 1; }
  .benefits-inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 2.1rem; }
}

@media (min-width: 1000px) {
  .featured-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---- mobile bottom navigation ---- */
.bottom-nav {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  grid-template-columns: repeat(5, 1fr);
  padding: 7px 4px calc(7px + env(safe-area-inset-bottom));
}
.bottom-nav button {
  position: relative;
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-family: inherit; font-size: 0.66rem; font-weight: 600; color: var(--fg);
  padding: 4px 0;
}
.bottom-nav svg { width: 21px; height: 21px; }
.nav-sale { color: #c0392b; }
.nav-sale-icon { font-size: 1.1rem; line-height: 21px; }
.nav-cart-count {
  position: absolute; top: 0; right: 20%;
  background: var(--maroon); color: #fff;
  width: 16px; height: 16px; border-radius: 50%;
  font-size: 0.6rem; display: flex; align-items: center; justify-content: center;
}
@media (max-width: 700px) {
  .bottom-nav { display: grid; }
  body { padding-bottom: 68px; }
  .whatsapp-fab { bottom: 86px; }
}
