/* ==========================================================================
   Karachi Paratha Roll — Global Stylesheet
   ========================================================================== */

:root {
  /* Brand palette */
  --color-red: #C0392B;
  --color-red-dark: #9c2c1f;
  --color-charcoal: #1a1a1a;
  --color-charcoal-soft: #232323;
  --color-gold: #D4A017;
  --color-gold-light: #e8b93a;
  --color-cream: #FFF8F0;

  --color-text: #2b2b2b;
  --color-muted: #6b6b6b;
  --color-line: #ece3d8;

  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;

  /* Typography */
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 10px 30px rgba(26, 26, 26, 0.10);
  --shadow-lg: 0 20px 50px rgba(26, 26, 26, 0.18);
  --header-h: 74px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------ Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; color: var(--color-charcoal); }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ------------------------------ Utilities ------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-red);
  background: rgba(192, 57, 43, .08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
}
.section-title .accent { color: var(--color-red); }
.section-sub {
  max-width: 620px;
  margin: 8px auto 0;
  color: var(--color-muted);
  font-size: 1.02rem;
}

/* ------------------------------ Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--color-red); color: #fff; box-shadow: 0 8px 20px rgba(192,57,43,.28); }
.btn--primary:hover { background: var(--color-red-dark); box-shadow: 0 12px 26px rgba(192,57,43,.36); }

.btn--gold { background: var(--color-gold); color: var(--color-charcoal); box-shadow: 0 8px 20px rgba(212,160,23,.30); }
.btn--gold:hover { background: var(--color-gold-light); }

.btn--whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.30); }
.btn--whatsapp:hover { background: var(--whatsapp-dark); }

.btn--ghost { background: transparent; color: var(--color-charcoal); border-color: rgba(26,26,26,.18); }
.btn--ghost:hover { border-color: var(--color-red); color: var(--color-red); }

.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ------------------------------ Header --------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, .85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-line);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--color-charcoal);
  color: var(--color-gold);
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text b {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .01em;
  color: var(--color-charcoal);
}
.brand__text span {
  font-size: .64rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--color-red);
  font-weight: 600;
  margin-top: 3px;
}

.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav__links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--color-charcoal);
  padding: 9px 15px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--color-red); }
.nav__links a.active { color: var(--color-red); background: rgba(192,57,43,.08); }

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

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--color-charcoal);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .3s;
}
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------ Hero ----------------------------------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--color-charcoal);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(192,57,43,.35), transparent 60%),
    linear-gradient(180deg, rgba(20,20,20,.55) 0%, rgba(20,20,20,.72) 55%, rgba(20,20,20,.92) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(70px, 12vw, 130px) 0 clamp(64px, 10vw, 110px);
  max-width: 760px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,.16);
  border: 1px solid rgba(212,160,23,.4);
  color: var(--color-gold-light);
  font-family: var(--font-head);
  font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-gold); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.02;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero h1 .flame { color: var(--color-gold); display: block; }
.hero__tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: rgba(255,255,255,.9);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 30px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero__stat b {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--color-gold);
}
.hero__stat span { font-size: .86rem; color: rgba(255,255,255,.75); }

/* Page banner (interior pages) */
.page-banner {
  position: relative;
  background: var(--color-charcoal);
  color: #fff;
  overflow: hidden;
}
.page-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,.62), rgba(20,20,20,.88)),
    radial-gradient(100% 80% at 80% 0%, rgba(192,57,43,.4), transparent 60%);
}
.page-banner__inner { position: relative; z-index: 2; padding: clamp(54px, 8vw, 86px) 0; }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.02em; }
.page-banner p { color: rgba(255,255,255,.82); max-width: 560px; font-size: 1.05rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--color-gold); }

/* ------------------------------ Feature strip -------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card__icon {
  width: 58px; height: 58px; margin: 0 auto 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(192,57,43,.12), rgba(212,160,23,.16));
  border-radius: 16px;
  color: var(--color-red);
}
.why-card__icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.why-card p { margin: 0; color: var(--color-muted); font-size: .92rem; }

/* ------------------------------ Deal cards ----------------------------- */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}
.deal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.deal-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.deal-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-charcoal);
}
.deal-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.deal-card:hover .deal-card__media img { transform: scale(1.06); }
.deal-card__price {
  position: absolute; top: 14px; right: 14px;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700; font-size: .95rem;
  padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(192,57,43,.4);
}
.deal-card__cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(26,26,26,.72);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 500; font-size: .72rem;
  letter-spacing: .04em;
  padding: 5px 11px; border-radius: 999px;
}
.deal-card__body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.deal-card__body h3 { font-size: 1.16rem; margin-bottom: 6px; }
.deal-card__desc { color: var(--color-muted); font-size: .9rem; margin: 0 0 18px; flex: 1; }
.deal-card__actions { display: flex; gap: 10px; }
.deal-card__actions .btn { flex: 1; padding: 11px 14px; font-size: .9rem; }
.deal-card__wa {
  flex: 0 0 auto !important;
  width: 46px; padding: 0 !important;
  aspect-ratio: 1;
}

/* Featured carousel */
.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 20px;
  scrollbar-width: thin;
}
.carousel .deal-card { scroll-snap-align: start; }
.carousel::-webkit-scrollbar { height: 8px; }
.carousel::-webkit-scrollbar-thumb { background: var(--color-line); border-radius: 8px; }

@media (min-width: 992px) {
  .featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .featured-grid .carousel { display: contents; }
}

/* ------------------------------ Filters -------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .92rem;
  padding: 9px 20px;
  border: 1.5px solid var(--color-line);
  background: #fff;
  color: var(--color-charcoal);
  border-radius: 999px;
  transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: var(--color-red); color: var(--color-red); }
.filter-btn.active {
  background: var(--color-charcoal);
  color: #fff;
  border-color: var(--color-charcoal);
}
.deal-card.is-hidden { display: none; }

/* ------------------------------ CTA band ------------------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--color-red), var(--color-red-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(38px, 6vw, 60px);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 90% 10%, rgba(212,160,23,.4), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 520px; margin: 0 auto 26px; }

/* ------------------------------ Product page --------------------------- */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product__media {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  max-width: 440px;
  margin-inline: auto;
  width: 100%;
}
/* Zoomable poster: shows the COMPLETE image (true poster ratio, no crop) */
.zoomable {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
  background: var(--color-charcoal);
  cursor: zoom-in;
}
.zoomable__img {
  width: 100%;
  height: auto;         /* natural ratio → the COMPLETE poster, never cropped */
  display: block;
}
.zoom-lens {
  position: absolute;
  top: 0; left: 0;
  width: 170px; height: 170px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4), inset 0 0 0 1px rgba(0, 0, 0, .15);
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0;
  transform: scale(.5);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
  z-index: 3;
}
.zoomable.is-zooming .zoom-lens { opacity: 1; transform: scale(1); }
.zoom-hint {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26, 26, 26, .74);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 500; font-size: .78rem;
  padding: 7px 14px; border-radius: 999px;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 3;
}
.zoom-hint svg { width: 14px; height: 14px; }
.zoomable.is-zooming .zoom-hint { opacity: 0; }

@media (hover: none), (pointer: coarse) {
  .zoom-lens { display: none; }
  .zoomable { cursor: pointer; }
}

/* Fullscreen lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(14, 14, 14, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox__img {
  max-width: min(92vw, 640px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  animation: lbIn .3s var(--ease);
}
@keyframes lbIn { from { transform: scale(.94); opacity: .3; } to { transform: none; opacity: 1; } }
.lightbox__close {
  position: absolute; top: 18px; right: 20px;
  width: 46px; height: 46px; border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .14);
  color: #fff; font-size: 1.7rem; line-height: 1;
  display: grid; place-items: center;
  transition: background .2s var(--ease), transform .3s var(--ease);
}
.lightbox__close:hover { background: var(--color-red); transform: rotate(90deg); }
.product__cat {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 12px;
}
.product h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.product__price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--color-charcoal);
  color: #fff;
  font-family: var(--font-head);
  padding: 12px 22px;
  border-radius: 14px;
  margin-bottom: 26px;
}
.product__price .cur { font-size: .9rem; color: var(--color-gold); font-weight: 600; }
.product__price .amt { font-size: 2rem; font-weight: 800; line-height: 1; }
.product__lead { color: var(--color-muted); font-size: 1.05rem; margin-bottom: 24px; }
.product__items {
  list-style: none;
  margin: 0 0 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.product__items li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  font-weight: 500;
}
.product__items li + li { border-top: 1px solid var(--color-line); }
.product__items li svg { width: 20px; height: 20px; color: var(--whatsapp); flex: 0 0 auto; }
.product__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.product__meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-size: .9rem; color: var(--color-muted);
  padding-top: 22px; border-top: 1px solid var(--color-line);
}
.product__meta div { display: flex; align-items: center; gap: 8px; }
.product__meta svg { width: 18px; height: 18px; color: var(--color-red); }

/* ------------------------------ About ---------------------------------- */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.about-lead { font-size: 1.15rem; color: var(--color-charcoal); font-weight: 500; }
.about-text p { color: var(--color-muted); margin-bottom: 16px; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-card {
  background: #fff; border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 28px;
}
.info-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; }
.info-card h3 svg { width: 22px; height: 22px; color: var(--color-red); }
.info-card p, .info-card li { color: var(--color-muted); }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--color-line); }
.hours-list li:last-child { border-bottom: none; }
.hours-list b { color: var(--color-charcoal); font-weight: 600; }
/* Footer sits on charcoal — make time values legible */
.site-footer .hours-list li { border-bottom-color: rgba(255,255,255,.12); }
.site-footer .hours-list b { color: var(--color-gold); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16/7;
  min-height: 300px;
  background: #efe7db;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 760px) { .map-embed { aspect-ratio: 4/3; } }

/* ------------------------------ Footer --------------------------------- */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,.72);
  padding: 62px 0 26px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer .brand__text b { color: #fff; }
.footer-about p { margin: 16px 0 20px; font-size: .94rem; max-width: 340px; }
.footer-col h4 {
  color: #fff; font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a, .footer-contact a { transition: color .2s; }
.footer-col a:hover, .footer-contact a:hover { color: var(--color-gold); }
.footer-contact div { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; font-size: .94rem; }
.footer-contact svg { width: 19px; height: 19px; color: var(--color-gold); flex: 0 0 auto; margin-top: 2px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  transition: background .25s, transform .25s;
}
.footer-social a:hover { background: var(--color-red); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
.footer-bottom {
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between;
  font-size: .84rem; color: rgba(255,255,255,.5);
}

/* ------------------------------ Floating WhatsApp ---------------------- */
.wa-float {
  position: fixed;
  right: 20px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes waPulse {
  0% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ------------------------------ Scroll reveal -------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; transform: none; }
  .wa-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------ Responsive ----------------------------- */
@media (max-width: 992px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .product { grid-template-columns: 1fr; gap: 30px; }
  .product__media { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid .carousel { display: grid; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--color-cream);
    padding: 14px 20px 22px;
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    visibility: hidden;
  }
  .nav.open .nav__links { transform: translateY(0); visibility: visible; }
  .nav__links a { padding: 13px 12px; font-size: 1.02rem; }
  .nav__toggle { display: flex; }
  .nav__cta .nav-order-text { display: none; }
  .nav__cta .btn { padding: 11px 16px; }
  .section { padding: 54px 0; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__stats { gap: 22px; }
}

@media (max-width: 420px) {
  .why-grid { grid-template-columns: 1fr; }
  .deal-grid { grid-template-columns: 1fr; }
}
