:root {
  --forest: #1f3a1e;
  --forest-deep: #102312;
  --leaf: #5f7f30;
  --berry: #e36d1f;
  --berry-dark: #b94712;
  --gold: #c8983e;
  --cream: #fff7e8;
  --sand: #f4e2bf;
  --ink: #1b1b14;
  --muted: #6b6254;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(52, 32, 8, 0.16);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --page-top-inset: clamp(6px, 1vw, 10px);
  --section-space-y: clamp(36px, 4.5vw, 56px);
  --section-space-y-tight: clamp(24px, 3vw, 36px);
  --heading-gap: clamp(16px, 2.2vw, 24px);
  --input-radius: 16px;
  --layout-gutter: clamp(10px, 2.5vw, 18px);
  --card-pad-x: clamp(12px, 3vw, 22px);
  --card-pad-y: clamp(16px, 3.5vw, 28px);
  --site-header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background-color: #ffffff;
  background-image:
    radial-gradient(ellipse 70% 42% at 10% 0%, rgba(95, 127, 48, 0.06), transparent 55%),
    radial-gradient(ellipse 55% 38% at 100% 10%, rgba(227, 109, 31, 0.05), transparent 52%),
    radial-gradient(ellipse 60% 45% at 55% 110%, rgba(200, 152, 62, 0.05), transparent 60%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("assets/brand-logo.png") center / min(940px, 92vw) auto no-repeat;
  opacity: 0.03;
  filter: grayscale(1) saturate(0.2);
}

body::after {
  content: none;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
textarea,
select {
  border-radius: var(--input-radius);
}

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

.container {
  max-width: 1160px;
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--layout-gutter);
  box-sizing: border-box;
}

.section {
  padding: var(--section-space-y) 0;
}

main {
  padding-top: 0;
}

/* Tight gap under sticky header — same on every page */
main > .section:first-child,
main > article.section:first-child,
main > .section.hero:first-child {
  padding-top: var(--page-top-inset) !important;
}

/* Back-to-back sections: less top padding than first block */
main > .section + .section,
main > article.section + .section,
section.hero.section + .section {
  padding-top: var(--section-space-y-tight);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 234, 0.96);
  border-bottom: 1px solid rgba(200, 152, 62, 0.2);
}

.nav-shell {
  position: relative;
  min-height: var(--site-header-height, 86px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
}

.brand-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  padding: 4px;
  background: radial-gradient(circle at 32% 18%, #fffdf8 0%, #faf0dc 52%, #edd9a8 100%);
  border: 3px solid rgba(200, 152, 62, 0.68);
  box-shadow:
    0 10px 28px rgba(31, 58, 30, 0.22),
    0 0 0 4px rgba(255, 248, 234, 0.45);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  filter: contrast(1.04) saturate(1.08);
}

.brand strong {
  display: block;
  font-family: inherit;
  color: var(--forest-deep);
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand small {
  display: block;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.nav-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 0;
  min-width: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.nav-drawer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-mobile-links {
  display: none;
}

.nav-mobile-link {
  display: block;
  font-weight: 700;
  color: var(--forest-deep);
  text-decoration: none;
}

.nav-drawer-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-account-trigger-label {
  display: none;
}

.nav-contact-chips {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(31, 58, 30, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--forest-deep);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.nav-contact-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-contact-chip__icon--wa .vmw-wa-svg {
  width: 20px;
  height: 20px;
}

.nav-contact-chip--wa {
  color: #0d7a3f;
  border-color: rgba(37, 211, 102, 0.35);
  background: linear-gradient(180deg, rgba(220, 252, 231, 0.95), rgba(255, 255, 255, 0.92));
}

.nav-contact-chip--call:hover,
.nav-contact-chip--wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(52, 32, 8, 0.1);
}

.nav-contact-chip__label {
  white-space: nowrap;
}

@media (min-width: 981px) {
  .nav-contact-chip {
    width: 40px;
    min-height: 40px;
    padding: 0;
    display: inline-grid;
    place-items: center;
  }

  .nav-contact-chip__label {
    display: none;
  }

  .nav-contact-chip--wa {
    color: #0d7a3f;
  }
}

.nav-cart-icon--desktop {
  display: inline-flex;
}

.nav-primary {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(14px, 2.2vw, 32px);
  margin-right: clamp(12px, 2vw, 28px);
  color: #473b2b;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-primary a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-primary a:hover {
  color: var(--berry-dark);
}

.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--berry), var(--gold));
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-primary a:hover::after {
  width: 100%;
}

.nav-primary a[aria-current="page"],
.nav-primary-link.is-active {
  color: var(--berry-dark);
}

.nav-primary a[aria-current="page"]::after,
.nav-primary-link.is-active::after {
  width: 100%;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 58, 30, 0.18);
}

.nav-mobile-bar {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, #f07830 0%, #e36d1f 42%, #c45a12 100%);
  box-shadow:
    0 8px 20px rgba(227, 109, 31, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  cursor: pointer;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--cream);
  -webkit-tap-highlight-color: transparent;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 198;
  background: rgba(31, 58, 30, 0.45);
  backdrop-filter: blur(2px);
}

.nav-backdrop.is-visible {
  display: block;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  margin: 0;
  border-radius: 2px;
  background: currentColor;
  flex-shrink: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
  pointer-events: none;
}

.nav-toggle.is-open {
  background: linear-gradient(145deg, #2a5c46 0%, #1f3a1e 55%, #163828 100%);
  box-shadow:
    0 8px 22px rgba(31, 58, 30, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: start;
  overflow: hidden;
}

section.hero.section {
  padding-top: var(--page-top-inset);
  padding-bottom: var(--section-space-y-tight);
}

main > .section:first-child .section-heading,
main > .section:first-child .page-header,
main > .section:first-child .hero-copy,
main > article.section:first-child .page-header {
  margin-top: 0;
  padding-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 1;
}

.hero::before,
.hero::after {
  content: none;
}

.hero::before {
  background: none;
}

.hero::after {
  background: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 42px);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--berry-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

/* Typography: use the same clean menu-style font everywhere */
h1,
h2 {
  font-family: inherit;
  font-optical-sizing: auto;
  color: var(--forest-deep);
  letter-spacing: -0.02em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.02;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  color: var(--forest-deep);
  font-size: 22px;
}

.hero-copy p,
.section-copy p,
.section-heading p,
.product-panel p,
.contact-info p,
.order-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-copy h1 {
  margin-bottom: clamp(14px, 2vw, 20px);
}

.hero-copy p {
  max-width: 690px;
}

.hero-actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-actions.centered,
.order-actions.centered {
  justify-content: center;
}

.hero-actions.centered .btn,
.order-actions.centered .btn {
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--berry), var(--berry-dark));
  box-shadow: 0 16px 32px rgba(179, 71, 18, 0.26);
}

.btn-info {
  color: #0b2a4a;
  background: linear-gradient(135deg, #c9f7dd, #7ee2ad);
  border-color: rgba(11, 42, 74, 0.16);
  box-shadow: 0 14px 30px rgba(22, 160, 103, 0.18);
}

.btn-info:hover {
  box-shadow: 0 18px 36px rgba(22, 160, 103, 0.24);
}

.btn-secondary,
.btn-outline {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 58, 30, 0.18);
}

.btn-outline {
  background: transparent;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.shop-product-details {
  padding-top: 0;
}

.shop-product-details__panel h2 {
  margin-bottom: 12px;
}

.shop-product-details__text {
  margin: 0;
  line-height: 1.75;
  max-width: 920px;
}

.shop-product-details__trust {
  margin-top: 14px;
}

.shop-product-details__trust strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-deep);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.3;
}

.trust-row div {
  padding: 18px 16px;
  border: 1px solid rgba(200, 152, 62, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(52, 32, 8, 0.08);
}

.trust-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-deep);
  font-family: inherit;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.3;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(200, 152, 62, 0.28);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card img {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  right: 8px;
  bottom: 38px;
  min-width: 160px;
  padding: 16px 18px;
  color: var(--cream);
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px 0 0 20px;
  box-shadow: 0 14px 34px rgba(16, 35, 18, 0.28);
}

.floating-badge span {
  display: block;
  color: #ffd289;
  font-weight: 800;
}

.brand-strip {
  padding: 28px 0;
  background: var(--forest-deep);
}

.brand-strip img {
  width: 100%;
  max-height: 260px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .two-column {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  }

  .two-column.reverse {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  }
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  color: #3c3428;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(200, 152, 62, 0.18);
  border-radius: var(--radius-sm);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
}

.product-panel {
  padding: 34px;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.product-panel h3 {
  color: var(--cream);
  font-family: inherit;
  font-size: 34px;
}

.product-panel p {
  color: rgba(255, 247, 232, 0.84);
}

.panel-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffd289;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.notice {
  margin-top: 24px;
  padding: 18px;
  color: rgba(255, 247, 232, 0.88);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  line-height: 1.7;
}

.benefits-section {
  background: transparent;
}

.section-heading {
  max-width: 780px;
  margin: 0 0 var(--heading-gap);
}

.section-heading h1 {
  margin-bottom: 10px;
}

.page-header {
  margin: 0 0 var(--heading-gap);
}

.page-header .eyebrow {
  margin-bottom: 6px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 20px;
}

.cards-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  margin-inline: 0;
}

.section-heading--left,
.section-heading--left .muted {
  text-align: left;
}

.benefits-section .section-heading {
  max-width: 720px;
}

.benefit-card {
  min-height: 220px;
  padding: var(--card-pad-y) var(--card-pad-x);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(200, 152, 62, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(52, 32, 8, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(52, 32, 8, 0.14);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  color: var(--cream);
  background: var(--berry);
  border-radius: 16px;
  font-weight: 900;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.7;
}

.usage-section {
  padding-top: 30px;
  background: transparent;
}

.usage-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(200, 152, 62, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.usage-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.usage-grid div {
  min-height: 160px;
  padding: var(--card-pad-y) var(--card-pad-x);
  border: 1px solid rgba(31, 58, 30, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(52, 32, 8, 0.08);
}

.usage-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 18px;
}

.usage-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.quality-section {
  background: var(--forest-deep);
}

.quality-section h2,
.quality-section h3 {
  color: var(--cream);
}

.quality-section .section-copy p {
  color: rgba(255, 247, 232, 0.75);
}

.quality-image {
  padding: 18px;
  border: 1px solid rgba(255, 210, 137, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.quality-image img {
  border-radius: 24px;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.timeline div {
  position: relative;
  padding-left: 34px;
}

.timeline div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(200, 152, 62, 0.12);
}

.timeline strong {
  display: block;
  color: #ffd289;
  margin-bottom: 6px;
}

.timeline span {
  color: rgba(255, 247, 232, 0.74);
  line-height: 1.6;
}

.order-section {
  padding: 70px 0;
}

.order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  color: var(--cream);
  background: linear-gradient(135deg, rgba(227, 109, 31, 0.95), rgba(179, 71, 18, 0.9));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.order-card h2,
.order-card p,
.order-card .eyebrow {
  color: var(--cream);
}

.order-card .eyebrow::before {
  background: var(--cream);
}

.order-card p {
  margin-bottom: 0;
  opacity: 0.9;
}

.order-card .btn-outline {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.55);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: start;
}

@media (min-width: 900px) {
  .usage-card {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.78fr);
  }
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a {
  padding: 18px;
  border: 1px solid rgba(200, 152, 62, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-list a:hover {
  transform: translateX(4px);
  border-color: rgba(227, 109, 31, 0.5);
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
}

.contact-list span {
  color: var(--muted);
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(200, 152, 62, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--forest-deep);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  border: 1px solid rgba(31, 58, 30, 0.16);
  border-radius: var(--input-radius);
  background: #fffaf0;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 4px rgba(227, 109, 31, 0.12);
}

.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, #28d366, #128c4a);
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(29, 168, 81, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(40, 211, 102, 0.5);
  border-radius: 50%;
  animation: whatsappPulse 1.8s ease-out infinite;
}

.whatsapp-float.is-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 44px rgba(29, 168, 81, 0.44);
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 40px rgba(29, 168, 81, 0.4);
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
}

.whatsapp-icon .vmw-wa-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-tooltip {
  position: absolute;
  right: 62px;
  bottom: 5px;
  width: max-content;
  max-width: 230px;
  padding: 12px 16px;
  color: var(--forest-deep);
  background: var(--white);
  border: 1px solid rgba(31, 58, 30, 0.12);
  border-radius: 16px 16px 4px 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 14px 34px rgba(16, 35, 18, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 15px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-right: 1px solid rgba(31, 58, 30, 0.12);
  border-bottom: 1px solid rgba(31, 58, 30, 0.12);
  transform: rotate(-45deg);
}

.whatsapp-float.is-visible .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.78;
    transform: scale(0.88);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.footer {
  color: #e8edf2;
  position: relative;
  background:
    radial-gradient(ellipse 80% 120% at 50% -20%, rgba(99, 102, 241, 0.12), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(16, 185, 129, 0.08), transparent 40%),
    linear-gradient(180deg, #0b1220 0%, #111827 48%, #0f172a 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 -24px 48px rgba(2, 6, 23, 0.35);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 22px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer p {
  margin: 0;
  line-height: 1.45;
}

.footer-nav {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
}

.footer-nav a,
.footer-nav__policy {
  color: #f1f5f9;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav__policy:hover {
  color: #fff;
}

.footer-policy {
  margin: 0;
}

.footer-line {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  text-align: center;
}

.footer-line--links {
  flex-wrap: wrap;
  gap: 0;
}

.footer-line--links .footer-nav a:not(:last-child)::after,
.footer-line--links .footer-nav a + .footer-policy::before {
  content: none;
}

.footer-line--fssai-social {
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.footer-fssai,
.footer-tagline,
.footer-copy {
  margin: 0;
}

.footer-fssai {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  line-height: 1;
  color: #cbd5e1;
  white-space: nowrap;
}

.footer-fssai strong {
  font-weight: 600;
  color: #f8fafc;
}

.footer-tagline {
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.45;
  max-width: 920px;
}

.footer-copy {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1;
  padding-bottom: 2px;
}

.footer-nav__policy {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
}

.footer-nav__policy:hover {
  color: #fff;
}

.footer-nav__policy-icon {
  display: inline-flex;
  opacity: 0.9;
}

.footer-social {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}

.footer-social__link {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.footer-social__link svg {
  width: 15px;
  height: 15px;
}

.footer-social__link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(148, 163, 184, 0.45);
  color: #fff;
}

@media (min-width: 900px) {
  .footer-inner {
    padding: 24px 0 12px;
    gap: 14px;
  }

  .footer-line {
    flex-wrap: nowrap;
  }

  .footer-line--links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .footer-line--links .footer-nav {
    display: inline-flex;
    align-items: center;
    gap: 0;
  }

  .footer-line--links .footer-nav a,
  .footer-line--links .footer-nav__policy {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    line-height: 1;
  }

  .footer-line--links .footer-nav a:not(:last-child) {
    border-right: 1px solid rgba(148, 163, 184, 0.22);
  }

  .footer-line--links .footer-policy {
    border-left: 1px solid rgba(148, 163, 184, 0.22);
    padding-left: 14px;
    margin-left: 0;
  }

  .footer-line--fssai-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: auto;
    max-width: 100%;
  }

  .footer-fssai {
    height: 32px;
    align-items: center;
  }

  .footer-social {
    height: 32px;
    align-items: center;
  }

  .footer-tagline,
  .footer-copy {
    line-height: 1.35;
    white-space: nowrap;
  }

  .footer-tagline {
    font-size: 0.88rem;
  }
}

.policy-overlay {
  position: fixed;
  inset: 0;
  z-index: 1190;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
}

.policy-overlay[hidden] {
  display: none !important;
}

.policy-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 35, 18, 0.55);
  backdrop-filter: blur(4px);
}

.policy-overlay__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(90vh, 640px);
  overflow: auto;
  padding-top: 44px !important;
}

.policy-overlay__body {
  margin-bottom: 18px;
  line-height: 1.65;
}

.policy-steps {
  margin: 12px 0 16px;
  padding-left: 1.25rem;
}

.policy-steps li {
  margin-bottom: 10px;
}

body.policy-modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .two-column,
  .two-column.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usage-card {
    grid-template-columns: 1fr;
  }

  .order-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Phone layout: see responsive.css */
