/* =========================================================
   Ghar ka Dhokala — Design System
   ========================================================= */

:root {
  --turmeric: #e4b02a;
  --turmeric-deep: #c99412;
  --saffron: #e07a28;
  --terracotta: #c24f2a;
  --espresso: #2a1810;
  --espresso-soft: #4a3228;
  --cream: #fbf6ee;
  --cream-2: #f3ebe0;
  --cream-3: #e8ddd0;
  --coriander: #3f6b3a;
  --coriander-soft: #5a8a52;
  --white: #fffdf9;
  --text: #2a1810;
  --muted: #6b5548;
  --line: rgba(42, 24, 16, 0.1);
  --shadow: 0 16px 48px rgba(42, 24, 16, 0.1);
  --shadow-sm: 0 8px 24px rgba(42, 24, 16, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 78px;
  --font: "Nunito", system-ui, sans-serif;
  --font-display: "Outfit", "Nunito", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(228, 176, 42, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(194, 79, 42, 0.08), transparent 50%),
    var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll,
body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.7), rgba(243, 235, 224, 0.55));
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section__eyebrow::before,
.section__eyebrow::after {
  content: "";
  width: 18px;
  height: 18px;
  background:
    radial-gradient(circle at center, var(--turmeric) 2px, transparent 2.5px),
    conic-gradient(from 45deg, transparent 0 20%, var(--saffron) 0 25%, transparent 0 45%, var(--coriander-soft) 0 50%, transparent 0);
  border-radius: 50%;
  opacity: 0.85;
}

.section__title {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  max-width: 16ch;
}

.section__lead {
  color: var(--muted);
  max-width: 42ch;
  font-size: 1.05rem;
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.ornament {
  display: inline-block;
  width: 28px;
  height: 10px;
  background:
    radial-gradient(circle at 5px 5px, var(--turmeric) 2.5px, transparent 3px),
    radial-gradient(circle at 14px 5px, var(--terracotta) 2px, transparent 2.5px),
    radial-gradient(circle at 23px 5px, var(--coriander) 2.5px, transparent 3px);
  vertical-align: middle;
  opacity: 0.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, var(--saffron), var(--terracotta));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(194, 79, 42, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 14px 32px rgba(194, 79, 42, 0.36);
}

.btn--secondary {
  background: var(--white);
  border-color: rgba(42, 24, 16, 0.14);
  color: var(--espresso);
}

.btn--secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 253, 249, 0.45);
  color: var(--white);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  min-height: 40px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(251, 246, 238, 0.86);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(42, 24, 16, 0.06);
  background: rgba(251, 246, 238, 0.95);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 2;
  flex-shrink: 0;
}

.logo__img {
  width: auto;
  height: 58px;
  display: block;
  object-fit: contain;
}

.logo--footer .logo__img {
  height: 96px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  padding: 0.55rem 0.7rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--espresso-soft);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(228, 176, 42, 0.16);
  color: var(--espresso);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.cart-pill {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s;
}

.cart-pill:hover {
  transform: translateY(-1px);
  border-color: var(--terracotta);
}

.cart-pill__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--white);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: clip;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.035em;
  color: var(--espresso);
  margin-bottom: 0.35rem;
}

.hero__brand span {
  display: inline-block;
  background: linear-gradient(120deg, var(--saffron), var(--terracotta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title {
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 700;
  color: var(--espresso-soft);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero__text {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38ch;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  position: relative;
}

.hero__frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  position: relative;
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: gentleZoom 14s var(--ease) infinite alternate;
}

.hero__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(42, 24, 16, 0.08);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: var(--shadow-sm);
  color: var(--espresso);
  animation: floatY 4.5s ease-in-out infinite;
}

.hero__deco {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1.5px dashed rgba(228, 176, 42, 0.55);
  top: -18px;
  right: -18px;
  pointer-events: none;
  animation: spinSlow 28s linear infinite;
}

.hero__deco::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(194, 79, 42, 0.25);
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(42, 24, 16, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-2);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.product-card__name {
  font-size: 1.05rem;
  margin: 0;
}

.product-card__desc {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  flex: 1;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.25rem 0 0.35rem;
}

.product-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--terracotta);
}

.qty {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty__btn {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
}

.qty__input,
.qty__value {
  width: 28px;
  text-align: center;
  border: 0;
  background: transparent;
  font-weight: 700;
  -moz-appearance: textfield;
}

.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty--sm .qty__btn {
  width: 28px;
  height: 28px;
}

/* ---------- Features / Steps ---------- */
.feature-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.feature-card,
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(42, 24, 16, 0.06);
  box-shadow: var(--shadow-sm);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(228, 176, 42, 0.22), rgba(194, 79, 42, 0.12));
  color: var(--terracotta);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.feature-card__icon svg,
.step-card svg {
  width: 30px;
  height: 30px;
}

.feature-card h3,
.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.feature-card p,
.step-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--turmeric-deep);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

/* ---------- Story ---------- */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.story__media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__content .section__title {
  max-width: 14ch;
}

/* ---------- Menu ---------- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.menu-tabs a {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.menu-tabs a:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.menu-category + .menu-category {
  margin-top: 2.75rem;
}

.menu-category__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.35rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 1rem;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.55s var(--ease);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(42, 24, 16, 0.72));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item--1,
.gallery-item--4 {
  /* taller feel via natural image ratios */
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid rgba(42, 24, 16, 0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.star {
  color: rgba(42, 24, 16, 0.18);
  font-size: 1.05rem;
}

.star--on {
  color: var(--turmeric-deep);
}

.review-card__text {
  margin: 0;
  flex: 1;
  font-size: 1rem;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.9rem;
}

.review-card__author span {
  color: var(--muted);
}

/* ---------- Instagram ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.ig-card {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.ig-card:hover img {
  transform: scale(1.07);
}

/* ---------- Offer ---------- */
.offer {
  margin: 0.5rem 0 0;
}

.offer__inner {
  border-radius: 28px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 253, 249, 0.18), transparent 35%),
    linear-gradient(120deg, #a63d1c, var(--terracotta) 40%, var(--saffron));
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offer__inner::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1.5px dashed rgba(255, 253, 249, 0.28);
  border-radius: 50%;
  right: -40px;
  bottom: -60px;
}

.offer__badge {
  display: inline-block;
  background: rgba(255, 253, 249, 0.18);
  border: 1px solid rgba(255, 253, 249, 0.28);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.offer__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.35rem;
  color: #fff;
}

.offer__text {
  margin: 0;
  opacity: 0.92;
  max-width: 36ch;
}

.offer__discount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1;
}

.offer__discount span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.4rem;
  font-weight: 700;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(42, 24, 16, 0.06);
  box-shadow: var(--shadow-sm);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
}

.contact-list strong {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.contact-list a:hover {
  color: var(--terracotta);
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: rgba(255, 253, 249, 0.88);
  padding: 3.5rem 0 1.75rem;
  margin-top: 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer .logo {
  margin-bottom: 0.75rem;
}

.footer__tagline,
.footer__about {
  color: rgba(255, 253, 249, 0.7);
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 253, 249, 0.75);
  font-size: 0.92rem;
}

.footer__contact a:hover {
  color: var(--turmeric);
}

.map-frame--footer {
  min-height: 180px;
  border-radius: 16px;
}

.footer__maps-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--turmeric);
}

.footer__maps-link:hover {
  text-decoration: underline;
}

.footer__title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.footer__links a:hover {
  color: var(--turmeric);
}

.social-row {
  display: flex;
  gap: 0.65rem;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 249, 0.2);
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.social-row a:hover {
  background: rgba(228, 176, 42, 0.18);
  border-color: var(--turmeric);
  color: var(--turmeric);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  padding-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 253, 249, 0.55);
  text-align: center;
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 24, 16, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 200;
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--cream);
  z-index: 210;
  transform: translateX(105%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(42, 24, 16, 0.18);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.cart-drawer__head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.cart-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.25rem 1.5rem;
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-line__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.88rem;
}

.cart-line__info span {
  color: var(--muted);
}

.cart-line__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  font-weight: 700;
}

.cart-line__remove {
  border: 0;
  background: none;
  color: var(--terracotta);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0;
}

.cart-summary {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 1rem 1.25rem 1.35rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.checkout-form {
  display: grid;
  gap: 0.7rem;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--cream);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--saffron);
}

.form-field.is-hidden {
  display: none;
}

.radio-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
}

.radio-pill:has(input:checked) {
  border-color: var(--terracotta);
  background: rgba(194, 79, 42, 0.08);
}

.cart-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

/* ---------- WhatsApp catalog price list ---------- */
.catalog-price-list {
  display: grid;
  gap: 1.75rem;
}

.catalog-group__title {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  color: var(--terracotta);
}

.catalog-rows {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.catalog-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 0.85rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(42, 24, 16, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  box-shadow: var(--shadow-sm);
}

.catalog-row img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
}

.catalog-row__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.catalog-row__info strong {
  font-size: 0.98rem;
}

.catalog-row__info span {
  color: var(--muted);
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.catalog-row__price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--terracotta);
  font-size: 1.05rem;
  white-space: nowrap;
}

.catalog-cta {
  margin-top: 2rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(42, 24, 16, 0.06);
}

.catalog-cta p {
  margin: 0;
  color: var(--muted);
  max-width: 40ch;
}

@media (max-width: 640px) {
  .catalog-row {
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "img info"
      "img price"
      "btn btn";
  }

  .catalog-row img {
    grid-area: img;
  }

  .catalog-row__info {
    grid-area: info;
  }

  .catalog-row__price {
    grid-area: price;
  }

  .catalog-row .btn {
    grid-area: btn;
    width: 100%;
  }
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(20px);
  background: var(--espresso);
  color: #fff;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
  z-index: 300;
  box-shadow: var(--shadow);
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Floating WhatsApp ---------- */
.fab-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s var(--ease);
}

.fab-wa:hover {
  transform: scale(1.06);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ---------- Animations ---------- */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes gentleZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hero__grid,
  .story__grid,
  .contact__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    columns: 2;
  }

  .offer__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(251, 246, 238, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions .btn--order-desktop {
    display: none;
  }

  .hero__brand {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .product-grid,
  .feature-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .ig-grid {
    columns: 1;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    columns: 1;
  }

  .hero__actions .btn,
  .header-actions .btn {
    min-height: 48px;
  }

  .btn--order-mobile {
    display: inline-flex !important;
  }
}

.btn--order-mobile {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
