/* ===========================
   Grit & Grains — Global Styles
   =========================== */

:root {
  --cream: #FBF6EC;
  --cream-alt: #F3EAD6;
  --green-dark: #35521F;
  --green: #5B7F32;
  --green-light: #8FAE5D;
  --brown-dark: #3A2A1B;
  --brown: #7A4E24;
  --terracotta: #C1440E;
  --terracotta-dark: #9C3608;
  --gold: #E0A731;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(58, 42, 27, 0.12);
  --shadow-sm: 0 4px 14px rgba(58, 42, 27, 0.10);
  --radius: 18px;
  --radius-sm: 10px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: Georgia, "Times New Roman", "Segoe UI", serif;
  --container: 1160px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--green-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

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

section { padding: 72px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(193, 68, 14, 0.09);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.lead {
  font-size: 1.1rem;
  color: var(--brown);
  max-width: 620px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--terracotta-dark); }

.btn-secondary {
  background: transparent;
  border-color: var(--green-dark);
  color: var(--green-dark);
}
.btn-secondary:hover { background: var(--green-dark); color: var(--white); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover { background: #1DA851; }

.btn-upi {
  background: #5B2A86;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-upi:hover { background: #431f64; }

.checkout-note {
  font-size: 0.76rem;
  color: var(--brown);
  text-align: center;
  margin: 8px 0 0;
}

.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58, 42, 27, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--green-dark);
}
.brand img {
  height: 108px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}
.brand:hover img { transform: scale(1.05); }

@media (max-width: 480px) {
  .brand img { height: 76px; }
  .account-btn { padding: 8px 10px; font-size: 0.78rem; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  color: var(--brown-dark);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--terracotta); border-color: var(--terracotta); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.cart-btn,
.account-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--cream-alt);
  border: 1px solid rgba(58,42,27,0.12);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
  color: inherit;
}
.account-btn {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--brown-dark);
  white-space: nowrap;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--green-dark);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 18px;
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 40px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
}

.hero-tagline {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-pill {
  background: var(--white);
  border: 1px solid rgba(53,82,31,0.18);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art svg { width: 100%; max-width: 440px; filter: drop-shadow(var(--shadow)); }
.hero-art img { width: 100%; max-width: 400px; filter: drop-shadow(var(--shadow)); }

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide svg { width: 100%; max-width: 440px; filter: drop-shadow(var(--shadow)); }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--cream-alt);
  filter: drop-shadow(var(--shadow));
}

.hero-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--brown, #4a3222);
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-slide-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.hero-slide-prev { left: 10px; }
.hero-slide-next { right: 10px; }

/* ---------- Badges / feature strip ---------- */
.feature-strip {
  background: var(--green-dark);
  color: var(--cream);
  padding: 18px 0;
}
.feature-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-align: center;
}
.feature-strip span { white-space: nowrap; }

/* ---------- Story / About blocks ---------- */
.story {
  background: var(--white);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; }
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
@media (max-width: 760px) {
  .founder-grid { grid-template-columns: 1fr; }
}
.founder-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
}
.founder-card h4 { margin-bottom: 4px; color: var(--brown-dark); }
.founder-card span { color: var(--terracotta); font-weight: 700; font-size: 0.85rem; }

.founder-spotlight {
  display: flex;
  align-items: center;
  gap: 26px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  max-width: 520px;
}
.founder-spotlight .founder-avatar {
  width: 84px;
  height: 84px;
  font-size: 2.1rem;
  margin: 0;
  flex-shrink: 0;
}
.founder-spotlight h4 { margin-bottom: 2px; font-size: 1.3rem; }
.founder-spotlight span { color: var(--terracotta); font-weight: 700; font-size: 0.85rem; }
.founder-spotlight p { margin: 8px 0 0; color: var(--brown); font-size: 0.94rem; }
@media (max-width: 520px) {
  .founder-spotlight { flex-direction: column; text-align: center; }
}

/* ---------- Why We Exist narrative ---------- */
.narrative {
  background: var(--white);
  padding: 80px 0;
}
.narrative-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.narrative-wrap .eyebrow { margin-bottom: 18px; }
.narrative-wrap h2 { margin-bottom: 34px; }
.narrative-wrap p {
  font-size: 1.14rem;
  line-height: 1.85;
  color: var(--brown-dark);
  margin-bottom: 1.4em;
}
.narrative-wrap p.emphasis {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--green-dark);
  line-height: 1.6;
}
.narrative-signoff {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.narrative-signoff .founder-avatar { width: 52px; height: 52px; font-size: 1.4rem; margin: 0; }
.narrative-signoff div { text-align: left; }
.narrative-signoff strong { display: block; color: var(--green-dark); font-family: var(--font-head); font-size: 1.05rem; }
.narrative-signoff span { color: var(--brown); font-size: 0.85rem; }

/* ---------- Value grid ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--terracotta);
}
.value-card .icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }

/* ---------- Product grid / cards ---------- */
.section-alt { background: var(--cream-alt); }

.promo-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(120deg, var(--gold), var(--terracotta));
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 26px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.promo-banner p { margin: 0; font-weight: 700; font-size: 1.02rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.product-media {
  aspect-ratio: 4 / 3;
  background: var(--cream-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-media svg { width: 78%; }
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
}

.product-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-desc { color: var(--brown); font-size: 0.94rem; margin-bottom: 4px; }

.size-select {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 4px;
}
.size-option {
  border: 1.5px solid rgba(58,42,27,0.18);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  flex: 1;
  min-width: 78px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.size-option small { display: block; font-weight: 600; color: var(--brown); margin-top: 2px; }
.size-option.selected {
  border-color: var(--terracotta);
  background: rgba(193,68,14,0.08);
  color: var(--terracotta-dark);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 10px;
}
.price-display { font-size: 1.3rem; font-weight: 700; color: var(--brown-dark); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-card p.quote { font-style: italic; color: var(--brown-dark); }
.testimonial-name { font-weight: 700; color: var(--green-dark); font-size: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green-dark);
  color: var(--cream);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--green-light); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--green-dark);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(58,42,27,0.18);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--terracotta);
}

.contact-info-list { list-style: none; margin: 0; padding: 0; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(58,42,27,0.08);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-list strong { display: block; color: var(--brown-dark); }
.contact-info-list a:hover { color: var(--terracotta); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-dark);
  color: var(--cream-alt);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.footer-brand { display: flex; align-items: center; margin-bottom: 14px; }
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.footer-brand-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.footer-grid p { color: rgba(251,246,236,0.7); font-size: 0.92rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(251,246,236,0.8); font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold); }

.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(251,246,236,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.social-row a:hover { background: var(--terracotta); }

.footer-bottom {
  border-top: 1px solid rgba(251,246,236,0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(251,246,236,0.6);
}

/* ---------- Cart Page (full page, not a drawer) ---------- */
.cart-page-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .cart-page-grid { grid-template-columns: 1fr; }
}

.cart-items {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 8px 28px;
  margin-bottom: 32px;
}
.cart-empty { color: var(--brown); text-align: center; padding: 56px 0; font-size: 1.05rem; }

.cart-item {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(58,42,27,0.08);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-thumb {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--cream-alt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
}
.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 1.15rem; margin-bottom: 3px; }
.cart-item-info small { color: var(--brown); font-size: 0.92rem; }
.qty-controls { display: flex; align-items: center; gap: 14px; margin-top: 12px; }
.qty-controls button {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(58,42,27,0.2);
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.qty-controls button:hover { border-color: var(--terracotta); color: var(--terracotta); }
.qty-controls span { font-weight: 700; font-size: 1.05rem; min-width: 22px; text-align: center; }
.remove-item {
  background: none; border: none; color: var(--terracotta);
  font-size: 0.88rem; font-weight: 600; cursor: pointer; margin-top: 12px;
}

@media (max-width: 560px) {
  .cart-item { flex-wrap: wrap; }
  .cart-item-thumb { width: 68px; height: 68px; }
}

.cart-address {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 30px 22px;
}
.cart-address h4 { font-size: 1.15rem; margin-bottom: 4px; color: var(--green-dark); }
.cart-address .hint { font-size: 0.88rem; color: var(--brown); margin-bottom: 22px; }
.cart-address .form-field { margin-bottom: 18px; }
.address-subhead {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 22px 0 14px;
}
.address-subhead:first-of-type { margin-top: 4px; }
.optional {
  font-weight: 400;
  text-transform: none;
  color: var(--brown);
  opacity: 0.75;
}
.address-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .address-row { grid-template-columns: 1fr; }
}

.cart-summary {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  position: sticky;
  top: 100px;
}
.cart-summary h4 { margin-bottom: 20px; }

.coupon-box {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.coupon-box input {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(58,42,27,0.18);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--cream);
  text-transform: uppercase;
}
.coupon-box input:focus { outline: none; border-color: var(--terracotta); }

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.98rem;
  margin-bottom: 10px;
  color: var(--brown);
}
.summary-row.discount-row {
  color: var(--green-dark);
  font-weight: 700;
}
.summary-row.discount-row .remove-coupon {
  margin-left: 8px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--terracotta);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 22px;
  padding-top: 12px;
  border-top: 1px dashed rgba(58,42,27,0.15);
}

/* ---------- UPI QR Modal ---------- */
.upi-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58,42,27,0.55);
  z-index: 210;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.upi-overlay.open { opacity: 1; pointer-events: auto; }

.upi-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--white);
  border-radius: var(--radius);
  width: min(340px, 90vw);
  padding: 28px 26px 26px;
  z-index: 211;
  text-align: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.upi-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }

.account-signin-prompt {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 50px 30px;
  text-align: center;
}
.account-signin-prompt p { margin-bottom: 18px; color: var(--brown); }

.account-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .account-grid { grid-template-columns: 1fr; }
}

.account-static-value {
  margin: 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--cream-alt);
  font-weight: 600;
}

.account-orders { text-align: left; }
.account-orders-empty { color: var(--brown); font-size: 0.88rem; }
.account-order-row {
  border: 1px solid rgba(58,42,27,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 10px;
  text-align: left;
}
.account-order-row-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--brown);
  margin-bottom: 4px;
}
.account-order-row-top strong { color: var(--green-dark); font-size: 0.85rem; }
.account-order-row p { margin: 0 0 6px; font-size: 0.85rem; color: var(--brown-dark); }
.account-order-row-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
.account-order-status {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  background: rgba(193,68,14,0.09);
  padding: 3px 10px;
  border-radius: 999px;
}

.upi-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--brown);
}
.upi-modal h3 { margin-bottom: 4px; }
.upi-modal .upi-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.upi-qr-frame {
  display: inline-flex;
  padding: 14px;
  background: var(--white);
  border: 2px solid var(--cream-alt);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.upi-modal .hint {
  font-size: 0.82rem;
  color: var(--brown);
  margin-bottom: 20px;
}
.upi-modal .form-field { text-align: left; margin-bottom: 14px; }
.auth-resend {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: none;
  border: none;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 300;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: 56px 0 24px;
  text-align: center;
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: var(--shadow);
  z-index: 90;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }
