/* ============================================================
   Maniheal — Components (shared UI)
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  line-height: 1; text-align: center; white-space: nowrap;
  padding: 0.85em 1.5em; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.1em; height: 1.1em; }

.btn-primary { background: var(--saffron); color: var(--forest-dark); box-shadow: 0 6px 18px rgba(232,168,56,0.28); }
.btn-primary:hover { background: var(--saffron-dark); color: var(--forest-dark); box-shadow: 0 10px 24px rgba(232,168,56,0.36); }

.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest-2); color: #fff; }

.btn-whatsapp { background: #25D366; color: #073d1c; }
.btn-whatsapp:hover { background: #1ebe5a; color: #073d1c; }

.btn-outline { background: transparent; color: var(--forest); border-color: var(--line); }
.btn-outline:hover { border-color: var(--forest); color: var(--forest); background: var(--sage-light); }

.section-forest .btn-outline { color: #fff; border-color: rgba(255,255,255,0.35); }
.section-forest .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

.btn-ghost { background: transparent; color: var(--forest); padding-inline: 0.5em; }
.btn-ghost:hover { color: var(--saffron-dark); transform: none; }

.btn-sm { font-size: 0.85rem; padding: 0.6em 1.1em; }
.btn-lg { font-size: 1.05rem; padding: 1em 1.9em; }
.btn-block { display: flex; width: 100%; }

/* ---------- Badges / pills / tags ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-size: var(--fs-sm); font-weight: 500; color: var(--forest);
  background: var(--sage-light); border: 1px solid transparent;
  padding: 0.45em 0.95em; border-radius: var(--radius-pill);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
a.pill:hover { background: var(--forest); color: #fff; }

.badge {
  display: inline-flex; align-items: center; gap: 0.35em;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.03em;
  padding: 0.35em 0.7em; border-radius: 6px;
}
.badge-hsn { background: var(--sage-light); color: var(--forest-2); font-variant-numeric: tabular-nums; }
.badge-trust { background: rgba(27,67,50,0.06); color: var(--forest); }

.brand-tag {
  display: inline-block; font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--saffron-dark);
}

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

/* Product card */
.product-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card__media {
  position: relative; display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1; background: linear-gradient(140deg, var(--sage-light) 0%, var(--ivory) 100%);
  overflow: hidden;
}
.product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 1.1rem; mix-blend-mode: multiply; }
.product-card__mono {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: clamp(48px, 12vw, 84px); font-weight: 700;
  color: rgba(27,67,50,0.16); user-select: none;
}
.product-card__mono::after { content: '💊'; position: absolute; bottom: 12px; right: 14px; font-size: 20px; opacity: 0.32; }
.product-card__body { display: flex; flex-direction: column; gap: 0.35rem; padding: 1rem 1.1rem 1.15rem; flex: 1; }
.product-card__brand { min-height: 1em; }
.product-card__title { font-family: var(--font-head); font-size: 1.02rem; font-weight: 600; line-height: 1.25; color: var(--forest); }
.product-card__title a { color: inherit; }
.product-card__title a:hover { color: var(--saffron-dark); }
.product-card__meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.15rem; }
.product-card__foot { margin-top: auto; padding-top: 0.75rem; }

/* Category card */
.cat-card {
  display: flex; align-items: center; gap: 0.9rem; padding: 1.1rem 1.25rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sage); }
.cat-card__icon {
  flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--sage-light); color: var(--forest); border-radius: 10px;
}
.cat-card__icon svg { width: 24px; height: 24px; }
.cat-card__name { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--forest); line-height: 1.2; }
.cat-card__count { font-size: var(--fs-sm); color: var(--text-soft); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.auto-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--space-4); }

/* ---------- Feature (advantage) tiles ---------- */
.feature { display: flex; flex-direction: column; gap: 0.6rem; }
.feature__icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px;
  background: rgba(232,168,56,0.14); color: var(--saffron); margin-bottom: 0.25rem;
}
.section-forest .feature__icon { background: rgba(255,255,255,0.08); color: var(--saffron); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.15rem; }
.feature p { color: var(--text-soft); font-size: 0.95rem; }
.section-forest .feature p { color: rgba(255,255,255,0.78); }

/* ---------- Stat / trust strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.stat { text-align: center; padding: 0.5rem; }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.75rem); color: var(--forest); line-height: 1; }
.section-forest .stat__num { color: #fff; }
.stat__num .plus { color: var(--saffron); }
.stat__label { margin-top: 0.4rem; font-size: var(--fs-sm); color: var(--text-soft); letter-spacing: 0.02em; }
.section-forest .stat__label { color: rgba(255,255,255,0.75); }

/* ---------- Certifications ---------- */
.cert-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.cert-chip {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: var(--fs-sm); font-weight: 600; color: var(--forest);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 0.6em 1.15em; transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.cert-chip:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.cert-chip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }

/* ---------- Accordion (PDP details) ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; padding: 1.15rem 0.25rem; text-align: left;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--forest);
}
.accordion__btn:hover { color: var(--saffron-dark); }
.accordion__icon { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform var(--dur) var(--ease); }
.accordion__icon::before, .accordion__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: currentColor; border-radius: 2px;
}
.accordion__icon::before { width: 14px; height: 2px; }
.accordion__icon::after { width: 2px; height: 14px; transition: transform var(--dur) var(--ease); }
.accordion__btn[aria-expanded="true"] .accordion__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.accordion__panel { overflow: hidden; max-height: 0; transition: max-height var(--dur) var(--ease); }
.accordion__panel-inner { padding: 0 0.25rem 1.35rem; color: var(--text-soft); line-height: 1.75; }
.accordion__panel-inner p + p { margin-top: 0.75rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: var(--fs-sm); color: var(--text-soft); display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--forest); font-weight: 500; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--forest); color: #fff; padding-block: clamp(3rem, 2rem + 5vw, 5rem); position: relative; overflow: hidden; }
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 85% 20%, rgba(232,168,56,0.16), transparent 45%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: var(--fs-h1); }
.page-hero p { color: rgba(255,255,255,0.82); margin-top: 0.75rem; max-width: 620px; }
.page-hero .breadcrumb { margin-bottom: 1rem; color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb .current { color: var(--saffron); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
[data-stagger].is-visible > * { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label, .form-label { font-size: var(--fs-sm); font-weight: 600; color: var(--forest); }
.input, .field input, .field select, .field textarea,
.wpcf7 input:not([type=submit]), .wpcf7 select, .wpcf7 textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.input:focus, .field input:focus, .field select:focus, .field textarea:focus,
.wpcf7 input:not([type=submit]):focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
  outline: none; border-color: var(--forest-2); box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}
.field textarea, .wpcf7 textarea { min-height: 130px; resize: vertical; }

/* ---------- Toast/utility ---------- */
.to-top {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 900;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: var(--forest); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--forest-2); }
.to-top svg { width: 20px; height: 20px; }

/* floating whatsapp */
.wa-float {
  position: fixed; left: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 900;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform var(--dur) var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Empty state ---------- */
.empty-state { text-align: center; padding: var(--space-8) var(--space-4); max-width: 480px; margin-inline: auto; }
.empty-state svg { width: 56px; height: 56px; margin-inline: auto; color: var(--sage); margin-bottom: 1rem; }
.empty-state h3 { margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-soft); }

/* ============================================================
   HEADER / NAV / SEARCH / DRAWER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,0.96); backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header-bar { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; flex: 0 0 auto; }
.brand img { height: 40px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--forest); letter-spacing: -0.02em; }
.brand__tag { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--saffron-dark); font-weight: 600; margin-top: 2px; }

/* primary nav */
.primary-nav { margin-left: auto; }
.primary-nav > ul { display: flex; align-items: center; gap: 0.35rem; list-style: none; margin: 0; padding: 0; }
.primary-nav a { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.95rem; font-weight: 500; color: var(--ink); padding: 0.55rem 0.85rem; border-radius: 8px; }
.primary-nav > ul > li > a:hover, .primary-nav .current-menu-item > a, .primary-nav li.is-open > a { color: var(--forest); background: var(--sage-light); }
.primary-nav .caret { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.primary-nav li.is-open .caret { transform: rotate(180deg); }

/* mega dropdown */
.has-mega { position: static; }
.mega {
  position: absolute; left: 0; right: 0; top: calc(var(--header-h) - 1px);
  background: var(--white); border-top: 1px solid var(--line); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  z-index: var(--z-header);
}
.has-mega.is-open .mega, .mega:hover { opacity: 1; visibility: visible; transform: none; }
.mega__inner { display: grid; grid-template-columns: 1fr 1fr 0.9fr; gap: 2.5rem; padding: 2rem clamp(1rem,0.5rem+2vw,2rem); max-width: var(--container); margin-inline: auto; }
.mega__col h4 { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--saffron-dark); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line); }
.mega__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.15rem 1rem; }
.mega__list a { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; padding: 0.4rem 0.5rem; border-radius: 6px; font-size: 0.9rem; font-weight: 400; color: var(--ink); }
.mega__list a:hover { background: var(--sage-light); color: var(--forest); }
.mega__list .cnt { font-size: 0.72rem; color: var(--sage); font-variant-numeric: tabular-nums; }
.mega__promo { background: linear-gradient(150deg, var(--forest) 0%, var(--forest-dark) 100%); color: #fff; border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mega__promo h4 { color: var(--saffron); border: 0; padding: 0; }
.mega__promo p { font-size: 0.9rem; color: rgba(255,255,255,0.8); flex: 1; }
.mega__promo .btn { align-self: flex-start; }
.mega__promo-link { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 0.9rem; font-size: 0.82rem; font-weight: 600; color: var(--saffron); }
.mega__promo-link:hover { color: #fff; }
.mega__promo-link svg { width: 15px; height: 15px; }

/* header actions */
.header-actions { display: flex; align-items: center; gap: 0.4rem; flex: 0 0 auto; }
.icon-btn { width: 42px; height: 42px; display: grid; place-items: center; border: 0; background: none; color: var(--forest); border-radius: 10px; transition: background var(--dur) var(--ease); }
.icon-btn:hover { background: var(--sage-light); }
.icon-btn svg { width: 22px; height: 22px; }
.header-actions .btn { margin-left: 0.35rem; }
.header-cta-desktop { display: inline-flex; }

/* hamburger */
.hamburger { display: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--forest); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.hamburger span + span { margin-top: 5px; }
body.drawer-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.drawer-open .hamburger span:nth-child(2) { opacity: 0; }
body.drawer-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Search overlay ---- */
.search-overlay {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(15,43,31,0.55); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur);
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-panel {
  background: var(--white); max-width: 720px; margin: 8vh auto 0; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; transform: translateY(-16px);
  transition: transform var(--dur) var(--ease-out);
}
.search-overlay.is-open .search-panel { transform: none; }
.search-box { display: flex; align-items: center; gap: 0.75rem; padding: 1.15rem 1.35rem; border-bottom: 1px solid var(--line); }
.search-box svg { width: 24px; height: 24px; color: var(--sage); flex: 0 0 auto; }
.search-box input { flex: 1; border: 0; font-size: 1.15rem; font-family: var(--font-head); color: var(--forest); background: none; }
.search-box input:focus { outline: none; }
.search-box kbd { font-size: 0.7rem; font-family: var(--font-body); background: var(--sage-light); color: var(--forest-2); padding: 0.3em 0.55em; border-radius: 6px; }
.search-results { max-height: 56vh; overflow-y: auto; padding: 0.5rem; }
.search-results:empty { display: none; }
.search-hint { padding: 1.5rem; text-align: center; color: var(--text-soft); font-size: var(--fs-sm); }
.sr-item { display: flex; align-items: center; gap: 0.9rem; padding: 0.7rem 0.85rem; border-radius: 10px; }
.sr-item:hover, .sr-item.active { background: var(--sage-light); }
.sr-item__thumb { width: 46px; height: 46px; border-radius: 8px; background: var(--ivory); object-fit: contain; flex: 0 0 auto; border: 1px solid var(--line); }
.sr-item__name { font-weight: 600; color: var(--forest); font-size: 0.95rem; }
.sr-item__brand { font-size: var(--fs-xs); color: var(--saffron-dark); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- Mobile drawer ---- */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(15,43,31,0.5); z-index: var(--z-drawer); opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur); }
body.drawer-open .drawer-backdrop { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(360px, 88vw); z-index: calc(var(--z-drawer) + 1);
  background: var(--white); box-shadow: var(--shadow-lg); transform: translateX(100%);
  transition: transform var(--dur) var(--ease-out); display: flex; flex-direction: column;
}
body.drawer-open .drawer { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); }
.drawer__nav { padding: 0.5rem 0.75rem 2rem; overflow-y: auto; }
.drawer__nav ul { list-style: none; margin: 0; padding: 0; }
.drawer__nav > ul > li > a, .drawer__acc-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0.9rem 0.85rem; font-size: 1.05rem; font-weight: 500; color: var(--forest); background: none; border: 0; text-align: left; border-radius: 8px; }
.drawer__nav > ul > li > a:hover, .drawer__acc-btn:hover { background: var(--sage-light); }
.drawer__acc-btn .caret { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.drawer__acc-btn[aria-expanded="true"] .caret { transform: rotate(180deg); }
.drawer__sub { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.drawer__sub ul { padding-left: 0.5rem; }
.drawer__sub a { display: block; padding: 0.6rem 0.85rem; font-size: 0.92rem; color: var(--ink); }
.drawer__sub a:hover { color: var(--forest); }
.drawer__sub .sub-head { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--saffron-dark); padding: 0.6rem 0.85rem 0.2rem; font-weight: 600; }
.drawer__cta { margin-top: 1rem; padding: 0 0.85rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-dark); color: rgba(255,255,255,0.75); padding-top: var(--section-y); margin-top: var(--section-y); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: var(--space-7); }
.footer-brand .brand__name { color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.footer-col a:hover { color: var(--saffron); }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; margin-top: 1rem; max-width: 320px; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; line-height: 1.55; }
.footer-contact svg { width: 18px; height: 18px; color: var(--saffron); flex: 0 0 auto; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.8); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 9px; background: rgba(255,255,255,0.08); color: #fff; }
.footer-social a:hover { background: var(--saffron); color: var(--forest-dark); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center; justify-content: space-between; font-size: 0.82rem; }
.footer-bottom .cert-mini { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; color: rgba(255,255,255,0.6); }
