:root {
  --cream: oklch(97% 0.015 90);
  --leaf-dark: oklch(30% 0.05 145);
  --ink: oklch(28% 0.02 145);
  --ink-soft: oklch(35% 0.02 145);
  --ink-mute: oklch(45% 0.02 145);
  --heading: oklch(25% 0.05 145);
  --card-bg: oklch(99% 0.01 90);
  --card-border: oklch(90% 0.02 100);
  --btn-bg: oklch(40% 0.07 145);
  --btn-bg-hover: oklch(33% 0.07 145);
  --accent: oklch(60% 0.14 40); /* terracotta */
  --link: oklch(45% 0.1 145);
  --link-hover: oklch(38% 0.1 145);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

::selection { background: oklch(85% 0.05 145); }

body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  background: var(--cream);
  color: var(--ink);
}

a { color: var(--link); }
a:hover { color: var(--link-hover); }

.page {
  max-width: 560px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.06);
}

/* ---- Hero ---- */

.hero {
  padding: 28px 24px 24px;
  background: linear-gradient(180deg, oklch(93% 0.03 130) 0%, oklch(97% 0.015 90) 100%);
}

.site-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.site-header svg { flex-shrink: 0; }

.wordmark {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--leaf-dark);
}

.hero-title {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--heading);
}

.hero-intro {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 20px;
  color: var(--ink-soft);
}

.hero-quote {
  display: flex;
  gap: 14px;
  align-items: center;
  background: oklch(99% 0.01 90 / 0.6);
  border: 1px solid oklch(85% 0.03 130);
  border-radius: 14px;
  padding: 12px 14px;
}

.hero-quote img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
}

.hero-quote-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: oklch(38% 0.03 145);
  font-style: italic;
}

.hero-quote-name {
  display: block;
  font-style: normal;
  font-weight: 700;
  margin-top: 2px;
  color: var(--leaf-dark);
}

/* ---- Promo banner ---- */

.promo-banner {
  background: var(--accent);
  color: var(--card-bg);
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
}

.promo-code {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Products ---- */

.products {
  padding: 26px 20px 8px;
}

.section-title {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--heading);
}

.products .section-title { margin-bottom: 4px; }

.products-sub {
  font-size: 13px;
  margin: 0 0 14px;
  color: var(--ink-mute);
}

.bundle-callout {
  display: flex;
  align-items: center;
  gap: 8px;
  background: oklch(93% 0.03 130);
  border: 1px dashed oklch(55% 0.08 145);
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 18px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--leaf-dark);
}

.bundle-star { font-size: 15px; }

.product-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 18px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.product-image {
  width: 110px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4px 6px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  font-size: 9px;
  font-weight: 700;
  color: white;
  text-align: center;
  letter-spacing: 0.01em;
}

.product-body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.product-name {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  color: var(--heading);
}

.product-ingredients {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: oklch(50% 0.08 145);
}

.product-description {
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
  color: oklch(40% 0.02 145);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}

.price-now {
  font-size: 17px;
  font-weight: 800;
  color: var(--heading);
}

.price-mrp {
  font-size: 13px;
  color: oklch(55% 0.02 145);
  text-decoration: line-through;
}

.btn-add {
  margin-top: 4px;
  background: var(--btn-bg);
  color: var(--cream);
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 12px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  width: 100%;
}

.btn-add:hover {
  background: var(--btn-bg-hover);
}

/* ---- Qty stepper (swapped in for .btn-add once qty > 0) ---- */

.qty-stepper {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: oklch(94% 0.02 145);
  border-radius: 100px;
  padding: 4px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}

.qty-dec {
  background: var(--card-bg);
  color: var(--leaf-dark);
}

.qty-inc {
  background: var(--btn-bg);
  color: var(--card-bg);
}

.qty-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--heading);
}

/* ---- Sticky order bar ---- */

#order-bar-spacer { height: 96px; }

.order-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 560px;
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.1);
  padding: 12px 20px 16px;
  z-index: 50;
}

.order-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-bar-total {
  font-size: 15px;
  font-weight: 800;
  color: var(--heading);
}

.order-bar-bundle {
  font-size: 11px;
  font-weight: 700;
  color: oklch(50% 0.1 145);
  margin-top: 1px;
}

.btn-send {
  flex-shrink: 0;
  background: var(--btn-bg);
  color: var(--card-bg);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-send:hover {
  background: var(--btn-bg-hover);
  color: var(--card-bg);
}

/* Small phones: keep count + send button on one row inside the sticky bar */
@media (max-width: 380px) {
  .btn-send {
    font-size: 13px;
    padding: 12px 14px;
  }
  .order-bar {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ---- Testimonials ---- */

.testimonials {
  padding: 30px 20px;
  background: oklch(93% 0.025 120);
}

.testimonial-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px; /* snapped cards align with the section padding */
  padding-bottom: 4px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 14px;
  flex: 0 0 calc(33.333% - 7px);
  min-width: 210px; /* keeps quotes readable on phones; row scroll-snaps instead of squeezing */
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 12.5px;
  line-height: 1.5;
  color: oklch(32% 0.02 145);
  font-style: italic;
}

.testimonial-name {
  font-size: 11.5px;
  font-weight: 700;
  margin-top: 8px;
  color: oklch(45% 0.06 145);
}

.feedback-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--link);
  text-decoration: none;
}

/* ---- Made by hand ---- */

.made-by-hand {
  padding: 28px 20px;
}

.made-by-hand .section-title { margin-bottom: 12px; }

.made-photos {
  display: flex;
  gap: 10px;
}

.made-photos img {
  flex: 1;
  width: 0;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
}

.made-text {
  font-size: 13px;
  line-height: 1.5;
  margin: 12px 0 0;
  color: oklch(38% 0.02 145);
}

/* ---- How to order ---- */

.how-to-order {
  padding: 30px 20px 24px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text {
  font-size: 13.5px;
  line-height: 1.5;
  padding-top: 2px;
  color: var(--ink-soft);
}

.upi-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.upi-qr {
  width: 160px;
  height: 160px;
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
}

.upi-payee {
  font-size: 13px;
  font-weight: 700;
  color: var(--leaf-dark);
}

.upi-id {
  font-size: 12px;
  color: var(--ink-mute);
}

.btn-wa {
  display: block;
  text-align: center;
  margin-top: 18px;
  background: var(--btn-bg);
  color: var(--card-bg);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 12px;
  border-radius: 100px;
  text-decoration: none;
}

.btn-wa:hover {
  background: var(--btn-bg-hover);
  color: var(--card-bg);
}

.form-line {
  text-align: center;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--ink-mute);
}

.form-line a { font-weight: 700; }

/* ---- Footer ---- */

.site-footer {
  padding: 18px 24px 32px;
  text-align: center;
  border-top: 1px solid var(--card-border);
}

.footer-note {
  font-size: 11.5px;
  line-height: 1.6;
  color: oklch(50% 0.02 145);
}

.footer-brand {
  font-size: 11px;
  margin-top: 8px;
  color: oklch(55% 0.02 145);
}
