/* =========================================================
   GlowVibe — Health, Beauty & Wellness
   1.  Tokens
   2.  Base & reset
   3.  Typography
   4.  Layout helpers
   5.  Buttons
   6.  Header & navigation
   7.  Hero
   8.  About
   9.  Benefits
   10. Plans
   12. Contact
   13. Footer
   14. Floating WhatsApp
   15. Language picker
   16. Reveal animation
   17. Responsive
   18. Reduced motion & print
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Surface */
  --ivory:      #FBF9F4;
  --ivory-warm: #F7F3EA;
  --beige:      #F1ECE0;
  --sage:       #DCE7D5;
  --sage-deep:  #C4D8BA;

  /* Brand green, taken from the product label */
  --green:      #4A8B4E;
  --green-mid:  #3B7440;
  --green-deep: #1F4D2B;
  --green-ink:  #14351E;

  /* Punctuation only — never a large fill */
  --clay:       #C25A22;
  --star:       #E0A526;

  /* Text */
  --ink:        #253027;
  --ink-soft:   #57685B;
  --ink-faint:  #7E8C81;
  --on-dark:    #F6F4EE;

  --line:       #E3DED1;
  --line-soft:  #EDE8DC;

  /* Type */
  --serif: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --sans:  "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md:   1.1875rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  clamp(1.9rem, 3.4vw, 2.7rem);
  --fs-3xl:  clamp(2.4rem, 5.4vw, 4rem);

  /* Space & shape */
  --wrap:    1180px;
  --gutter:  clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(3rem, 6vw, 4.75rem);
  --r-sm:    6px;
  --r-md:    10px;
  --r-lg:    14px;
  --r-xl:    18px;

  --shadow-soft: 0 18px 46px -28px rgba(31, 77, 43, .42);
  --shadow-card: 0 26px 60px -34px rgba(31, 77, 43, .5);

  --header-h: 78px;
  --ease: cubic-bezier(.22, .68, .32, 1);

  --tick: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M1.6 6.3l2.9 2.9L10.4 3' fill='none' stroke='%23000' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ---------- 2. Base & reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

ul, ol { margin: 0; padding: 0; list-style: none; }

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--green-mid);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: .7rem 1.1rem;
  background: var(--green-deep);
  color: var(--on-dark);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- 3. Typography ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-optical-sizing: auto;
  color: var(--green-deep);
  margin: 0;
  line-height: 1.14;
  letter-spacing: -0.012em;
}

h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); line-height: 1.25; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: var(--fs-md);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
}

.section-head {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.section-head h2 { margin-bottom: .85rem; }

/* ---------- 4. Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

main > section { scroll-margin-top: calc(var(--header-h) + 12px); }

.about, .benefits, .plans, .contact, .usage, .products, .reviews, .transformations {
  padding-block: var(--section);
}

.benefits { background: #fff; }
.usage    { background: var(--ivory-warm); }
.reviews  { background: var(--ivory-warm); }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease),
              box-shadow .25s var(--ease);
}

.btn .wa { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

.btn-solid {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px -16px rgba(31, 77, 43, .8);
}
.btn-solid:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-solid:active { transform: translateY(0); }

.btn-outline {
  border-color: var(--green);
  color: var(--green-deep);
  background: transparent;
}
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

.btn-ghost {
  border-color: rgba(255, 255, 255, .62);
  color: #fff;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; color: var(--green-deep); border-color: #fff; transform: translateY(-2px); }

.btn-sm  { padding: .68rem 1.25rem; font-size: var(--fs-xs); }
.btn-lg  { padding: 1.05rem 2rem; font-size: var(--fs-base); }
.btn-block { display: flex; width: 100%; }

/* ---------- 6. Header & navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, .82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease),
              box-shadow .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(251, 249, 244, .95);
  box-shadow: 0 10px 30px -26px rgba(31, 77, 43, .55);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand img { width: 172px; height: auto; }

.nav { display: flex; align-items: center; gap: 2.4rem; }

.nav-list { display: flex; align-items: center; gap: 2rem; }

.nav-list a {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  padding-block: .35rem;
  transition: color .22s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-list a:hover { color: var(--green-deep); }
.nav-list a:hover::after,
.nav-list a.is-current::after { transform: scaleX(1); }
.nav-list a.is-current { color: var(--green-deep); font-weight: 600; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.8px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(86vh, 760px);
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 9vw, 6.5rem);
  background: var(--green-ink);
}

/* The mobile layout swaps in an art-directed <picture> for this image;
   display:contents keeps that wrapper from becoming a flex item itself,
   so `order` on .hero-img still controls its position directly. */
.hero picture { display: contents; }

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 62%;
  z-index: -2;
}

/* Directional veil: dense behind the words, clearing over the product */
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(96deg,
      rgba(16, 44, 25, .90) 0%,
      rgba(16, 44, 25, .80) 26%,
      rgba(16, 44, 25, .50) 50%,
      rgba(16, 44, 25, .16) 72%,
      rgba(16, 44, 25, .04) 100%),
    linear-gradient(to top, rgba(16, 44, 25, .34), rgba(16, 44, 25, 0) 45%);
}

.hero-inner { position: relative; }

.hero-copy { max-width: 39rem; color: #fff; }

.hero-title {
  font-size: var(--fs-3xl);
  font-weight: 400;
  color: #fff;
  line-height: 1.03;
  letter-spacing: -0.022em;
  max-width: 15ch;
  text-wrap: balance;
  margin-bottom: 1.35rem;
}

.hero-lede {
  font-size: clamp(1.0625rem, 1.6vw, var(--fs-md));
  line-height: 1.62;
  color: rgba(255, 255, 255, .9);
  max-width: 46ch;
  margin-bottom: 2.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 2.6rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .75rem;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 1rem .48rem .85rem;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(5px);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .015em;
  color: #fff;
}
.hero-badges li::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: none;
  background: var(--sage-deep);
  -webkit-mask: var(--tick) center / 10px no-repeat;
  mask: var(--tick) center / 10px no-repeat;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}

/* Page-load sequence — the one orchestrated motion moment */
.hero-title, .hero-lede, .hero-actions, .hero-badges { --d: 0ms; }
.hero-lede    { --d: 90ms; }
.hero-actions { --d: 180ms; }
.hero-badges  { --d: 270ms; }

.js .hero-title,
.js .hero-lede,
.js .hero-actions,
.js .hero-badges {
  opacity: 0;
  transform: translateY(14px);
}
.js .hero-ready .hero-title,
.js .hero-ready .hero-lede,
.js .hero-ready .hero-actions,
.js .hero-ready .hero-badges {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease) var(--d), transform .7s var(--ease) var(--d);
}

/* ---------- 8. About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-media { position: relative; }

.about-shape {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  right: -6%;
  top: -9%;
  background: var(--sage);
  border-radius: 50%;
  z-index: 0;
}

.about-main {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

.about-inset {
  position: absolute;
  z-index: 2;
  width: 41%;
  left: -8%;
  bottom: -10%;
  border-radius: var(--r-md);
  border: 7px solid var(--ivory);
  box-shadow: var(--shadow-soft);
}

.about-copy h1 { font-size: var(--fs-2xl); margin-bottom: 1.15rem; max-width: 18ch; }
.about-copy p { color: var(--ink-soft); }
.about-copy .lede { margin-bottom: 1.15rem; }

.note {
  margin-top: 1.9rem;
  padding: 1rem 1.2rem;
  border-left: 2.5px solid var(--sage-deep);
  background: var(--ivory-warm);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: var(--fs-sm);
  color: var(--ink-faint);
  line-height: 1.55;
}

/* ---------- 9. Benefits ---------- */
.benefits .section-head {
  margin-inline: auto;
  text-align: center;
}
.benefits .section-head .lede { margin-inline: auto; }

.benefit-compact {
  max-width: 42rem;
  margin-inline: auto;
  display: grid;
  gap: .9rem;
}
.benefit-compact li {
  position: relative;
  padding-left: 1.8rem;
  font-size: var(--fs-base);
  color: var(--ink);
  line-height: 1.5;
}
.benefit-compact li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .3em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sage);
}
.benefit-compact li::after {
  content: "";
  position: absolute;
  left: 3.5px;
  top: .5em;
  width: 9px;
  height: 9px;
  background: var(--green-mid);
  -webkit-mask: var(--tick) center / 9px no-repeat;
  mask: var(--tick) center / 9px no-repeat;
}

/* ---------- 10. Plans ---------- */
/* Pricing is the page's decision point, so it is the one block that
   centres itself rather than following the left-aligned rhythm. */
.plans .section-head {
  margin-inline: auto;
  text-align: center;
}
.plans .section-head .lede { margin-inline: auto; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: stretch;
  max-width: 880px;
  margin-inline: auto;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 3.5vw, 2.75rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--sage-deep);
}

.plan-best {
  background: linear-gradient(170deg, var(--sage) 0%, #fff 42%);
  border-color: var(--sage-deep);
  box-shadow: var(--shadow-soft);
}

.plan-flag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .01em;
}

.plan-name {
  font-size: var(--fs-xl);
  margin-bottom: .5rem;
}

.plan-price {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  margin-bottom: .55rem;
}
.plan-price .cur {
  font-size: .38em;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 0;
  margin-right: .35em;
  vertical-align: .42em;
}

.plan-sub {
  font-size: var(--fs-sm);
  color: var(--ink-faint);
  margin-bottom: 1.6rem;
}

.plan-features {
  display: grid;
  gap: .8rem;
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  border-top: 1px solid var(--line-soft);
}
.plan-features li {
  position: relative;
  padding-left: 1.7rem;
  font-size: var(--fs-sm);
  color: var(--ink);
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--sage);
}
.plan-features li::after {
  content: "";
  position: absolute;
  left: 3.2px;
  top: .62em;
  width: 9px;
  height: 9px;
  background: var(--green-mid);
  -webkit-mask: var(--tick) center / 9px no-repeat;
  mask: var(--tick) center / 9px no-repeat;
}

.plan .btn { margin-top: auto; }

.plan-foot {
  margin-top: 1.75rem;
  font-size: var(--fs-sm);
  color: var(--ink-faint);
  text-align: center;
}

/* ---------- 10b. Products ---------- */
.products .section-head {
  margin-inline: auto;
  text-align: center;
}
.products .section-head .lede { margin-inline: auto; }

.products-note {
  margin: 2rem auto 0;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: stretch;
  max-width: 940px;
  margin-inline: auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--sage-deep);
}

.product-best { border-color: var(--sage-deep); box-shadow: var(--shadow-soft); }

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3.6;
}
.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .4s var(--ease);
}
/* Second photo crossfades in on hover — a hint of the pack contents
   without needing a click. Touch devices just keep the main shot. */
.product-img-alt { opacity: 0; }
.product-card:hover .product-img-alt { opacity: 1; }
.product-card:hover .product-img-main { opacity: 0; }

.product-off {
  position: absolute;
  top: .9rem;
  left: .9rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .01em;
}

/* Sits at the opposite corner from .product-off so neither badge pushes
   the image down — both cards' photos stay top-aligned in the grid. */
.product-flag {
  position: absolute;
  top: .9rem;
  right: .9rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .01em;
}

.product-body {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.product-name { font-size: var(--fs-xl); margin-bottom: .8rem; }

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .25rem .9rem;
}
.product-price .price-new {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.35rem);
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.product-price .price-new .cur {
  font-size: .38em;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 0;
  margin-right: .35em;
  vertical-align: .42em;
}
.product-price .price-old {
  font-size: var(--fs-md);
  color: var(--ink-faint);
  text-decoration: line-through;
  text-decoration-color: var(--clay);
  text-decoration-thickness: 1.5px;
}
.product-price .price-old .cur {
  font-size: .8em;
  margin-right: .3em;
}

.price-save {
  display: inline-block;
  margin: .55rem 0 0;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: var(--sage);
  color: var(--green-deep);
  font-size: var(--fs-xs);
  font-weight: 700;
}

.product-body .btn.btn-block {
  direction: ltr;
  margin-top: 1.25rem;
  padding: .85rem 1.5rem;
  border-radius: var(--r-sm);
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.4;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.product-body .btn .cart { width: 1.15em; height: 1.15em; fill: none; flex: none; }

.product-foot {
  margin-top: 1.75rem;
  font-size: var(--fs-sm);
  color: var(--ink-faint);
  text-align: center;
}

/* ---------- 10c. Transformations ---------- */
.transformations { background: #fff; }
.transformations .section-head {
  margin-inline: auto;
  text-align: center;
}
.transformations .section-head .lede { margin-inline: auto; }

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1080px;
  margin-inline: auto;
  align-items: start;
}
.transformation-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: #fff;
}
.transformation-card img { display: block; width: 100%; height: auto; }

/* ---------- 10c. Reviews ---------- */
.reviews .section-head {
  margin-inline: auto;
  text-align: center;
}
.reviews .section-head .lede { margin-inline: auto; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 900px;
  margin-inline: auto;
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}

.review-stars {
  color: var(--star);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: .9rem;
}

.review-quote {
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.3rem;
}

.review-name {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: auto;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--green-deep);
}
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .6rem;
  border-radius: 999px;
  background: var(--sage);
  color: var(--green-deep);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .01em;
}

/* ---------- 10d. Usage ---------- */
.usage .section-head {
  margin-inline: auto;
  text-align: center;
}
.usage .section-head .lede { margin-inline: auto; }

.usage-card {
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}
.usage-card p {
  font-size: var(--fs-md);
  color: var(--ink-soft);
  line-height: 1.7;
  text-align: center;
}
.usage-card p + p { margin-top: 1rem; }

/* ---------- 12. Contact ---------- */
.contact { background: var(--ivory); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  padding-inline: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--sage);
  border-radius: var(--r-xl);
}

.contact-brand {
  font-family: var(--serif);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: .3rem;
}
.contact-tag {
  font-size: var(--fs-xs);
  color: var(--green-mid);
  letter-spacing: .08em;
  margin-bottom: 1.8rem;
}

.contact-copy h2 { margin-bottom: .9rem; max-width: 16ch; }
.contact-copy .lede { color: #46584A; margin-bottom: 1.6rem; }

.contact-number {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1.9rem;
  border-bottom: 2px solid transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.contact-number:hover { border-bottom-color: var(--green); color: var(--green-mid); }

.contact-media { margin: 0; }
.contact-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

/* ---------- 13. Footer ---------- */
.site-footer {
  background: var(--green-ink);
  color: rgba(246, 244, 238, .74);
  padding-top: clamp(2.75rem, 5vw, 3.75rem);
  font-size: var(--fs-sm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-logo {
  display: inline-block;
  padding: .75rem 1rem;
  background: var(--ivory);
  border-radius: var(--r-md);
  margin-bottom: 1.25rem;
}
.footer-logo img { width: 150px; height: auto; }

.footer-brand p { max-width: 34ch; line-height: 1.6; }

.footer-col h2 {
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: .01em;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { transition: color .22s var(--ease); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(246, 244, 238, .14);
  font-size: var(--fs-xs);
  color: rgba(246, 244, 238, .55);
}
.footer-bottom p { margin: 0; }

/* ---------- 14. Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(20, 53, 30, .6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.9);
  transition: opacity .3s var(--ease), transform .3s var(--ease),
              visibility .3s var(--ease), background-color .25s var(--ease);
}
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
.wa-float.is-visible { opacity: 1; visibility: visible; transform: none; }
.wa-float:hover { background: var(--green-mid); }

/* ---------- 15. Language picker ---------- */
/* Shown once, on a first visit, then remembered. Injected by script.js,
   so it never exists for people without JavaScript. */
.lang-pick {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(20, 53, 30, .55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lang-pick.is-open { opacity: 1; }

.lang-pick-panel {
  width: min(24rem, 100%);
  padding: clamp(1.75rem, 4vw, 2.4rem);
  background: var(--ivory);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  transform: translateY(10px) scale(.98);
  transition: transform .3s var(--ease);
}
.lang-pick.is-open .lang-pick-panel { transform: none; }

.lang-pick-title {
  font-family: var(--serif);
  font-size: var(--fs-lg);
  color: var(--green-deep);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.lang-pick-actions { display: grid; gap: .75rem; }

/* The Urdu label has to render on the English page too, which does not
   load the Urdu webfonts — hence the system fallbacks. */
.lang-pick-actions [lang="ur"] {
  font-family: "Noto Naskh Arabic", "Segoe UI", "Jameel Noori Nastaleeq", sans-serif;
}

body.has-dialog { overflow: hidden; }

/* ---------- 16. Reveal animation ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

/* ---------- 17. Responsive ---------- */
@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; margin-inline: auto; }
  .about-copy h1 { max-width: none; }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }

  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -30px rgba(31, 77, 43, .6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .28s var(--ease), transform .28s var(--ease),
                visibility .28s var(--ease);
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a {
    display: block;
    padding: .95rem .25rem;
    font-size: var(--fs-base);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-list a::after { display: none; }

  .nav-cta { margin-top: 1.25rem; align-self: flex-start; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-media { order: -1; max-width: 420px; margin-inline: auto; }
  .contact-copy h2 { max-width: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  /* Shorter, tighter hero: the photo stays as a full-bleed background
     behind the veil (like desktop), and the lede/CTAs are dropped so the
     section doesn't run tall on a phone. */
  .hero {
    min-height: 0;
    padding-block: clamp(3rem, 15vw, 4.5rem);
  }
  .hero-img { object-position: 50% 38%; }
  .hero-veil { background: rgba(16, 44, 25, .7); }
  .hero-title { max-width: none; }
  .hero-lede,
  .hero-actions { display: none; }
  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6rem;
    margin-top: .3rem;
  }
  .hero-badges li { justify-content: center; }
  .plan-grid { grid-template-columns: 1fr; max-width: 460px; }
  .review-grid { grid-template-columns: 1fr; max-width: 460px; gap: 1.25rem; }
  .transformation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 460px; gap: .9rem; }

  /* Two columns even on a phone — the card's own type scale shrinks to
     suit a ~160px column rather than dropping to a single stacked card. */
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; max-width: 460px; }
  .product-flag { top: .6rem; right: .6rem; padding: .25rem .55rem; font-size: .68rem; }
  .product-off { top: .6rem; left: .6rem; padding: .25rem .55rem; font-size: .68rem; }
  .product-body { padding: 1rem .85rem; }
  .product-name { font-size: 1.05rem; margin-bottom: .55rem; }
  .product-price { gap: .15rem .4rem; }
  .product-price .price-new { font-size: 1.4rem; }
  .product-price .price-old { font-size: .8rem; }
  .price-save { font-size: .68rem; padding: .25rem .55rem; margin: .45rem 0 1rem; }
  .product-body .btn.btn-block { margin-top: .85rem; padding: .7rem .9rem; font-size: .78rem; gap: .35rem; }
  .product-body .btn .cart { width: 1em; height: 1em; }
  .about-inset { width: 38%; left: -4%; }
}

@media (max-width: 520px) {
  .brand img { width: 138px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-shape { display: none; }
  .about-inset { display: none; }
  .contact-grid { border-radius: var(--r-lg); }
}

/* ---------- 18. Reduced motion & print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal,
  .js .hero-title, .js .hero-lede,
  .js .hero-actions, .js .hero-badges {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media print {
  .site-header, .wa-float, .hero-veil { display: none !important; }
  body { background: #fff; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
