/* ============================================================
   SauceSensei — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --red-950: #3a0505;
  --red-900: #4d0707;
  --red-800: #6b0b0b;
  --red-700: #8b0f0f;
  --red-600: #a81616;
  --red-500: #c41e1e;
  --flame: #ff7a1a;
  --flame-light: #ffb347;
  --gold: #ffc233;
  --cream: #fff8ef;
  --cream-100: #fff1de;
  --ink-900: #2b1210;
  --ink-700: #5a3b34;
  --ink-500: #8a6d66;
  --white: #ffffff;
  --border: #f0ddce;
  --shadow: 0 10px 30px rgba(107, 11, 11, 0.14);
  --shadow-lg: 0 22px 50px rgba(107, 11, 11, 0.22);
  --radius: 20px;
  --radius-sm: 12px;
  --max-w: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
  color: var(--ink-900);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
  line-height: 1.12;
  color: var(--red-800);
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: 3.1rem; font-weight: 700; }
h2 { font-size: 2.15rem; }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; color: var(--ink-700); }

a { color: var(--red-600); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Placeholder banner ---------- */
.placeholder-banner {
  background: var(--gold);
  color: var(--red-950);
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 9px 16px;
  letter-spacing: 0.02em;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--red-950);
  color: #f3c9c0;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #f3c9c0; }
.topbar .topbar-links span { margin-left: 18px; }

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red-700);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red-800);
  flex-shrink: 0;
  min-width: 0;
}
.header-logo-img {
  height: 50px;
  width: 224px;
  max-width: none;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
@media (max-width: 480px) {
  .header-logo-img { height: 42px; width: 188px; }
}
.footer-brand .logo-full-img {
  height: 42px;
  width: 188px;
  max-width: none;
  margin-bottom: 16px;
  object-fit: contain;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}
nav.main-nav a {
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 2px;
  border-bottom: 3px solid transparent;
  font-family: 'Fredoka', sans-serif;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--red-700);
  border-bottom-color: var(--flame);
  text-decoration: none;
}

.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px) rotate(-0.5deg); }
.btn-primary {
  background: linear-gradient(135deg, var(--flame), var(--red-600));
  color: white;
  box-shadow: 0 10px 24px rgba(168,22,22,0.35);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--red-600), var(--red-800)); }
.btn-outline {
  background: transparent;
  border-color: var(--red-700);
  color: var(--red-700);
}
.btn-outline:hover { background: var(--cream-100); }
.btn-white {
  background: white;
  color: var(--red-800);
}
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at 20% 20%, var(--red-600), var(--red-900) 60%, var(--red-950) 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "🔥";
  position: absolute;
  left: -40px;
  bottom: -60px;
  font-size: 320px;
  opacity: 0.08;
  transform: rotate(-12deg);
}
.hero::after {
  content: "🌶️";
  position: absolute;
  right: -30px;
  top: -50px;
  font-size: 260px;
  opacity: 0.10;
  transform: rotate(18deg);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,194,51,0.22);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Fredoka', sans-serif;
}
.hero h1 { color: white; font-size: 3.2rem; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p.lead { color: #ffe1d1; font-size: 1.14rem; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-badges div { font-size: 0.85rem; color: #ffe1d1; display: flex; align-items: center; gap: 8px; font-weight: 700; }

.hero-visual {
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,194,51,0.4);
  border-radius: var(--radius);
  padding: 30px;
}
.hero-visual .belt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-visual .belt {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
}
.hero-visual .belt .dot { width: 22px; height: 22px; border-radius: 50%; margin: 0 auto 10px; }
.hero-visual .belt strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 1rem; color: white; }
.hero-visual .belt span { font-size: 0.76rem; color: #ffe1d1; }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-alt { background: var(--cream-100); }
.section-dark { background: var(--red-950); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-head { max-width: 660px; margin: 0 auto 50px; text-align: center; }
.section-head .eyebrow {
  color: var(--red-600);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: block;
  font-family: 'Fredoka', sans-serif;
}
.section-dark .section-head .eyebrow { color: var(--gold); }

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.card .icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--cream-100);
  color: var(--red-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}

/* ---------- Product cards ---------- */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card .product-top {
  padding: 30px 26px 20px;
  text-align: center;
  position: relative;
}
.product-card .bottle {
  width: 74px;
  height: 130px;
  margin: 0 auto 14px;
  border-radius: 14px 14px 22px 22px;
  position: relative;
  box-shadow: inset 0 -10px 18px rgba(0,0,0,0.15), 0 6px 14px rgba(0,0,0,0.12);
}
.product-card .bottle::before {
  content: "";
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 20px;
  background: #3a2a20;
  border-radius: 4px 4px 0 0;
}
.product-card .belt-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: 'Fredoka', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: white;
  margin-bottom: 10px;
}
.product-card .heat-row { display: flex; gap: 4px; justify-content: center; margin: 10px 0 4px; }
.product-card .heat-row span { font-size: 1rem; opacity: 0.25; }
.product-card .heat-row span.active { opacity: 1; }
.product-card .product-body { padding: 0 26px 26px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.product-card .price { font-family: 'Fredoka', sans-serif; font-size: 1.5rem; color: var(--red-700); font-weight: 700; margin: 10px 0 16px; }
.product-card p { font-size: 0.92rem; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.step:last-child { margin-bottom: 0; }
.step .num {
  counter-increment: step;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flame), var(--red-600));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Fredoka', sans-serif;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.testimonial .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial .who .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream-100); color: var(--red-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: 'Fredoka', sans-serif;
}
.testimonial .who strong { display: block; font-size: 0.92rem; }
.testimonial .who span { font-size: 0.78rem; color: var(--ink-500); }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--red-950);
  color: white;
  padding: 56px 0;
}
.stats-bar .grid-4 { text-align: center; }
.stats-bar strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 2.5rem; color: var(--gold); font-weight: 700; }
.stats-bar span { color: #f3c9c0; font-size: 0.88rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--red-700), var(--red-950));
  color: white;
  border-radius: var(--radius);
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "🌶️";
  position: absolute;
  right: -20px;
  top: -30px;
  font-size: 180px;
  opacity: 0.12;
}
.cta-band h2 { color: white; margin-bottom: 6px; position: relative; }
.cta-band p { color: #ffe1d1; margin: 0; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: radial-gradient(circle at 80% 20%, var(--red-600), var(--red-950) 65%);
  color: white;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "🔥";
  position: absolute;
  left: -20px;
  bottom: -40px;
  font-size: 200px;
  opacity: 0.08;
}
.page-header h1 { color: white; margin-bottom: 10px; position: relative; }
.page-header p { color: #ffe1d1; max-width: 620px; margin: 0 auto; position: relative; }
.breadcrumb { font-size: 0.82rem; color: #f3c9c0; margin-bottom: 14px; position: relative; }
.breadcrumb a { color: #f3c9c0; }

/* ---------- Forms ---------- */
.form-card {
  background: white;
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 800; color: var(--red-800); font-family: 'Fredoka', sans-serif; }
.form-group .req { color: var(--red-600); }
input, select, textarea {
  padding: 13px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink-900);
  background: var(--cream-100);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--flame);
  background: white;
}
textarea { resize: vertical; min-height: 120px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--ink-700); }
.checkbox-row input { margin-top: 3px; width: auto; }
.form-note { font-size: 0.78rem; color: var(--ink-500); margin-top: 14px; }

/* ---------- Contact info blocks ---------- */
.contact-info-card {
  background: var(--red-950);
  color: white;
  border-radius: var(--radius);
  padding: 36px;
}
.contact-info-card h3 { color: white; }
.contact-info-card .item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info-card .item .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,194,51,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .item strong { display: block; font-size: 0.9rem; }
.contact-info-card .item span, .contact-info-card .item a { font-size: 0.86rem; color: #f3c9c0; }
.contact-info-card .hours-table { width: 100%; margin-top: 10px; font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 14px;}
.contact-info-card .hours-table tr td { padding: 4px 0; color: #f3c9c0; }
.contact-info-card .hours-table tr td:last-child { text-align: right; font-weight: 700; color: white; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--red-950);
  color: #e0a89f;
  padding: 60px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: white; font-size: 0.95rem; margin-bottom: 16px; font-family: 'Fredoka', sans-serif; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: #e0a89f; font-size: 0.88rem; }
.footer-grid a:hover { color: white; }
.footer-brand p { color: #c98a80; font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: #b06f66;
}
.footer-bottom a { color: #b06f66; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.badge-pill {
  background: var(--cream-100);
  color: var(--red-700);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  font-family: 'Fredoka', sans-serif;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  nav.main-nav { display: none; }
  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.3rem; }
  .hero { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
