*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #0e280f;
  --green-mid: #285009;
  --green-accent: #9dab49;
  --green-light: #e8f5e9;
  --orange: #f4793b;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-light: #777;
  --white: #ffffff;
  --bg: #f9fbf7;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

.mobile {
  display: none;
}

/* ══════════════════════════════════
     HOME HERO — YOUR DAILY MARKET. REIMAGINED.
  ══════════════════════════════════ */

.hh {
  background: var(--white);
  padding: 40px 64px 0;
}

/* ── Inner 2-col grid ── */
.hh-inner {
  display: grid;
  grid-template-columns: .70fr 1.30fr;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
}

/* ══════════════════════════════════
   LEFT COLUMN
  ══════════════════════════════════ */

.hh-left {
  /* padding-right: 32px; */
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Badge pill ── */
.hh-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fefffd;
  border: 1px solid #e7ede2;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--green-dark);
  width: fit-content;
}

.hh-badge-icon-wrap {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hh-badge-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hh-badge-sep {
  color: #b8c8ae;
  font-weight: 400;
}

/* ── Heading ── */
.hh-heading {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.08;
  color: var(--green-dark);
  margin: 0;
}

.hh-heading span {
  color: var(--green-mid);
}

/* ── Sub text ── */
.hh-sub {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 380px;
}

/* ── CTA Buttons ── */
.hh-btns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 14px 14px 28px;
  border-radius: 999px;
}

.hh-btn-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hh-btn-arrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.hh-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 13px 22px 13px 14px;
  border-radius: 999px;
  border: 1.5px solid #d0d8ca;
}

.hh-btn-play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #d0d8ca;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hh-btn-play img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* ── Stats pill ── */
.hh-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* background: #f4f7f1;
  border: 1px solid #e0e9d8; */
  border-radius: 18px;
  padding: 18px 20px;
  gap: 0;
}

.hh-stat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 14px;
  /* border-right: 1px solid #d8e4ce; */
}

.hh-stat:first-child {
  padding-left: 4px;
}

.hh-stat:last-child {
  border-right: none;
}

.hh-stat-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #cddbc2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hh-stat-icon-wrap img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hh-stat-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hh-stat-text strong {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
}

.hh-stat-text span {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.4;
}

/* ══════════════════════════════════
   RIGHT COLUMN — single hero image
  ══════════════════════════════════ */

.hh-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hh-hero-img-wrap {
  width: 100%;
}

.hh-hero-img-wrap img {
  width: 100%;
  display: block;
}

/* ══════════════════════════════════
   BOTTOM CATEGORY BAR
  ══════════════════════════════════ */

.hh-cat-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  align-items: center;
  gap: 0;
  background: #f4f7f1;
  /* border-top: 1px solid #e0e9d8; */
}

.hh-cat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 10px;
  border-right: 1px solid #e0e9d8;
}

.hh-cat-icon-wrap {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--green-mid);
}

.hh-cat-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hh-cat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hh-cat-text strong {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-dark);
}

.hh-cat-text span {
  font-size: 10px;
  font-weight: 400;
  color: var(--green-dark);
}

/* Dark CTA card at the right end of the bar */
.hh-cat-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--green-dark);
  padding: 22px 22px;
  min-width: 260px;
  height: 100%;
}

.hh-cat-cta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hh-cat-cta-icon-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.hh-cat-cta-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hh-cat-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hh-cat-cta-text strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.hh-cat-cta-text span {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, .7);
  line-height: 1.4;
}

.hh-cat-cta-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}

.hh-cat-cta-arrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ══════════════════════════════════
     ABOUT US HERO SECTION
  ══════════════════════════════════ */

.about-hero {
  position: relative;
  background: var(--white);
  padding: 48px 64px 0;
  overflow: hidden;
}

/* Floating leaf branch decorations */
.about-leaf-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-leaf-deco--top-left {
  top: 40px;
  left: -10px;
  width: 120px;
  height: 180px;
}

.about-leaf-deco--btm-left {
  bottom: 80px;
  left: -10px;
  width: 140px;
  height: 180px;
  transform: scaleY(-1);
}

.about-leaf-deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ══════════════════════════════════
   HERO INNER GRID
  ══════════════════════════════════ */

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

/* ── Eyebrow ── */
.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 18px;
}

.about-eyebrow-leaf-wrap {
  width: 16px;
  height: 16px;
}

.about-eyebrow-leaf-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-eyebrow-line {
  width: 30px;
  height: 1.5px;
  background: var(--green-accent);
  opacity: .5;
  display: inline-block;
}

/* ── Heading ── */
.about-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.14;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.about-heading span {
  color: var(--green-mid);
}

/* ── Sub text ── */
.about-sub {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-mid);
  padding-left: 16px;
  border-left: 2.5px solid var(--green-mid);
  max-width: 400px;
  margin-bottom: 36px;
}

/* ── 4 Feature icons ── */
.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.about-feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.about-feature-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.about-feature-text strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}

.about-feature-text span {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.4;
}

/* ── CTA Buttons ── */
.about-btns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-btn-primary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-mid);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 13px 14px 13px 26px;
  border-radius: 999px;
}

.about-btn-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-btn-arrow img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.about-btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-mid);
  text-decoration: none;
  padding: 12px 16px 12px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--green-mid);
}

.about-btn-play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-btn-play img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* ── Right column — single image ── */
.about-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-img-wrap {
  width: 100%;
}

.about-hero-img-wrap img {
  width: 100%;
  display: block;
}

/* ══════════════════════════════════
     STATS BAR
  ══════════════════════════════════ */

.about-stats-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--bg);
  border: 1px solid #e6eddf;
  border-radius: 18px 18px 0 0;
  padding: 28px 28px;
  overflow: hidden;
}

.about-stats-leaf-left,
.about-stats-leaf-right {
  position: absolute;
  bottom: -6px;
  width: 90px;
  height: 90px;
  pointer-events: none;
}

.about-stats-leaf-left {
  left: -8px;
}

.about-stats-leaf-right {
  right: -8px;
  transform: scaleX(-1);
}

.about-stats-leaf-left img,
.about-stats-leaf-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-stat {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border-right: 1px solid #dde8d6;
}

.about-stat:last-child {
  border-right: none;
}

.about-stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccddc2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-stat-icon-wrap img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.about-stat-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.about-stat-number {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
}

.about-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 3px 0 2px;
}

.about-stat-desc {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.35;
}

/* ══════════════════════════════════
     TRUST IS OUR INGREDIENT
  ══════════════════════════════════ */

.trust {
  background: var(--white);
  padding: 56px 64px 0;
}

/* Hero row */
.trust-hero {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.trust-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 16px;
}

.trust-eyebrow-icon-wrap {
  width: 16px;
  height: 16px;
}

.trust-eyebrow-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
  color: var(--text-dark);
}

.trust-heading span {
  color: var(--green-mid);
}

.trust-heading-underline {
  width: 36px;
  height: 3px;
  background: var(--green-mid);
  border-radius: 2px;
  margin: 18px 0 18px;
}

.trust-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.7;
}

.trust-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-hero-img-wrap {
  width: 100%;
}

.trust-hero-img-wrap img {
  width: 100%;
  display: block;
}

/* ══════════════════════════════════
     TRUST GRID / CARDS
  ══════════════════════════════════ */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.trust-card {
  background: var(--bg);
  border: 1px solid #ece7da;
  border-radius: 16px;
  padding: 20px 18px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.trust-card-top {
  display: flex;
  align-items: flex-start;
  /* justify-content: space-between; */
  margin-bottom: 14px;
}

.trust-card-number {
  font-size: 13px;
  font-weight: 500;
  color: var(--green-mid);
  padding-top: 8px;
}

/* .trust-card-top .trust-card-icon-wrap{
    flex: 1;
    display: flex;
    justify-content: center;
} */

.trust-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.trust-card-icon-wrap img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.trust-card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
}

.trust-card-text {
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 16px;
}

.trust-card-img-wrap {
  width: calc(100% + 36px);
  margin-left: -18px;
  margin-top: auto;
  border-radius: 0;
}

.trust-card-img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.trust-card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  padding: 14px 18px;
  margin: 0 -18px;
}

.trust-card-footer-icon-wrap {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green-mid);
}

.trust-card-footer-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-card-footer span {
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-dark);
}

/* ══════════════════════════════════
     TRUST BAR
  ══════════════════════════════════ */

.trust-bar {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  gap: 0;
  border: 1px solid #ece7da;
  border-radius: 18px;
  padding: 30px 36px;
  margin-bottom: 30px;
  overflow: hidden;
}

.trust-bar-leaf-deco-left,
.trust-bar-leaf-deco-right {
  position: absolute;
  bottom: -10px;
  width: 90px;
  height: 90px;
  pointer-events: none;
}

.trust-bar-leaf-deco-left {
  left: 0;
}

.trust-bar-leaf-deco-right {
  right: 0;
  transform: scaleX(-1);
}

.trust-bar-leaf-deco-left img,
.trust-bar-leaf-deco-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-bar-lead {
  padding-right: 24px;
  border-right: 1px solid #ece7da;
}

.trust-bar-lead h4 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.trust-bar-lead span {
  font-size: 13px;
  font-weight: 500;
  color: var(--green-mid);
}

.trust-bar-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 20px;
  border-right: 1px solid #ece7da;
}

.trust-bar-point-last {
  border-right: none;
}

.trust-bar-point-icon-wrap {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--green-mid);
}

.trust-bar-point-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-bar-point-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-bar-point-number {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
}

.trust-bar-point-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 2px 0 4px;
}

.trust-bar-point-label-top {
  margin-top: 4px;
}

.trust-bar-point-desc {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.4;
}



/* ══════════════════════════════════
     OUR MISSION. OUR VISION.
  ══════════════════════════════════ */

.mv {
  position: relative;
  background: var(--white);
  padding: 56px 64px 0;
}

/* Header */
.mv-header {
  position: relative;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}

.mv-header-leaf-top {
  width: 18px;
  height: 18px;
  margin: 0 auto 10px;
}

.mv-header-leaf-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mv-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 10px;
}

.mv-heading {
  font-size: 48px;
  font-weight: 500;
  color: var(--text-dark);
}

.mv-heading-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 0;
}

.mv-heading-deco-line {
  width: 60px;
  height: 1px;
  background: var(--green-mid);
}

.mv-heading-deco img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.mv-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.7;
}

.mv-header-branch-left,
.mv-header-branch-right {
  position: absolute;
  top: 10px;
  width: 220px;
  height: 90px;
  pointer-events: none;
}

.mv-header-branch-left {
  left: -260px;
}

.mv-header-branch-right {
  right: -260px;
  transform: scaleX(-1);
}

.mv-header-branch-left img,
.mv-header-branch-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ══════════════════════════════════
     MISSION / VISION GRID
  ══════════════════════════════════ */
.mv-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  background: var(--bg);
  border: 1px solid #ece7da;
  border-radius: 22px;
  padding: 14px;
  margin-bottom: 48px;
}

.mv-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-start;
}

.mv-card-img-wrap {
  position: absolute;
  inset: 0;
}

.mv-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(249, 251, 247, .98) 0%, rgb(249 251 247) 25%, rgb(249 251 247) 45%, rgb(249 251 247 / 75%) 65%, rgba(249, 251, 247, 0) 80%);
}

.mv-card-overlay-right {
  background: linear-gradient(90deg,
      rgba(249, 251, 247, .98) 0%,
      rgba(249, 251, 247, .95) 25%,
      rgba(249, 251, 247, .80) 45%,
      rgba(249, 251, 247, .20) 65%,
      rgba(249, 251, 247, 0) 80%);
}

.mv-card-content {
  position: relative;
  z-index: 1;
  width: 54%;
  margin-left: auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.mv-card-right .mv-card-content {
  margin-left: 0;
  align-items: flex-start;
  text-align: left;
}

.mv-card-icon-wrap {
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--green-mid);
}

.mv-card-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mv-card-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 10px;
}

.mv-card-title {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.28;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.mv-card-title span {
  color: var(--green-accent);
}

.mv-card-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 280px;
  margin-bottom: 22px;
}

.mv-card-right .mv-card-text {
  margin-bottom: 0;
}

.mv-card-points {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.mv-card-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.mv-card-point-icon-wrap {
  width: 26px;
  height: 26px;
  color: var(--green-mid);
}

.mv-card-point-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mv-card-point span {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-dark);
}

/* Center connector node */
.mv-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  margin: 0 -10px;
}

.mv-node-leaf-top,
.mv-node-leaf-bottom {
  width: 16px;
  height: 16px;
}

.mv-node-leaf-top {
  margin-bottom: 6px;
}

.mv-node-leaf-bottom {
  margin-top: 6px;
  transform: scaleY(-1);
}

.mv-node-leaf-top img,
.mv-node-leaf-bottom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mv-node-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--white);
  border: 1px dashed #c9d4c2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(14, 40, 15, .08);
}

.mv-node-circle img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* ══════════════════════════════════
     BOTTOM VALUE STRIP
  ══════════════════════════════════ */

.mv-values {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 26px 90px;
  margin-bottom: 30px;
  overflow: hidden;
}

.mv-values-leaf-deco-left,
.mv-values-leaf-deco-right {
  position: absolute;
  bottom: -16px;
  width: 80px;
  height: 80px;
  pointer-events: none;
}

.mv-values-leaf-deco-left {
  left: 0;
}

.mv-values-leaf-deco-right {
  right: 0;
  transform: scaleX(-1);
}

.mv-values-leaf-deco-left img,
.mv-values-leaf-deco-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mv-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mv-value-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-mid);
}

.mv-value-icon-wrap img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.mv-value-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.4;
}

.mv-value-text strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}

.mv-value-text span {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
}



/* ══════════════════════════════════
     OUR PRODUCT RANGE
  ══════════════════════════════════ */

.prange {
  background: var(--white);
  padding: 48px 64px 0;
}

/* Hero row */
.prange-hero {
  display: grid;
  grid-template-columns: .92fr 1.18fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 44px;
}

.prange-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 16px;
}

.prange-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--green-mid);
  opacity: .6;
}

.prange-eyebrow-icon-wrap {
  width: 14px;
  height: 14px;
}

.prange-eyebrow-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prange-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.prange-heading span {
  color: var(--green-mid);
}

.prange-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 28px;
}

.prange-features {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 18px;
}

.prange-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.prange-feature-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #d7e0cf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
}

.prange-feature-icon-wrap img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.prange-feature span {
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-dark);
}

.prange-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prange-hero-img-wrap {
  width: 100%;
}

.prange-hero-img-wrap img {
  width: 100%;
  display: block;
}

/* ══════════════════════════════════
     OUR CATEGORIES HEADING
  ══════════════════════════════════ */

.prange-categories-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid #ece7da;
  margin-bottom: 28px;
}

.prange-categories-heading h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.prange-categories-line {
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d7d0bd);
}

.prange-categories-line-right {
  background: linear-gradient(90deg, #d7d0bd, transparent);
}

.prange-categories-icon-wrap {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.prange-categories-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ══════════════════════════════════
     CATEGORY CARDS
  ══════════════════════════════════ */

.prange-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

/* ══════════════════════════════════
     CATEGORY CARDS  –  updated
  ══════════════════════════════════ */

.prange-cat-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 200px;
  border: 1px solid #ece7da;
  display: flex;
  /* ADD */
  align-items: flex-start;
  /* ADD */
  background: #f9fbf7;
  /* ADD – card bg so left side has colour */
}

.prange-cat-card img{
  height: 100%;
  width: 100%;
}

/* Image sits on the RIGHT half */
.prange-cat-img-wrap {
  position: absolute;
  inset: 0;
  left: 38%;
  /* CHANGE – image starts at 38% from left */
}

.prange-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  /* ADD – keep products visible */
  display: block;
}

/* Gradient now goes LEFT-to-RIGHT (not top-to-bottom) */
.prange-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(249, 251, 247, 1) 0%,
      rgba(249, 251, 247, 1) 38%,
      rgba(249, 251, 247, 0.5) 55%,
      rgba(249, 251, 247, 0) 100%);
  /* CHANGE – horizontal fade, not vertical */
}

/* Text stays top-left, limited to ~38% width so it never covers products */
.prange-cat-content {
  position: relative;
  z-index: 2;
  /* CHANGE – raise above overlay */
  padding: 14px 16px;
  width: 38%;
  /* ADD – constrain to left column */
  flex-shrink: 0;
}

.prange-cat-content h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--green-accent);
  margin-bottom: 6px;
}

.prange-cat-content p {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-mid);
}

/* ══════════════════════════════════
     BOTTOM TRUST STRIP
  ══════════════════════════════════ */

.prange-trust-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 70px;
  margin-bottom: 56px;
  overflow: hidden;
}

.prange-trust-leaf-deco-left,
.prange-trust-leaf-deco-right {
  position: absolute;
  /* bottom: -10px; */
  width: 70px;
  height: 70px;
  pointer-events: none;
}

.prange-trust-leaf-deco-left {
  left: 4px;
}

.prange-trust-leaf-deco-right {
  right: 4px;
  /* transform: scaleX(-1); */
}

.prange-trust-leaf-deco-left img,
.prange-trust-leaf-deco-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prange-trust-pill {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  background: var(--bg);
  border: 1px solid #ece7da;
  border-radius: 999px;
  padding: 18px 36px;
}

.prange-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-right: 1px solid #ddd6c4;
}

.prange-trust-item:last-child {
  border-right: none;
}

.prange-trust-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-mid);
}

.prange-trust-icon-wrap img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.prange-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.4;
}

.prange-trust-text strong {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.prange-trust-text span {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--text-light);
}

/* ══════════════════════════════════
     THE HOMIFRESH EXPERIENCE
  ══════════════════════════════════ */

.experience {
  position: relative;
  background: var(--white);
  padding: 64px 64px 0;
  overflow: hidden;
}

.experience-leaf-deco-left,
.experience-leaf-deco-right {
  position: absolute;
  top: 0;
  width: 220px;
  height: 220px;
  pointer-events: none;
}

.experience-leaf-deco-left {
  left: 0;
}

.experience-leaf-deco-right {
  right: 0;
}

.experience-leaf-deco-left img,
.experience-leaf-deco-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Header */
.experience-header {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.experience-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}

.experience-eyebrow-icon-wrap {
  width: 14px;
  height: 14px;
}

.experience-eyebrow-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--green-mid);
  opacity: .5;
}

.experience-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.experience-heading span {
  color: var(--green-mid);
}

.experience-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ══════════════════════════════════
     EXPERIENCE GRID / CARDS
  ══════════════════════════════════ */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.experience-card {
  background: var(--bg);
  border-radius: 18px;
  padding: 16px 14px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 520px;
}

.experience-card-top {
  display: flex;
  gap: 16px;
}

.experience-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-mid);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.experience-card-title {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.experience-card-title span {
  color: var(--green-mid);
}

.experience-card-text {
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.experience-card-img-wrap {
  width: calc(100% + 28px);
  margin-left: -14px;
  margin-top: auto;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.experience-card-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: fill;
  object-position: top;
  display: block;
}

.experience-card-img-relative {
  position: relative;
}

.experience-card-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--white);
  padding: 18px 12px;
  margin: 0 -14px;
  width: calc(100% + 28px);
  flex-shrink: 0;
}

.experience-card-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.experience-card-feature-icon-wrap {
  width: 26px;
  height: 26px;
  color: var(--green-mid);
}

.experience-card-feature-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-card-feature span {
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-dark);
}

.experience-wallet-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 10px 24px rgba(14, 40, 15, .25);
}

.experience-wallet-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.experience-wallet-badge-label {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .7);
}

.experience-wallet-badge-amount {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.experience-wallet-badge-check-wrap {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.experience-wallet-badge-check-wrap img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

/* ══════════════════════════════════
     SUSTAINABILITY STRIP
  ══════════════════════════════════ */

.experience-sustain-bar {
  display: grid;
  grid-template-columns: 1fr 1.7fr .9fr;
  align-items: center;
  gap: 24px;
  background: var(--bg);
  border-radius: 18px;
  padding: 28px 32px;
  /* margin: 0 0 56px; */
  overflow: hidden;
}

.experience-sustain-left h4 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.experience-sustain-left h4 span {
  color: var(--green-mid);
}

.experience-sustain-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
}

.experience-sustain-tagline-icon-wrap {
  width: 14px;
  height: 14px;
}

.experience-sustain-tagline-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-sustain-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.experience-sustain-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.experience-sustain-point-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-mid);
}

.experience-sustain-point-icon-wrap img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.experience-sustain-point-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.4;
}

.experience-sustain-point-text strong {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dark);
}

.experience-sustain-point-text span {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
}

.experience-sustain-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 110px;
  border-radius: 14px;
  overflow: hidden;
}

.experience-sustain-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════
     READY TO EXPERIENCE SECTION
  ══════════════════════════════════ */

.ready-to-experience {
  position: relative;
  /* background: linear-gradient(357deg, #f0f7f18a 0%, #e6f4e870 60%, #dbe1dbad 100%); */
  background-image: url("https://public.homifresh.in/ready-to-experience-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  padding: 48px 64px 0px;
}

.ready-to-experience-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: flex-end;
  /* min-height: 520px; */
  position: relative;
  overflow: hidden;
}

.ready-to-experience::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(58, 140, 69, .12) 0%, transparent 70%);
  border-radius: 50%;
}

/* Left column */
.ready-to-experience-left {
  padding-bottom: 48px;
}

.ready-to-experience-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--green-mid);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.ready-to-experience-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--green-mid);
}

.ready-to-experience-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.ready-to-experience-heading span {
  color: var(--green-mid);
}

.ready-to-experience-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 32px;
}

.ready-to-experience-store-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ready-to-experience-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  text-decoration: none;
  min-width: 160px;
}

.ready-to-experience-store-btn .ready-to-experience-store-icon-wrap {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.ready-to-experience-store-btn .ready-to-experience-store-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ready-to-experience-store-btn .ready-to-experience-btn-text {
  display: flex;
  flex-direction: column;
}

.ready-to-experience-store-btn .ready-to-experience-btn-text small {
  font-size: 9px;
  font-weight: 400;
  opacity: .75;
}

.ready-to-experience-store-btn .ready-to-experience-btn-text strong {
  font-size: 14px;
  font-weight: 500;
}

/* Right column – single image */
.ready-to-experience-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-bottom: 0px;
  width: 100%;
}

.ready-to-experience-banner-img-wrap {
  width: 100%;
}

.ready-to-experience-banner-img-wrap img {
  width: 100%;
  display: block;
}

/* ══════════════════════════════════
     STATS BAR
  ══════════════════════════════════ */

.stats-bar {
  background: #ffffff85;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  border-top: 1px solid #e4ede5;
  border-bottom: 1px solid #e4ede5;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  border-right: 1px solid #e4ede5;
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.stat-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-text .stat-number {
  font-size: 28px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
}

.stat-text .stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 2px 0px;
}

.stat-text .stat-desc {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.4;
}

/* ══════════════════════════════════
     FOOTER
  ══════════════════════════════════ */

footer {
  background: var(--green-dark);
  padding: 48px 64px 0px;
}

.footer-grid {
  /* display: grid; */
  /* grid-template-columns: 2fr 1fr 1.5fr 1.5fr 1.8fr; */
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

/* Brand column */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand .footer-logo .footer-logo-img-wrap {
  width: 36px;
  height: 36px;
}

.footer-brand .footer-logo .footer-logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand .footer-logo .footer-logo-name {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.footer-brand .footer-tagline-small {
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .06em;
  margin-left: 46px;
  margin-top: -6px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.7;
  max-width: 200px;
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-icon-wrap {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icon-wrap img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(10);
}

/* Footer column headings */
.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 16px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green-accent);
  margin-top: 6px;
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col.cats ul li a {
  font-size: 12px;
}

/* Contact items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #fff;
}

.footer-contact-icon-wrap {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* filter: brightness(5) saturate(0); */
}

/* App download column */
.footer-col.footer-app {
  display: flex;
  gap: 10px;
}

.footer-app .footer-app-leaf-icon-wrap {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
}

.footer-app .footer-app-leaf-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-app h3 {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 2px;
}

.footer-app h3 span {
  color: var(--green-accent);
}

.footer-app .footer-app-sub {
  font-size: 11px;
  margin-bottom: 16px;
  color: #fff;
}

.footer-app-store-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-app-store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #000;
  border-radius: 8px;
  padding: 7px 14px;
  text-decoration: none;
  width: 140px;
}

.footer-app-store-btn .footer-app-store-icon-wrap {
  width: 22px;
  height: 22px;
}

.footer-app-store-btn .footer-app-store-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-app-store-btn .footer-app-btn-text small {
  font-size: 8px;
  color: rgba(255, 255, 255, .7);
  display: block;
}

.footer-app-store-btn .footer-app-btn-text strong {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  display: block;
}

.footer-qr-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.footer-qr-img-wrap {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-qr-img-wrap img {
  width: 100%;
  /* height: 64px; */
  object-fit: contain;
}

.footer-qr-label {
  font-size: 10px;
  color: #fff;
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0px;
}

.footer-bottom .footer-copy {
  font-size: 11px;
  color: #fff;
}

.footer-bottom-tagline {
  font-size: 14px;
  font-weight: 400;
  color: var(--green-accent);
  letter-spacing: .02em;
}

.footer-bottom-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #fff;
}

.footer-bottom-badge-icon-wrap {
  width: 20px;
  height: 20px;
}

.footer-bottom-badge-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom-arrow {
  color: var(--green-accent);
  font-weight: 1000;
  margin: 0px 2px;
}










.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 56px;
  height: 68px;
}
 
/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
 
.nav-logo-mark {
  width: 150px;
  height: 40px;
}
 
.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
 
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
 
.nav-logo-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -.01em;
}
 
.nav-logo-tagline {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: .05em;
}
 
/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
 
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
 
.nav-link:hover,
.nav-link.active {
  color: var(--green-mid);
  border-bottom-color: var(--green-mid);
}
 
/* ── Products dropdown ── */
.nav-dropdown {
  position: relative;
}
 
.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
 
.nav-dropdown-toggle:hover,
.nav-dropdown--open .nav-dropdown-toggle {
  color: var(--green-mid);
  border-bottom-color: var(--green-mid);
}
 
.nav-dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform .25s;
}
 
.nav-dropdown--open .nav-dropdown-chevron {
  transform: rotate(180deg);
}
 
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  display: none;
  z-index: 200;
}
 
.nav-dropdown--open .nav-dropdown-menu {
  display: block;
}
 
.nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: background .15s, color .15s;
}
 
.nav-dropdown-item:hover {
  background: var(--green-light);
  color: var(--green-mid);
}
 
/* ── Right actions ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
 
.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 22px;
  height: 22px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}
 
.nav-icon-btn:hover {
  color: var(--green-mid);
}
 
.nav-icon-btn svg {
  width: 100%;
  height: 100%;
}
 
/* Cart with badge */
.nav-cart-btn {
  position: relative;
}
 
.nav-cart-badge {
  position: absolute;
  top: -7px;
  right: -8px;
  background: var(--green-accent);
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
 
/* Shop Now pill */
.nav-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 10px 10px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s;
}
 
.nav-shop-btn:hover {
  background: var(--green-mid);
}
 
.nav-shop-btn--full {
  width: 100%;
  justify-content: center;
}
 
.nav-shop-btn-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.nav-shop-btn-arrow svg {
  width: 14px;
  height: 14px;
}
 
/* ── Hamburger (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 4px;
  flex-shrink: 0;
}
 
.nav-hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
 
/* Hamburger → X animation */
.nav-hamburger--open .nav-hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger--open .nav-hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger--open .nav-hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
 
/* ══════════════════════════════════
     MOBILE SLIDE-DOWN MENU
  ══════════════════════════════════ */
 
.nav-mobile-menu {
  position: fixed;
  top: 68px;        /* same as navbar height */
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  z-index: 999;
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
 
  /* hidden by default */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height .35s ease, opacity .3s ease, visibility 0s .35s;
}
 
.nav-mobile-menu--open {
  max-height: 100vh;
  opacity: 1;
  visibility: visible;
  transition: max-height .35s ease, opacity .3s ease, visibility 0s 0s;
}
 
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
 
.nav-mobile-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color .2s;
}
 
.nav-mobile-link:hover {
  color: var(--green-mid);
}
 
/* Mobile accordion for Products */
.nav-mobile-accordion {
  border-bottom: 1px solid #f0f0f0;
}
 
.nav-mobile-accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  text-align: left;
  transition: color .2s;
}
 
.nav-mobile-accordion-toggle:hover {
  color: var(--green-mid);
}
 
.nav-mobile-chevron {
  width: 16px;
  height: 16px;
  transition: transform .25s;
  flex-shrink: 0;
}
 
.nav-mobile-accordion--open .nav-mobile-chevron {
  transform: rotate(180deg);
}
 
.nav-mobile-accordion-body {
  display: none;
  flex-direction: column;
  padding: 4px 0 12px 16px;
  gap: 2px;
}
 
.nav-mobile-accordion--open .nav-mobile-accordion-body {
  display: flex;
}
 
.nav-mobile-sub-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 9px 8px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
 
.nav-mobile-sub-link:hover {
  background: var(--green-light);
  color: var(--green-mid);
}
 
.nav-mobile-actions {
  padding-top: 4px;
}
 
/* ══════════════════════════════════
     RESPONSIVE BREAKPOINTS
  ══════════════════════════════════ */
 
/* Tablet — compress spacing */
@media (max-width: 1024px) {
  .nav {
    padding: 0 32px;
    gap: 16px;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-link,
  .nav-dropdown-toggle {
    font-size: 13px;
  }
}
 
/* Mobile — hide desktop links & actions, show hamburger */
@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
    height: 60px;
  }
 
  .nav-links {
    display: none;
  }
 
  .nav-actions {
    display: none;
  }
 
  .nav-hamburger {
    display: flex;
  }
 
  /* Adjust mobile menu top to match smaller nav height */
  .nav-mobile-menu {
    top: 60px;
  }
 
  .nav-logo-name {
    font-size: 17px;
  }
 
  .nav-logo-tagline {
    font-size: 8px;
  }
}
 
/* Small phones */
@media (max-width: 400px) {
  .nav {
    padding: 0 16px;
  }
}