:root {
  --ink: #2b2323;
  --paper: #fffdf8;
  --paper-deep: #faf5ea;
  --card: #ffffff;
  --wine: #6d1f3a;
  --wine-dark: #501629;
  --gold: #c8963e;
  --gold-light: #e8c877;
  --blush: #f6ede0;
  --line: #ece3d2;
  --muted: #7a6a5a;
  --danger: #b3432b;
  --ok: #3c6e47;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Shared "dignified" card treatment: a soft ambient shadow plus a crisp close
     shadow, with a faint inset highlight along the top edge for a gently
     embossed, raised-off-the-page feel. */
  --shadow-soft: 0 1px 0 rgba(255,255,255,0.9) inset, 0 1px 2px rgba(43,35,35,0.05), 0 10px 24px -12px rgba(80,22,41,0.18);
  --shadow-lift: 0 1px 0 rgba(255,255,255,0.9) inset, 0 2px 4px rgba(43,35,35,0.06), 0 18px 32px -14px rgba(80,22,41,0.28);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden; /* guards against the full-bleed .hero below adding a stray horizontal scrollbar */
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

a { color: var(--wine-dark); }

h1, h2, h3 { font-family: var(--font-display); }

/* ---------- header ---------- */
.site-header { background: var(--paper); position: sticky; top: 0; z-index: 10; box-shadow: 0 2px 12px rgba(80,22,41,0.1); }
.site-header::before { content: ""; display: block; height: 4px; background: linear-gradient(90deg, var(--wine), var(--gold-light), var(--wine)); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; flex-wrap: wrap; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark { height: 58px; width: auto; flex-shrink: 0; filter: drop-shadow(0 2px 4px rgba(80,22,41,0.18)); transition: transform 0.2s ease; }
.brand:hover .brand-mark { transform: scale(1.05); }
.brand-word { display: flex; flex-direction: column; line-height: 1.1; }
.brand-word strong { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.04em; color: var(--wine); }
.brand-word em { font-style: normal; font-size: 0.68rem; letter-spacing: 0.28em; color: var(--gold); font-weight: 600; }
.main-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 2px; }
.main-nav a { padding: 9px 14px; border-radius: 999px; text-decoration: none; color: var(--ink); font-size: 0.95rem; font-weight: 500; transition: background 0.15s ease, color 0.15s ease; }
.main-nav a:hover { color: var(--wine); background: var(--blush); }
.cart-link { font-weight: 700 !important; background: var(--wine); color: #fff !important; box-shadow: 0 4px 10px -3px rgba(109,31,58,0.5); }
.cart-link:hover { background: var(--wine-dark) !important; color: #fff !important; }
.admin-header .main-nav a:hover { background: transparent; }

main { max-width: 1120px; margin: 0 auto; padding: 0 20px 80px; }

/* ---------- hero ---------- */
/* Full-bleed: breaks the hero out of main's 1120px container to span the entire
   viewport width, regardless of where main's max-width sits on a wide screen. */
.hero { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); margin-bottom: 20px; overflow: hidden; min-height: 460px; display: flex; align-items: center; justify-content: center; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: -14px; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.6s ease; filter: saturate(1.05); }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(80,22,41,0.55), rgba(43,25,20,0.65)); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 50px 20px 60px; color: #fff; max-width: 640px; }
.hero-badge { width: 132px; height: 132px; border-radius: 50%; background: #fffdf8; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 2px 0 rgba(255,255,255,0.6) inset; padding: 8px; }
.hero-badge img { width: 100%; height: 100%; object-fit: contain; }
.hero-greeting { display: inline-block; font-size: 0.92rem; font-weight: 600; color: #fff; background: rgba(255,255,255,0.16); padding: 4px 16px; border-radius: 999px; margin-bottom: 12px; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.72rem; color: var(--gold-light); margin-bottom: 14px; }
.hero-content h1 { font-size: 2.6rem; margin: 0 0 14px; }
.hero-content p { font-size: 1.1rem; opacity: 0.92; max-width: 520px; margin: 0 auto 26px; }

.btn { display: inline-block; padding: 11px 24px; background: var(--wine); color: #fff; border-radius: 999px; text-decoration: none; font-weight: 600; border: none; cursor: pointer; font-size: 0.95rem; letter-spacing: 0.01em; box-shadow: 0 6px 14px -4px rgba(109,31,58,0.55); transition: transform 0.12s, box-shadow 0.12s; }
.btn:hover { background: var(--wine-dark); transform: translateY(-1px); box-shadow: 0 10px 18px -4px rgba(109,31,58,0.55); }
.btn.secondary { background: transparent; color: var(--wine); border: 1px solid var(--wine); box-shadow: none; }
.btn.secondary.light { color: #fff; border-color: rgba(255,255,255,0.7); }
.btn.secondary.light:hover { background: rgba(255,255,255,0.12); }
.btn.danger { background: var(--danger); box-shadow: none; }
.btn.wa-btn { background: #25D366; box-shadow: 0 6px 14px -4px rgba(37,211,102,0.5); }
.btn.wa-btn:hover { background: #1ebc59; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- category tiles ---------- */
.section-title { font-size: 1.5rem; margin: 56px 0 20px; }
.cat-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.cat-tile { display: block; text-align: center; padding: 22px 10px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem; box-shadow: var(--shadow-soft); transition: box-shadow 0.15s, transform 0.15s, border-color 0.15s; }
.cat-tile:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.cat-tile-photo { display: block; width: 100%; height: 90px; object-fit: cover; border-radius: 8px; margin-bottom: 10px; }
.cat-tile.soon { cursor: default; opacity: 0.55; }
.cat-tile.soon:hover { transform: none; box-shadow: var(--shadow-soft); border-color: var(--line); }
.cat-tile.soon small { display: block; margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.66rem; color: var(--gold); }

/* A category with no ready products yet, shown in the shop page's filter tabs alongside the
   clickable ones - plain text, not a link, so it can't be clicked into an empty page. */
.category-filters .cat-pill { padding: 6px 16px; border: 1px dashed var(--line); border-radius: 999px; font-size: 0.9rem; color: var(--muted); background: transparent; }
.category-filters .cat-pill em { font-style: normal; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gold); margin-left: 4px; }

/* ---------- product grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 26px; }

.card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-soft); transition: box-shadow 0.18s, transform 0.18s; }
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.card > a { position: relative; display: block; }
.card img, .product-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; background: var(--blush); }
.badge-new { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--gold); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.card-body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-body h3 { margin: 0; font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
.card-body h3 a { text-decoration: none; color: var(--ink); }
.card-body h3 a:hover { color: var(--wine); }
.card-body .price { font-weight: 700; color: var(--wine); }
.card-body .muted, .muted { color: var(--muted); font-size: 0.9rem; }
.card-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 8px; }
.card-actions form { flex: 1; }
.card-actions .btn { width: 100%; text-align: center; padding: 9px; }

/* ---------- featured products carousel ---------- */
/* Horizontally-scrolling variant of .grid, used only on the homepage's "New & loved
   right now" section - the full Shop listing keeps plain .grid untouched. */
.carousel { position: relative; display: flex; align-items: center; gap: 10px; }
.carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 20px;
  flex: 1;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > .card { flex: 0 0 240px; scroll-snap-align: start; }
.carousel-btn {
  flex: 0 0 auto;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--card); color: var(--wine);
  font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow 0.15s, transform 0.15s, background 0.15s, color 0.15s;
}
.carousel-btn:hover { background: var(--wine); color: #fff; box-shadow: var(--shadow-lift); transform: translateY(-2px); }
@media (max-width: 640px) {
  .carousel-btn { width: 36px; height: 36px; font-size: 0.95rem; }
  .carousel-track > .card { flex-basis: 200px; }
}

/* ---------- geo pin picker (checkout + admin collection points) ---------- */
.geo-picker { margin: 10px 0 4px; }
.geo-map { height: 280px; width: 100%; border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.geo-picker-status { font-size: 0.85rem; color: var(--muted); margin: 8px 0 0; min-height: 1.2em; }

.category-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.category-filters.sub { margin-top: -6px; margin-bottom: 24px; }
.category-filters a { padding: 6px 16px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; color: var(--ink); font-size: 0.9rem; background: var(--card); }
.category-filters.sub a { font-size: 0.82rem; padding: 5px 13px; background: var(--blush); border-color: transparent; }
.category-filters a.active { background: var(--wine); color: #fff; border-color: var(--wine); }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.product-detail img { width: 100%; border-radius: 14px; background: var(--blush); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-lift); border: 1px solid var(--line); }
.stock-low { color: var(--danger); font-weight: 600; }
.stock-out { color: var(--muted); font-weight: 600; }
.stock-ok { color: var(--ok); font-size: 0.88rem; }

/* ---------- animated multi-colour highlight (urgency badges: low stock, sold out, and any
   future "Coming soon" style label) - a lightweight, theme-matched CSS gradient shimmer
   instead of an embedded GIF, so it stays crisp at any size and needs no image file. ---------- */
@keyframes prabhvas-shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.badge-shimmer {
  display: inline-block;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--wine-dark), var(--gold-light), var(--wine));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: prabhvas-shimmer 3s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .badge-shimmer { animation: none; background: none; -webkit-text-fill-color: currentColor; color: var(--wine); }
}

table { width: 100%; border-collapse: collapse; margin: 20px 0; background: var(--card); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-soft); }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); background: var(--paper-deep); }

.cart-table img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; }
.qty-form { display: flex; gap: 6px; align-items: center; }
.qty-form input[type=number] { width: 56px; padding: 4px; border: 1px solid var(--line); border-radius: 4px; }
.cart-total { text-align: right; font-size: 1.2rem; font-weight: 700; margin: 20px 0; color: var(--wine); }

form.stacked { display: flex; flex-direction: column; gap: 14px; max-width: 480px; }
form.stacked label { font-weight: 600; font-size: 0.9rem; }
form.stacked input, form.stacked textarea, form.stacked select {
  width: 100%; padding: 10px; border: 1px solid var(--line); border-radius: 6px; font-family: inherit; font-size: 1rem; background: #fff;
  box-shadow: 0 1px 2px rgba(43,35,35,0.04) inset;
}
form.stacked textarea { resize: vertical; }

.contact-options { display: flex; gap: 14px; flex-wrap: wrap; margin: 20px 0 10px; }

.flash { padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; }
.flash.ok { background: #e5f0e7; color: var(--ok); }
.flash.error { background: #f6e4de; color: var(--danger); }

.blog-list article { padding: 24px 0; border-bottom: 1px solid var(--line); }
.blog-list h2 { margin: 0 0 6px; font-size: 1.3rem; }
.post-body { white-space: pre-wrap; font-size: 1.05rem; max-width: 680px; }

.badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; background: #eee; }
.badge.new { background: #fdeccd; color: #8a5a12; }
.badge.confirmed { background: #d9e8f5; color: #23577f; }
.badge.shipped { background: #e3dbf7; color: #5b3fa0; }
.badge.delivered { background: #dcefe0; color: var(--ok); }
.badge.cancelled { background: #ece3d2; color: #6b5f4f; }
.badge.rejected-at-delivery { background: #f4d9d1; color: var(--danger); }

/* A quick-scan left-edge stripe on each Orders-table row, in the same colour as its status
   badge, so a whole page of orders reads at a glance without leaning on the badge text alone. */
.order-row.status-new { border-left: 4px solid #c8963e; }
.order-row.status-confirmed { border-left: 4px solid #23577f; }
.order-row.status-shipped { border-left: 4px solid #5b3fa0; }
.order-row.status-delivered { border-left: 4px solid var(--ok); }
.order-row.status-cancelled { border-left: 4px solid #6b5f4f; }
.order-row.status-rejected-at-delivery { border-left: 4px solid var(--danger); }

/* ---------- admin Orders: card layout (replaces the old plain table rows) ----------
   Each order is its own card with a coloured left edge + soft tinted background per
   status, echoing the badge colours above, so a whole page of orders reads at a glance. */
.order-card { background: var(--card); border: 1px solid var(--line); border-left: 5px solid var(--line); border-radius: 10px; padding: 18px 20px; margin-bottom: 14px; box-shadow: var(--shadow-soft); }
.order-card.status-new { border-left-color: #c8963e; background: #fdf6e7; }
.order-card.status-confirmed { border-left-color: #23577f; background: #eaf2fa; }
.order-card.status-shipped { border-left-color: #5b3fa0; background: #f1ecfa; }
.order-card.status-delivered { border-left-color: var(--ok); background: #eaf5ec; }
.order-card.status-cancelled { border-left-color: #6b5f4f; background: #f2ede1; opacity: 0.82; }
.order-card.status-rejected-at-delivery { border-left-color: var(--danger); background: #faeae4; }
.order-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.order-number { font-family: 'Courier New', monospace; font-size: 0.8rem; color: var(--muted); font-weight: 700; letter-spacing: 0.02em; }
.order-card .muted-line { margin: 4px 0 0; font-size: 0.88rem; color: var(--muted); }
.order-items-list { display: flex; flex-direction: column; gap: 6px; margin: 10px 0 0; }
.order-item-row { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; }
.order-item-thumb, .order-item-thumb-placeholder { width: 34px; height: 34px; border-radius: 5px; object-fit: cover; background: var(--paper-deep); border: 1px solid var(--line); flex: none; }
.order-item-thumb-placeholder { border-style: dashed; }
.order-card-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; flex: none; }
.order-card-actions .qty-form { display: flex; gap: 6px; }
.order-card-select { display: flex; align-items: flex-start; gap: 10px; }

/* ---------- return / refund statuses (reuses the order badge colours above) ---------- */
.badge.requested { background: #fdeccd; color: #8a5a12; }
.badge.declined { background: #f4d9d1; color: var(--danger); }
.badge.received { background: #d9e8f5; color: #23577f; }
.badge.refunded { background: #dcefe0; color: var(--ok); }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25); z-index: 20; text-decoration: none;
}
.wa-float:hover { background: #1ebc59; }

/* ---------- admin ---------- */
.admin { background: var(--paper-deep); }
.admin main { max-width: 1150px; }
.admin-header { background: #2b1420; border-bottom: none; }
.admin-header .brand-mark { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.admin-header .brand-word strong { color: #f4efe6; }
.admin-header .brand-word em { color: var(--gold-light); }
.admin-header .main-nav a { color: #f0e6da; }
.admin-header .main-nav a:hover { color: #fff; text-decoration: underline; }
.dash-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin: 24px 0 40px; }
.dash-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 20px; box-shadow: var(--shadow-soft); }
.dash-card .num { font-size: 1.8rem; font-weight: 700; color: var(--wine); }
.login-box { max-width: 380px; margin: 60px auto; background: var(--card); padding: 36px 32px; border-radius: 14px; border: 1px solid var(--line); text-align: center; box-shadow: var(--shadow-lift); }
.login-box img { width: 96px; margin-bottom: 14px; filter: drop-shadow(0 4px 10px rgba(80,22,41,0.2)); }
.row-actions a { margin-right: 10px; font-size: 0.9rem; }
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }

/* Same card look as .login-box, but left-aligned - for content that's a list of details
   (order tracking results, etc.) rather than a short centered form; centering a bulleted
   item list and multiple paragraphs of order info reads oddly, unlike a login form. */
.order-detail-card { max-width: 380px; margin: 24px auto; background: var(--card); padding: 24px 28px; border-radius: 14px; border: 1px solid var(--line); text-align: left; box-shadow: var(--shadow-lift); }
.order-detail-card ul { padding-left: 20px; }

/* ---------- reviews & ratings ---------- */
.stars { color: var(--gold); letter-spacing: 2px; }
.rating-line { margin: 4px 0 10px; font-size: 0.9rem; color: var(--ink); }
.rating-line .stars { font-size: 0.95rem; }
.reviews { margin-top: 48px; border-top: 1px solid var(--line); padding-top: 28px; }
.review { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin-bottom: 12px; box-shadow: var(--shadow-soft); }
.review-form { margin-top: 20px; background: var(--paper-deep); border-radius: 12px; padding: 4px 18px 18px; }
.review-form summary { cursor: pointer; padding: 14px 0; font-weight: 600; color: var(--wine); }
.badge.approved { background: #dcefe0; color: var(--ok); }
.badge.rejected { background: #f4d9d1; color: var(--danger); }
.badge.pending { background: #fdeccd; color: #8a5a12; }

/* ---------- account gate / auth pages ---------- */
.login-box ul.muted { text-align: left; font-size: 0.9rem; }

/* Password fields: show/hide toggle (every field), plus a strength meter and match message on
   the specific forms that set a new password - see static/password-ui.js. */
.pw-wrap { position: relative; display: block; }
.pw-wrap input[type="password"], .pw-wrap input[type="text"] { padding-right: 60px; }
.pw-toggle { position: absolute; top: 50%; right: 4px; transform: translateY(-50%); border: none; background: none; color: var(--wine); font-size: 0.8rem; font-weight: 700; cursor: pointer; padding: 4px 8px; }
.pw-toggle:hover { text-decoration: underline; }
.pw-meter { margin-top: 6px; font-size: 0.8rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; text-align: left; }
.pw-meter-track { display: inline-block; width: 90px; height: 6px; border-radius: 4px; background: var(--line); overflow: hidden; }
.pw-meter-bar { display: block; height: 100%; border-radius: 4px; transition: width 0.2s ease; }
.pw-meter-bar.weak { background: var(--danger); }
.pw-meter-bar.normal { background: #c58a1f; }
.pw-meter-bar.strong { background: var(--ok); }
.pw-meter-label { font-weight: 700; }
.pw-meter-label.weak { color: var(--danger); }
.pw-meter-label.normal { color: #8a5a12; }
.pw-meter-label.strong { color: var(--ok); }
.pw-hint { color: var(--muted); font-weight: 400; }
.pw-match { margin-top: 4px; font-size: 0.8rem; font-weight: 600; min-height: 1.1em; text-align: left; }
.pw-match-ok { color: var(--ok); }
.pw-match-bad { color: var(--danger); }

/* ---------- FAQ accordion (admin FAQ tab and the public /faq page) ---------- */
.faq-category-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); font-weight: 700; margin: 26px 0 6px; }
.faq-category-title:first-child { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--line); padding: 13px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--ink); font-size: 0.98rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "+"; display: inline-block; width: 18px; color: var(--gold); font-weight: 700; }
.faq-item[open] summary::before { content: "\2013"; }
.faq-item .faq-answer { margin: 10px 0 0 18px; font-size: 0.92rem; color: var(--muted); line-height: 1.6; max-width: 760px; }
.faq-item .faq-answer p { margin: 0 0 8px; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }
.faq-item .faq-answer ul, .faq-item .faq-answer ol { margin: 6px 0 8px 20px; }
.faq-item .faq-answer li { margin-bottom: 5px; }
.faq-item .faq-answer strong { color: var(--ink); }

@media (max-width: 720px) {
  .product-detail { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .main-nav a { margin-left: 0; margin-right: 14px; }
  .hero-content h1 { font-size: 2rem; }
  .hero { min-height: 380px; }
  .hero-badge { width: 104px; height: 104px; }
}
