:root {
  --red: #a01414;
  --red-dark: #6e0f0f;
  --red-bright: #d81e1e;
  --black: #121010;
  --black-soft: #1a1616;
  --cream: #f4ecd8;
  --gold: #e0c68a;
  --gray: #8a8080;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--black);
  color: var(--cream);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
  background: linear-gradient(180deg, #1c1414, #120e0e);
  border-bottom: 3px solid var(--red);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.brand-name {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--cream);
}

.brand-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.cart-btn {
  position: relative;
  background: var(--red);
  color: var(--cream);
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.cart-btn:hover { background: var(--red-bright); }

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  min-width: 22px;
  height: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.cart-count.show { display: flex; }
@keyframes countPop {
  0% { transform: scale(1); }
  45% { transform: scale(1.6); }
  100% { transform: scale(1); }
}
.cart-count.pop { animation: countPop 0.35s ease; }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 56px 20px 40px;
  background:
    radial-gradient(circle at 50% 0%, rgba(160,20,20,0.35), transparent 60%),
    var(--black);
  border-bottom: 1px solid #2a2020;
}

.hero img.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(160,20,20,0.5);
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 8px;
  color: var(--cream);
}

.hero p {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
}

.hero .cta {
  display: inline-block;
  background: var(--red);
  color: var(--cream);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.15s, transform 0.15s;
}
.hero .cta:hover { background: var(--red-bright); transform: translateY(-1px); }

/* ---------- Menu ---------- */
.menu {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.menu h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.menu .sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 0.9rem;
}

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

.flavor-card {
  background: var(--black-soft);
  border: 1px solid #2a2020;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.flavor-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.flavor-card .photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--black);
}

.flavor-card .body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.flavor-card h3 {
  font-size: 1.02rem;
  margin: 0;
  line-height: 1.25;
  min-height: 2.5em;
}

.heat {
  display: flex;
  gap: 3px;
  align-items: center;
  font-size: 0.75rem;
  color: var(--gray);
}
.heat .pepper { color: #3a3030; font-size: 0.85rem; }
.heat .pepper.active { color: var(--red-bright); }

.price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}

.out-of-stock {
  color: #ff8b7b;
  font-size: 0.85rem;
  font-weight: 700;
}

.low-stock {
  align-self: flex-start;
  color: #ffd27a;
  background: rgba(160, 20, 20, 0.28);
  border: 1px solid rgba(255, 210, 122, 0.42);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.78rem;
  font-weight: 700;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #333;
  border-radius: 6px;
  overflow: hidden;
}
.qty-controls button {
  background: #221a1a;
  color: var(--cream);
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 1rem;
}
.qty-controls button:hover { background: var(--red); }
.qty-controls span {
  min-width: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.add-btn {
  width: 100%;
  margin-top: 10px;
  background: var(--red);
  color: var(--cream);
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.add-btn:hover { background: var(--red-bright); }
.add-btn:disabled {
  background: #2a2222;
  color: var(--gray);
  cursor: not-allowed;
}

/* ---------- Cart drawer ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 50;
  display: none;
}
.overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 92vw;
  height: 100%;
  background: var(--black-soft);
  border-left: 3px solid var(--red);
  z-index: 60;
  display: flex;
  flex-direction: column;
  transition: right 0.25s ease;
}
.cart-drawer.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #2a2020;
}
.cart-header h2 { margin: 0; font-size: 1.3rem; }
.close-btn {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #241c1c;
}
.cart-item .name { font-size: 0.9rem; }
.cart-item .meta { color: var(--gray); font-size: 0.78rem; }
.cart-item .remove {
  background: none;
  border: none;
  color: var(--red-bright);
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
}

.cart-empty {
  color: var(--gray);
  text-align: center;
  padding: 40px 0;
}

.cart-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid #2a2020;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.checkout-btn {
  width: 100%;
  background: var(--red);
  color: var(--cream);
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}
.checkout-btn:hover { background: var(--red-bright); }
.checkout-btn:disabled { background: #2a2222; color: var(--gray); cursor: not-allowed; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--black-soft);
  border: 1px solid #2a2020;
  border-radius: 10px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
}
.modal h2 { margin-top: 0; }

.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 5px;
  color: var(--gold);
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 9px 10px;
  background: #1a1414;
  border: 1px solid #332828;
  border-radius: 6px;
  color: var(--cream);
  font-size: 0.92rem;
  font-family: inherit;
}
.form-row textarea { resize: vertical; min-height: 60px; }

.fulfillment-toggle {
  display: flex;
  gap: 10px;
}
.fulfillment-toggle label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #332828;
  border-radius: 6px;
  padding: 9px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--cream);
}
.fulfillment-toggle input { width: auto; }

.form-error {
  color: var(--red-bright);
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: none;
}
.form-error.show { display: block; }

.submit-btn {
  width: 100%;
  background: var(--red);
  color: var(--cream);
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 6px;
}
.submit-btn:hover { background: var(--red-bright); }
.submit-btn:disabled { background: #2a2222; color: var(--gray); cursor: not-allowed; }

.modal-close {
  float: right;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.3rem;
  cursor: pointer;
}

.success-view { text-align: center; padding: 10px 0; }

.success-burst {
  width: 96px;
  height: 96px;
  margin: 4px auto 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #3a1414, #1c0e0e);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 34px rgba(216,30,30,0.45);
}
.success-burst.animate { animation: burstPop 0.45s cubic-bezier(0.2, 1.4, 0.4, 1); }
@keyframes burstPop {
  0% { transform: scale(0.2); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
.check-svg { width: 58px; height: 58px; }
.check-circle {
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-dasharray: 155;
  stroke-dashoffset: 0;
}
.check-mark {
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 0;
}
.success-burst.animate .check-circle { animation: drawStroke 0.7s ease 0.1s backwards; }
.success-burst.animate .check-mark { animation: drawStroke 0.4s ease 0.55s backwards; }
@keyframes drawStroke {
  from { stroke-dashoffset: 155; }
  to { stroke-dashoffset: 0; }
}

.success-title {
  margin: 0 0 12px;
  font-size: 1.6rem;
  color: var(--cream);
}
.order-chip {
  display: inline-block;
  border: 2px dashed var(--gold);
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 8px;
  background: rgba(224,198,138,0.06);
  margin-bottom: 14px;
}
.success-total {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.success-total span {
  color: var(--gray);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}
.success-total strong {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--gold);
}
.success-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  min-height: 0;
}
.perk-chip {
  background: #241616;
  border: 1px solid var(--red);
  color: var(--cream);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.8rem;
}
.success-steps {
  text-align: left;
  background: #150f0f;
  border: 1px solid #2a2020;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 14px;
}
.s-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: #cfc4ac;
}
.s-step + .s-step { border-top: 1px dashed #241c1c; }
.s-ico { font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 30px 20px;
  color: var(--gray);
  font-size: 0.82rem;
  border-top: 1px solid #241c1c;
}

/* ---------- Announcement bar ---------- */
.announce-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--red-dark);
  color: var(--cream);
  font-size: 0.82rem;
  padding: 7px 12px;
  letter-spacing: 0.02em;
}
.announce-dot { color: var(--gold); }
.announce-promo-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.announce-promo-btn:hover { background: #f0d9a5; }

/* ---------- Header actions ---------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.account-btn {
  background: none;
  border: 1px solid #3a2e2e;
  color: var(--cream);
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.15s;
}
.account-btn:hover { border-color: var(--gold); }
.account-btn .pts { color: var(--gold); font-weight: 700; }

/* ---------- About section ---------- */
.about {
  border-top: 1px solid #241c1c;
  background:
    radial-gradient(circle at 85% 20%, rgba(160,20,20,0.18), transparent 55%),
    var(--black-soft);
  padding: 56px 24px;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: start;
}
.about-text h2 { margin-top: 0; font-size: 1.7rem; }
.about-text p { color: #cfc4ac; line-height: 1.65; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.about-badge {
  border: 1px solid var(--red);
  color: var(--cream);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
}
.loyalty-callout {
  width: min(100%, 620px);
  background: linear-gradient(160deg, #241616, #191010);
  border: 1px solid var(--red);
  border-radius: 12px;
  padding: 22px 24px;
}
.loyalty-callout h3 { margin: 0 0 8px; color: var(--gold); font-size: 1.2rem; }
.loyalty-callout p { color: #cfc4ac; font-size: 0.92rem; line-height: 1.5; }
.loyalty-callout ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  color: var(--cream);
  font-size: 0.88rem;
}
.loyalty-callout li {
  padding: 5px 0;
  border-bottom: 1px dashed #2e2222;
}
.loyalty-join-btn {
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  width: 100%;
  text-align: center;
  background: var(--red);
  color: var(--cream);
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.15s;
}
.loyalty-join-btn:hover { background: var(--red-bright); }

/* ---------- Cart free-shipping hint ---------- */
.free-ship-hint {
  font-size: 0.8rem;
  color: var(--gold);
  min-height: 1.2em;
  margin-bottom: 8px;
  text-align: center;
}

/* ---------- Promo code row ---------- */
.promo-row { display: flex; gap: 8px; }
.promo-row input { flex: 1; text-transform: uppercase; }
.promo-apply-btn {
  background: #221a1a;
  border: 1px solid #3a2e2e;
  color: var(--cream);
  padding: 0 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
.promo-apply-btn:hover { border-color: var(--gold); }
.promo-msg { font-size: 0.8rem; margin-top: 5px; min-height: 1em; }
.promo-msg.ok { color: #7ec98a; }
.promo-msg.bad { color: var(--red-bright); }

/* ---------- Order summary ---------- */
.order-summary {
  background: #150f0f;
  border: 1px solid #2a2020;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.order-summary .sum-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  color: #cfc4ac;
}
.order-summary .sum-row.discount { color: #7ec98a; }
.order-summary .sum-row.free { color: var(--gold); }
.order-summary .sum-row.total {
  border-top: 1px solid #2a2020;
  margin-top: 6px;
  padding-top: 8px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--cream);
}

/* ---------- Promo flyer ---------- */
.flyer {
  position: relative;
  background:
    radial-gradient(circle at 50% 18%, rgba(224,198,138,0.14), transparent 55%),
    linear-gradient(165deg, #2a1010, #170d0d);
  border: 2px solid var(--gold);
  border-radius: 14px;
  max-width: 400px;
  width: 100%;
  padding: 34px 28px 26px;
  text-align: center;
  box-shadow: 0 0 60px rgba(160,20,20,0.55);
  overflow: hidden;
}
.flyer::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(224,198,138,0.45);
  border-radius: 10px;
  pointer-events: none;
}
.flyer-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
.flyer-burst {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 86px;
  height: 86px;
  background: var(--red-bright);
  clip-path: polygon(50% 0%, 61% 12%, 76% 6%, 79% 22%, 95% 24%, 89% 39%, 100% 50%, 89% 61%, 95% 76%, 79% 78%, 76% 94%, 61% 88%, 50% 100%, 39% 88%, 24% 94%, 21% 78%, 5% 76%, 11% 61%, 0% 50%, 11% 39%, 5% 24%, 21% 22%, 24% 6%, 39% 12%);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-12deg);
}
.flyer-burst-text {
  color: var(--cream);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.05;
  font-family: Georgia, serif;
}
.flyer-logo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid var(--gold);
}
.flyer-title {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 1.5rem;
  margin: 0 0 8px;
}
.flyer-sub { color: #d8ccb2; font-size: 0.92rem; line-height: 1.5; margin: 0 0 16px; }
.flyer-code {
  display: inline-block;
  border: 2px dashed var(--gold);
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  padding: 8px 22px;
  border-radius: 8px;
  margin-bottom: 16px;
  background: rgba(224,198,138,0.06);
}
.flyer-claim-btn {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--cream);
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.02rem;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.flyer-claim-btn:hover { background: var(--red-bright); }
.flyer-fine { color: var(--gray); font-size: 0.72rem; margin: 10px 0 0; }

/* ---------- Account / rewards modal ---------- */
.auth-sub { color: var(--gray); font-size: 0.88rem; margin-top: -6px; }
.auth-tabs {
  display: flex;
  gap: 6px;
  margin: 14px 0;
  border-bottom: 1px solid #2a2020;
}
.auth-tab {
  background: none;
  border: none;
  color: var(--gray);
  padding: 9px 16px;
  cursor: pointer;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
}
.auth-tab.active { color: var(--cream); border-bottom-color: var(--red); }

.points-banner {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: linear-gradient(120deg, #2a1616, #1a1010);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 12px 0;
}
.points-big {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.points-label { color: var(--gray); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.12em; }

.rewards-heading { margin: 16px 0 8px; font-size: 1.05rem; }
.rewards-list { display: flex; flex-direction: column; gap: 8px; }
.reward-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #150f0f;
  border: 1px solid #2a2020;
  border-radius: 8px;
  padding: 10px 12px;
}
.reward-row .r-name { font-size: 0.9rem; font-weight: 600; }
.reward-row .r-desc { font-size: 0.76rem; color: var(--gray); }
.reward-row .r-pts { color: var(--gold); font-weight: 700; font-size: 0.85rem; white-space: nowrap; }
.redeem-btn {
  background: var(--red);
  border: none;
  color: var(--cream);
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.redeem-btn:hover { background: var(--red-bright); }
.redeem-btn:disabled { background: #2a2222; color: var(--gray); cursor: not-allowed; }

.redemptions-wrap { margin-top: 16px; }
.redemptions-wrap h3 { font-size: 1rem; margin: 0 0 8px; }
.redemption-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #cfc4ac;
  padding: 6px 0;
  border-bottom: 1px dashed #241c1c;
}
.redemption-row .badge {
  padding: 1px 9px;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge.pending { background: #8a6a14; color: #f4ecd8; }
.badge.fulfilled { background: #145a2c; color: #f4ecd8; }
.badge.cancelled { background: #333; color: #999; }

.consent-row { margin-bottom: 12px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: #cfc4ac;
  cursor: pointer;
  line-height: 1.45;
}
.consent-label input {
  margin-top: 2px;
  accent-color: var(--red);
  flex-shrink: 0;
}
.consent-label a { color: var(--gold); }

.confirm-note {
  color: var(--gold);
  font-size: 0.88rem;
  margin: 0 0 12px;
  min-height: 0;
}

.logout-link {
  margin-top: 18px;
  background: none;
  border: none;
  color: var(--gray);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.85rem;
}
.logout-link:hover { color: var(--cream); }

@media (max-width: 760px) {
  .about-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .brand-name { font-size: 1.05rem; }
  .fulfillment-toggle { flex-direction: column; }
  .account-btn { padding: 8px 10px; font-size: 0.8rem; }
}
