/* ============================================================
   styles.css — Beyond J.C. Group OPC
   Leh-muhn & Koh-fee Homepage
   Desktop-first layout (1440px base)
   ============================================================ */

/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  /* Brand Colors */
  --color-yellow:       #eab308;
  --color-yellow-light: rgba(251, 233, 106, 0.25);
  --color-yellow-border:rgba(251, 233, 106, 0.35);
  --color-green:        #0d542b;
  --color-green-light:  rgba(82, 164, 71, 0.1);
  --color-green-pale:   #e8f5e9;
  --color-green-pastel: #c8e6c9;
  --color-cream:        #fcfbf8;
  --color-cream-dark:   #f3f4f6;
  --color-brown-deep:   #3e2723;
  --color-brown:        #5d4037;
  --color-brown-mid:    #8b7355;
  --color-brown-light:  #ca8a04;
  --color-dark:         #111827;
  --color-body:         #374151;
  --color-muted:        #4b5563;
  --color-light-text:   #737373;
  --color-white:        #ffffff;
  --color-border:       #e5e5e5;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --section-px:  80px;
  --section-py:  96px;
  --max-width:   1380px;
  --border-radius-lg: 40px;
  --border-radius-md: 24px;
  --border-radius-sm: 16px;
  --border-radius-pill: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 10px 15px rgba(0,0,0,.07);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.1);
  --shadow-xl:  0 20px 25px rgba(0,0,0,.1), 0 8px 10px rgba(0,0,0,.06);
  --shadow-2xl: 0 25px 50px rgba(0,0,0,.25);

  /* Transitions */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: sans-serif;
  background-color: var(--color-cream);
  color: var(--color-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── 3. Utility classes ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

/* ── 4. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--border-radius-pill);
  font-family: sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn:active { transform: translateY(0); }

.btn--yellow {
  background: var(--color-yellow);
  color: var(--color-brown-deep);
}
.btn--yellow:hover { filter: brightness(1.05); }

.btn--green {
  background: var(--color-green);
  color: var(--color-white);
}
.btn--green:hover { filter: brightness(1.1); }

.btn--outline-brown {
  background: transparent;
  color: var(--color-brown);
  border: 1.6px solid var(--color-brown);
  padding: 12px 28px;
}
.btn--outline-brown:hover {
  background: var(--color-brown);
  color: var(--color-white);
}

.btn--sm {
  padding: 9px 20px;
  font-size: 13px;
  border-radius: var(--border-radius-pill);
}

/* ── 5. NAVBAR ────────────────────────────────────────────── */
.navbar {
    position: fixed;
    z-index: 1000;
    height: 68px;
    backdrop-filter: blur(20px);
    inset: 0px 0px auto;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #efefef;
    transition: box-shadow .18s ease
;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.12);
}

.navbar__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: calc 1380px + 80px;
    margin-inline: auto;
    padding-inline: 105px;
    height: 100%;
}

.navbar__logo { flex-shrink: 0; }
.navbar__logo-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.navbar__link {
    font-size: 14px;
    font-weight: 400;
    color: #888888;
    position: relative;
    padding-bottom: 2px;
    transition: color .18s ease;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.navbar__link:hover,
.navbar__link.active { color: var(--color-brown); }
.navbar__link:hover::after,
.navbar__link.active::after { transform: scaleX(1); }

/* Search */
.navbar__search {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}
.navbar__search-input {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 6px;
  padding: 7px 36px 7px 12px;
  font-size: 14px;
  font-family: sans-serif;
  color: var(--color-dark);
  width: 200px;
  background: var(--color-white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar__search-input:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(234,179,8,.15);
}
.navbar__search-icon {
  position: absolute;
  right: 10px;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* Mobile hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── 6. HERO SECTION ──────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 800px;
  overflow: hidden;
}

.hero__bg,
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(62, 39, 35, 0.72) 0%,
    rgba(62, 39, 35, 0.38) 55%,
    rgba(62, 39, 35, 0.1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 var(--section-px);
  padding-top: 80px; /* navbar offset */
  max-width: var(--max-width);
  margin-inline: auto;
}

.hero__headline {
  font-family: sans-serif;
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  max-width: 700px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}
.hero__headline span { color: var(--color-yellow); }

.hero__subtext {
  font-size: 18px;
  font-weight: 300;
  color: #f3f4f6;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* ── 7. BRANDS SECTION ────────────────────────────────────── */
.brands {
  padding: var(--section-py) var(--section-px);
  max-width: var(--max-width);
  margin-inline: auto;
}

.brands__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.brands__card {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 0.8px solid;
  min-height: 360px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.brands__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.brands__card--yellow {
  background: rgba(251, 233, 106, 0.18);
  border-color: var(--color-yellow-border);
  flex-direction: row-reverse; /* image on right */
}
.brands__card--green {
  background: var(--color-green-light);
  border-color: rgba(93, 64, 55, 0.1);
}

.brands__card-image {
  flex: 0 0 46%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}
.brands__card-image img {
  background-color: white;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  margin: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  box-shadow: var(--shadow-xl);
}

.brands__card-info {
  flex: 1;
  padding: 40px 36px;
}
.brands__card-info--right {
  padding-left: 40px;
}

.brands__card-name {
  font-family: sans-serif;
  font-size: 35px;
  font-weight: 800;
  color: var(--color-brown-deep);
  margin-bottom: 10px;
  line-height: 1.1;
}
.brands__card-category {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--color-yellow);
  margin-bottom: 16px;
}
.brands__card-category--brown { color: var(--color-brown); }

.brands__card-desc {
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.7;
  margin-bottom: 28px;
}
.brands__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-brown);
  transition: gap var(--transition), color var(--transition);
}
.brands__card-link:hover {
  gap: 10px;
  color: var(--color-brown-deep);
}

/* 4 juice cards — white, circular images, yellow buttons */
.juice-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.juice-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform .28s var(--spring), box-shadow .28s;
}

.juice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

/* Circular image — Figma: 192x192, round */
.juice-card__img-wrap {
  width: 192px; height: 192px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
}
.juice-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s var(--spring);
}
.juice-card:hover .juice-card__img { transform: scale(1.07); }

.juice-card__name {
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -.5px;
  margin-bottom: 6px;
}
.juice-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: -.5px;
  margin-bottom: 20px;
}
.juice-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}
.juice-card__price {
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -.5px;
}
/* Yellow add button — Figma: #ffd966, round 40px */
.juice-add-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  border: none;
  transition: transform .22s var(--spring), filter .2s;
}
.juice-add-btn:hover { transform: scale(1.12) rotate(90deg); filter: brightness(1.05); }

/* ── 8. CUSTOMER FAVORITES SECTION ───────────────────────── */
.favorites {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.favorites__bg,
.favorites__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.favorites__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(92, 64, 51, 0.58) 0%,
    rgba(92, 64, 51, 0.28) 100%
  );
}

.favorites__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.favorites__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.favorites__title {
  font-family: sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--color-white);
}
.favorites__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  margin-top: 6px;
}
.favorites__view-all {
  color: var(--color-white);
  font-weight: 500;
  font-size: 15px;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.favorites__view-all:hover { opacity: 1; }

/* Product cards */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--color-cream);
  border: 0.8px solid var(--color-cream-dark);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  padding: 5%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.product-card__image-wrap {
  height: 250px;
  overflow: hidden;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 5%;
}
.product-card:hover .product-card__img { transform: scale(1.05); }

.product-card__body {
  padding: 20px 20px 22px;
}
.product-card__brand {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}
.product-card__brand--yellow { color: var(--color-yellow); }
.product-card__brand--brown  { color: var(--color-brown); }

.product-card__name {
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-card__price {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-dark);
}

/* ── 9. PAUSE / AMBIANCE SECTION ─────────────────────────── */
.pause {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin: var(--section-py) var(--section-px);
  border-radius: 48px;
  box-shadow: var(--shadow-2xl);
}

.pause__bg,
.pause__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pause__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.30);
}

.pause__card {
  position: absolute;
  z-index: 2;
  top: 17%;
  left: 80px;
  transform: translateY(-50%);
  background: rgba(255,255,255,.95);
  border-radius: 32px;
  padding: 48px;
  width: 520px;
  box-shadow: var(--shadow-xl);
}
.pause__title {
  font-family: sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--color-brown-deep);
  margin-bottom: 18px;
}
.pause__desc {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ── 10. WHY CUSTOMERS LOVE US ────────────────────────────── */
.why {
  padding: var(--section-py) var(--section-px);
  background: var(--color-cream);
}
.why__inner {
  max-width: var(--max-width);
  margin-inline: auto;
}

.why__header {
  text-align: center;
  margin-bottom: 64px;
}
.why__title {
  font-family: sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--color-brown-deep);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.why__subtitle {
  font-size: 18px;
  color: var(--color-brown-mid);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why__item {
  text-align: center;
}

.why__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.why__item:hover .why__icon-wrap { transform: translateY(-4px) scale(1.05); }

.why__icon-wrap--yellow { background: linear-gradient(135deg, #facc15 0%, #eab308 71%); }
.why__icon-wrap--brown  { background: linear-gradient(135deg, #8b7355 0%, #3e2723 71%); }
.why__icon-wrap--green  { background: linear-gradient(135deg, #a8b5a0 0%, #16a34a 71%); }
.why__icon-wrap--cream  { background: linear-gradient(135deg, #e8dcc4 0%, #8b7355 71%); }

.why__icon { width: 32px; height: 32px; }

.why__item-title {
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brown-deep);
  margin-bottom: 14px;
}
.why__item-desc {
  font-size: 15px;
  color: var(--color-brown-mid);
  line-height: 1.7;
}
/* ── CSR SECTION ──────────────────────────────────────────── */
.csr {
  background: linear-gradient(160deg, var(--color-green-pale) 0%, var(--color-green-pastel) 100%);
  border-radius: 48px;
  margin: 0 var(--section-px) var(--section-py);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.csr__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 72px 80px;
}

.csr__header {
  text-align: center;
  margin-bottom: 52px;
}
.csr__title {
  font-family: sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 12px;
}
.csr__subtitle {
  font-size: 17px;
  color: var(--color-muted);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Two-column card grid */
.csr__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.csr__card {
  background: var(--color-white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.csr__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Top image area */
.csr__card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.csr__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.csr__card:hover .csr__card-img {
  transform: scale(1.04);
}

/* Accent stripe at top of card */
.csr__card--yellow { border-top: 4px solid var(--color-yellow); }
.csr__card--green  { border-top: 4px solid var(--color-green); }

/* Card body */
.csr__card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.csr__card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 14px;
  width: fit-content;
}
.csr__card--yellow .csr__card-tag {
  background: #fef9c3;
  color: #854d0e;
}
.csr__card--green .csr__card-tag {
  background: #dcfce7;
  color: #14532d;
}

.csr__card-title {
  font-family: sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-brown-deep);
  margin-bottom: 12px;
  line-height: 1.2;
}

.csr__card-desc {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.csr__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-brown);
  transition: gap var(--transition), color var(--transition);
}
.csr__card-link:hover {
  gap: 10px;
  color: var(--color-brown-deep);
}
/* ============================================================
   Footer — improved to match site design system
   Add this to styles.css (replace existing footer styles)
   ============================================================ */

.footer {
  background: var(--color-cream, #f8f8f8);
  border-top: 1px solid var(--color-border, #efefef);
  padding-top: 64px;
  font-family: 'DM Sans', sans-serif;
}

/* 4-column inner grid */
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1380px;
  margin-inline: auto;
  padding: 0 clamp(20px, 5vw, 80px) 56px;
}

/* ── Brand column ─────────────────────────────────────────── */
.footer__brand { display: flex; flex-direction: column; gap: 0; }

.footer__brand-link { display: inline-block; margin-bottom: 14px; }

.footer__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
}

.footer__tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  color: #444444;
  margin-bottom: 10px;
}

.footer__brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: #888888;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}

/* Social icons */
.footer__socials {
  display: flex;
  gap: 8px;
}

.footer__social {
  width: 36px;
  height: 36px;
  background: #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer__social:hover {
  background: #0d542b;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ── Column headings ──────────────────────────────────────── */
.footer__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #111111;
  margin-bottom: 18px;
}

/* ── Link lists ───────────────────────────────────────────── */
.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer__link {
  font-size: 14px;
  font-weight: 300;
  color: #888888;
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer__link:hover { color: #111111; }
.footer__link--underline { text-decoration: underline; }

/* ── Brand items list ─────────────────────────────────────── */
.footer__list--brands { gap: 12px; }

.footer__brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.18s ease;
}
.footer__brand-item:hover { transform: translateX(3px); }

.footer__brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer__brand-dot--green  { background: #0d542b; }
.footer__brand-dot--yellow { background: #eab308; }
.footer__brand-dot--dark   { background: #888888; }

.footer__brand-item-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #444444;
  line-height: 1.2;
  transition: color 0.18s ease;
}
.footer__brand-item:hover .footer__brand-item-name { color: #111111; }

.footer__brand-item-desc {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: #aaaaaa;
}

/* ── Contact lines ────────────────────────────────────────── */
.footer__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  color: #888888;
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer__contact svg { flex-shrink: 0; color: #0d542b; opacity: 0.7; }

/* ── Bottom bar ───────────────────────────────────────────── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid #efefef;
  padding: 20px clamp(20px, 5vw, 80px);
  max-width: 1380px;
  margin-inline: auto;
}

/* Ensure full-width border */
.footer > .footer__bottom {
  max-width: 100%;
  padding-inline: clamp(20px, 5vw, 80px);
}

.footer__copyright {
  font-size: 12px;
  font-weight: 300;
  color: #aaaaaa;
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__bottom-links .footer__link { font-size: 12px; }
.footer__bottom-sep { color: #cccccc; font-size: 12px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__brand { grid-column: 1 / -1; flex-direction: row; gap: 48px; flex-wrap: wrap; }
  .footer__brand-desc { max-width: 320px; }
}
@media (max-width: 640px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { flex-direction: column; gap: 0; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
/* ── 12. DOWNLOAD / REWARDS SECTION ──────────────────────── */
.download {
  background: linear-gradient(100deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: var(--section-py) var(--section-px);
  overflow: hidden;
}

.download__inner {
  padding: 100px;
  max-width: var(--max-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.download__badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border-radius: var(--border-radius-pill);
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #e5e7eb;
  margin-bottom: 20px;
}

.download__title {
  font-family: sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  color: #f9fafb;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 520px;
}

.download__desc {
  font-size: 17px;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.download__store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: var(--color-white);
  border-radius: 12px;
  padding: 14px 22px;
  min-width: 180px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255,255,255,.1);
}
.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
}
.store-btn__icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}
.store-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.store-btn__text small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}
.store-btn__text strong {
  font-size: 14px;
  font-weight: 700;
}

.download__phone {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.download__phone-img {
  width: 260px;
  height: auto;
  border-radius: 40px;
  border: 8px solid #1f2937;
  box-shadow: var(--shadow-2xl);
  transform: rotate(3deg);
  transition: transform var(--transition);
}
.download__phone-img:hover { transform: rotate(0deg) scale(1.02); }

/* ── 13. FOOTER ───────────────────────────────────────────── */
.footer {
  padding-top: 72px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0 var(--section-px) 48px;
}

.footer__brand {
  display: flex;
  align-items: flex-start;
}
.footer__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
}

.footer__heading {
  font-size: 14px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__link {
  font-size: 14px;
  color: var(--color-light-text);
  transition: color var(--transition);
  letter-spacing: -0.5px;
}
.footer__link:hover { color: var(--color-brown); }
.footer__link--underline { text-decoration: underline; }

.footer__contact-line {
  font-size: 14px;
  color: var(--color-light-text);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social-btn {
  width: 40px;
  height: 40px;
  background: #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.footer__social-btn:hover {
  background: var(--color-yellow);
  transform: translateY(-2px);
}
.footer__social-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer__copyright {
  border-top: 1px solid #e5e5e5;
  text-align: center;
  padding: 28px var(--section-px);
}
.footer__copyright p {
  font-size: 14px;
  color: var(--color-light-text);
}

/* ── 14. Animations ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ── 15. RESPONSIVE ───────────────────────────────────────── */

/* Tablet — 1024px */
@media (max-width: 1100px) {
  :root {
    --section-px: 48px;
    --section-py: 72px;
  }

  .navbar__nav { gap: 18px; }
  .navbar__link { font-size: 13px; }

  .brands__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .csr__body { gap: 40px; }
  .download__inner { grid-template-columns: 1fr; }
  .download__phone { justify-content: flex-start; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  :root {
    --section-px: 24px;
    --section-py: 56px;
  }

  /* Navbar mobile */
  .navbar__nav,
  .navbar__search { display: none; }

  .navbar__hamburger { display: flex; }

  /* Mobile nav open state */
  .navbar.nav-open .navbar__nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .hero__headline { font-size: 40px; }
  .hero__subtext { font-size: 16px; }

  .brands__card { flex-direction: column !important; }
  .brands__card-image { min-height: 220px; width: 100%; flex: none; }
  .products__grid { grid-template-columns: 1fr; }
  .pause { margin: 24px; height: auto; border-radius: 24px; }
  .pause__card {
    position: relative;
    inset: auto;
    transform: none;
    margin: 24px;
    width: calc(100% - 48px);
    padding: 32px;
  }
  .why__grid { grid-template-columns: 1fr; }
  .csr { margin: 0 24px var(--section-py); }
  .csr__body { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .download__store-buttons { flex-direction: column; }
  .store-btn { min-width: auto; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__cta-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
a.kof-add-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
        background-color: var(--green-dark, #084636);

    transition: transform .22s var(--spring), background .2s;
}
a.kof-add-btn:hover {
        background-color: var(--green-mid, #067626);

}
