:root {
      --ink: #21162d;
      --muted: #716879;
      --white: #ffffff;
      --cream: #fff8ef;
      --light: #fbf7fc;
      --pink: #ff5b8d;
      --pink-dark: #e83d76;
      --yellow: #ffc43d;
      --purple: #6b3287;
      --dark-purple: #2c1b39;
      --green: #5faf45;
      --radius: 26px;
      --shadow: 0 16px 45px rgba(56, 30, 70, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family:
        Arial,
        Helvetica,
        sans-serif;
      font-size: 16px;
      line-height: 1.65;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    button,
input {
      font: inherit;
    }

    button,
a {
      -webkit-tap-highlight-color: transparent;
    }

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

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

    h1,
h2,
h3,
.brand {
      font-family:
        "Trebuchet MS",
        Arial,
        sans-serif;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .section {
      padding: 100px 0;
    }

    .eyebrow {
      display: block;
      margin-bottom: 10px;
      color: var(--pink);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.14em;
    }

    .section-heading {
      margin-bottom: 50px;
    }

    .section-heading.centered {
      text-align: center;
    }

    .section-heading h2 {
      margin-bottom: 20px;
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.05;
      letter-spacing: -0.04em;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 12px 26px;
      border: 0;
      border-radius: 999px;
      font-weight: 800;
      cursor: pointer;
      transition:
        transform 0.2s ease,
        background-color 0.2s ease;
    }

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

    .btn-light {
      color: var(--ink);
      background: var(--white);
    }

    /* Header */

    .site-header {
      position: relative;
      z-index: 100;
    }

    .navbar {
      min-height: 86px;
      background: var(--white);
      box-shadow: 0 3px 18px rgba(28, 17, 35, 0.08);
    }

    .nav-inner {
      min-height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-size: 1.8rem;
      font-weight: 800;
      line-height: 1;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--pink);
      border-radius: 50%;
      font-size: 1.25rem;
    }

    .custom-logo {
      width: 50px;
      height: auto;
      vertical-align: middle;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 30px;
      font-weight: 700;
    }

    .nav-menu a {
      transition: color 0.2s ease;
    }

    .nav-menu a:hover {
      color: var(--pink);
    }

    .nav-menu .nav-cta {
      padding: 10px 20px;
      color: var(--white);
      background: var(--ink);
      border-radius: 999px;
    }

    .menu-toggle {
      display: none;
      padding: 8px;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 27px;
      height: 3px;
      display: block;
      margin: 5px 0;
      background: var(--ink);
      border-radius: 5px;
    }

/* ========================================
   HERO SECTION
======================================== */

.hero {
  min-height: 700px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(255, 255, 255, 0.24),
      transparent 34%
    ),
    linear-gradient(
      120deg,
      #7e398e,
      #ff5f91
    );

  transition:
    background 0.45s ease;
}

/* Mango Oreo background */

.hero[data-theme="cream"] {
  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(255, 255, 255, 0.28),
      transparent 34%
    ),
    linear-gradient(
      120deg,
      #7e398e,
      #ff5f91
    );
}

/* Mango Graham background */

.hero[data-theme="mango"] {
  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(255, 255, 255, 0.28),
      transparent 34%
    ),
    linear-gradient(
      120deg,
      #e98400,
      #ffc83d
    );
}

/* Mango Cheese background */

.hero[data-theme="green"] {
  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(255, 255, 255, 0.25),
      transparent 34%
    ),
    linear-gradient(
      120deg,
      #267f5a,
      #82ca50
    );
}

/* Buko Nata background */

.hero[data-theme="blue"] {
  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(255, 255, 255, 0.25),
      transparent 34%
    ),
    linear-gradient(
      120deg,
      #4365bd,
      #70b8ee
    );
}

.hero-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);
  align-items: center;
  gap: 50px;
}

/* ========================================
   HERO TEXT
======================================== */

.hero-copy {
  position: relative;
  z-index: 5;
}

.hero .eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero h1 {
  margin: 0 0 22px;
  color: #ffffff;
  font-family:
    "Trebuchet MS",
    Arial,
    sans-serif;
  font-size: clamp(
    3.8rem,
    7vw,
    7rem
  );
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-copy > p {
  width: 100%;
  max-width: 570px;
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero .btn-light {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  color: #21162d;
  background: #ffffff;
  font-weight: 800;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

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

  box-shadow:
    0 12px 30px
    rgba(32, 13, 40, 0.2);
}

/* ========================================
   LARGE HERO PRODUCT IMAGE
======================================== */

.hero-visual {
  min-width: 0;
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: center;
}

/* Circle behind the large image */

.hero-orbit {
  width: min(520px, 90%);
  aspect-ratio: 1;
  position: absolute;
  z-index: 1;
  border: 2px solid
    rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background:
    rgba(255, 255, 255, 0.16);

  box-shadow:
    inset 0 0 70px
    rgba(255, 255, 255, 0.08);
}

/* Large selected product image */

#hero-main-image {
  width: auto;
  max-width: 100%;
  height: 620px;
  position: relative;
  z-index: 3;
  display: block;
  object-fit: contain;
  opacity: 1;

  filter:
    drop-shadow(
      0 30px 24px
      rgba(35, 14, 43, 0.3)
    );

  transform:
    translateY(0)
    scale(1);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Image transition */

#hero-main-image.changing {
  opacity: 0;

  transform:
    translateY(12px)
    scale(0.96);
}

/* ========================================
   HERO THUMBNAIL SELECTORS
======================================== */

.hero-selector {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-top: 34px;
}

.hero-thumb {
  width: 78px;
  position: relative;
  display: block;
  flex: 0 0 auto;
  padding: 0 0 14px;
  border: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

/* Small thumbnail image */

.hero-thumb img {
  width: 68px;
  height: 68px;
  display: block;
  margin: 0 auto;
  border: 2px solid
    rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background:
    rgba(255, 255, 255, 0.18);
  object-fit: contain;

  filter:
    drop-shadow(
      0 9px 8px
      rgba(25, 10, 33, 0.2)
    );

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.hero-thumb:hover img {
  transform: none;
  border-color: #ffffff;
}

.hero-thumb.active img {
  border-color: #ffffff;
  background:
    rgba(255, 255, 255, 0.3);
  transform: none;
}

/*
Works with either:
<span></span>

or:

<span class="thumb-underline"></span>
*/

.hero-thumb > span,
.hero-thumb .thumb-underline {
  width: 100%;
  height: 4px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: transparent;
  border-radius: 999px;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.hero-thumb.active > span,
.hero-thumb.active .thumb-underline {
  background: #ffffff;
}

/* Keyboard accessibility */

.hero-thumb:focus-visible {
  outline: none;
}

.hero-thumb:focus-visible img {
  box-shadow: 0 0 0 3px #ffffff;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr);
    gap: 30px;
  }

  #hero-main-image {
    height: 540px;
  }

  .hero-orbit {
    width: min(450px, 92%);
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 800px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 70px;
    text-align: center;
  }

  .hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-selector {
    justify-content: center;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-orbit {
    width: min(400px, 88%);
  }

  #hero-main-image {
    height: 500px;
  }
}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 520px) {
  .hero-grid {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-selector {
    gap: 10px;
  }

  .hero-thumb {
    width: 62px;
  }

  .hero-thumb img {
    width: 54px;
    height: 54px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-orbit {
    width: min(330px, 90%);
  }

  #hero-main-image {
    height: 420px;
  }
}

/* ========================================
   VERY SMALL MOBILE
======================================== */

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-selector {
    gap: 5px;
  }

  .hero-thumb {
    width: 57px;
  }

  .hero-thumb img {
    width: 49px;
    height: 49px;
  }

  #hero-main-image {
    height: 370px;
  }
}

/* ========================================
   PICK YOUR DRINK
======================================== */

.category-impact {
  --category-dark: #21162d;
  --category-muted: #716879;
  --category-pink: #ff5687;
  --category-orange: #f28d00;
  --category-yellow: #ffc642;

  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #fffdf9 0%,
      #fff8ee 100%
    );
}

.category-impact::before,
.category-impact::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.category-impact::before {
  width: 320px;
  height: 320px;
  top: -220px;
  left: -170px;
  border: 58px solid rgba(255, 86, 135, 0.055);
}

.category-impact::after {
  width: 340px;
  height: 340px;
  right: -200px;
  bottom: -230px;
  border: 62px solid rgba(255, 198, 66, 0.1);
}

.category-impact .container {
  position: relative;
  z-index: 2;
}

/* Heading */

.category-heading {
  width: min(100%, 760px);
  margin-right: auto;
  margin-bottom: 55px;
  margin-left: auto;
}

.category-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.category-logo img {
  width: 70px;
  height: auto;
  object-fit: contain;
}

.category-heading .eyebrow {
  margin-bottom: 9px;
  color: var(--category-pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.category-heading h2 {
  margin-bottom: 16px;
  color: var(--category-dark);
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.category-heading h2 span {
  position: relative;
  display: inline-block;
  color: var(--category-orange);
}

.category-heading h2 span::after {
  content: "";
  height: 9px;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 2px;
  left: 0;
  border-radius: 999px;
  background: rgba(255, 198, 66, 0.52);
  transform: rotate(-1.5deg);
}

.category-intro {
  width: min(100%, 600px);
  margin: 0 auto;
  color: var(--category-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

/* Category grid */

.category-impact .category-grid {
  display: grid;
  grid-template-columns:
    repeat(6, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.category-impact .category-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 13px;
  border: 1px solid rgba(48, 27, 58, 0.08);
  border-radius: 25px;
  background: #ffffff;
  box-shadow:
    0 14px 38px rgba(48, 27, 58, 0.09);
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.category-impact .category-card:hover {
  border-color: rgba(242, 141, 0, 0.24);
  box-shadow:
    0 25px 55px rgba(48, 27, 58, 0.16);
  transform: translateY(-9px);
}

.category-number {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 22px;
  color: rgba(33, 22, 45, 0.42);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* Image area */

.category-impact .category-art {
  width: 100%;
  height: 205px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 19px;
  transition: none;
}

.category-ring {
  width: 145px;
  height: 145px;
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.category-impact .category-art img {
  width: 82%;
  height: 185px;
  position: relative;
  z-index: 2;
  object-fit: contain;
  filter:
    drop-shadow(
      0 13px 11px rgba(48, 27, 58, 0.2)
    );
  transition: transform 0.32s ease;
}

.category-impact
.category-card:hover
.category-art {
  transform: none;
}

.category-impact
.category-card:hover
.category-art img {
  transform:
    translateY(-5px)
    scale(1.06);
}

.category-mango {
  background:
    linear-gradient(145deg, #ffca45, #ff655f);
}

.category-cream {
  background:
    linear-gradient(145deg, #ffd85a, #ff971f);
}

.category-pink {
  background:
    linear-gradient(145deg, #ff94bd, #ff4f87);
}

.category-yellow {
  background:
    linear-gradient(145deg, #ffe66f, #ffad18);
}

.category-purple {
  background:
    linear-gradient(145deg, #8a55b5, #e45b9b);
}

.category-green {
  background:
    linear-gradient(145deg, #71c950, #e1d33f);
}

/* Card text */

.category-content {
  padding: 17px 7px 7px;
}

.category-content h3 {
  margin: 0 0 3px;
  color: var(--category-dark);
  font-size: 1.05rem;
  line-height: 1.3;
}

.category-content p {
  margin: 0 0 15px;
  color: var(--category-muted);
  font-size: 0.82rem;
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid rgba(48, 27, 58, 0.08);
  color: var(--category-orange);
  font-size: 0.76rem;
  font-weight: 900;
}

.category-link b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--category-dark);
  background: var(--category-yellow);
  transition: transform 0.25s ease;
}

.category-card:hover .category-link b {
  transform: translateX(3px);
}

/* Large tablet */

@media (max-width: 1100px) {
  .category-impact .category-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

/* Tablet */

@media (max-width: 760px) {
  .category-impact {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .category-heading {
    margin-bottom: 40px;
  }

  .category-heading h2 {
    font-size: clamp(2.7rem, 11vw, 3.8rem);
  }

  .category-impact .category-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* Mobile */

@media (max-width: 520px) {
  .category-heading h2 {
    font-size: 2.65rem;
  }

  .category-intro {
    font-size: 0.95rem;
  }

  .category-impact .category-grid {
    width: 100%;
    max-width: 420px;
    grid-template-columns: 1fr;
    margin-right: auto;
    margin-left: auto;
  }

  .category-impact .category-card {
    border-radius: 23px;
  }

  .category-impact .category-art {
    height: 265px;
  }

  .category-impact .category-art img {
    height: 245px;
  }

  .category-ring {
    width: 185px;
    height: 185px;
  }
}

    .category-card:hover .category-art {
      transform: translateY(-7px);
      box-shadow: var(--shadow);
    }

    .category-card h3 {
      margin: 18px 0 1px;
      font-size: 1.25rem;
    }

    .category-card p {
      margin: 0;
      color: var(--muted);
    }

    /* Products */

    .products {
      background: var(--light);
    }

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

    .product-card {
      position: relative;
      padding: 22px;
      background: var(--white);
      border-radius: 24px;
      box-shadow: 0 10px 35px rgba(48, 30, 57, 0.08);
    }

    .product-image {
      min-height: 260px;
      display: grid;
      place-items: center;
      background: #fff5ed;
      border-radius: 18px;
    }

    .badge {
      position: absolute;
      z-index: 2;
      top: 34px;
      left: 34px;
      padding: 5px 12px;
      color: var(--white);
      background: var(--pink);
      border-radius: 999px;
      font-size: 0.72rem;
      font-weight: 800;
    }

    .stars {
      margin-top: 15px;
      color: #ffb000;
      letter-spacing: 2px;
    }

    .product-card h3 {
      margin: 6px 0 0;
      font-size: 1.15rem;
    }

    .product-card p {
      margin: 3px 0 15px;
      color: var(--muted);
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .product-footer button {
      width: 43px;
      height: 43px;
      border: 0;
      background: var(--yellow);
      border-radius: 50%;
      cursor: pointer;
    }

    /* Articles */

    .article-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .article-image {
      min-height: 250px;
      display: grid;
      place-items: center;
      padding: 25px;
      color: var(--white);
      background:
        linear-gradient(145deg, var(--yellow), var(--pink));
      border-radius: 24px;
      text-align: center;
      font-size: 1.6rem;
      font-weight: 800;
    }

    .article-image.green {
      background:
        linear-gradient(145deg, #67bd50, #f2c94c);
    }

    .article-image.purple {
      background:
        linear-gradient(145deg, #593378, #e96899);
    }

    .article-meta {
      margin: 17px 0 4px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .article-card h3 {
      font-size: 1.3rem;
      line-height: 1.35;
    }

    /* Footer */

    .footer {
      color: #eee7f1;
      background: var(--dark-purple);
    }

    .footer .brand {
      color: var(--white);
    }

    .footer p {
      color: #cec4d3;
    }

    .footer h3 {
      color: var(--white);
    }

    .newsletter-form {
      width: 100%;
      max-width: 600px;
      display: flex;
    }

    .newsletter-form input {
      min-width: 0;
      flex: 1;
      padding: 14px 22px;
      border: 0;
      border-radius: 999px 0 0 999px;
      outline: none;
    }

    .newsletter-form button {
      border-radius: 0 999px 999px 0;
    }

    .back-top {
      width: 48px;
      height: 48px;
      position: fixed;
      z-index: 50;
      right: 22px;
      bottom: 22px;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--pink);
      border-radius: 50%;
      box-shadow: var(--shadow);
      font-size: 1.4rem;
      font-weight: 800;
    }

    /* Responsive */

    @media (max-width: 1050px) {
      .category-grid {
        grid-template-columns: repeat(3, 1fr);
      }

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

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

      .buy-options {
        width: 100%;
        max-width: 520px;
        grid-column: 1 / -1;
        margin: 0 auto;
      }

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

      .footer-grid > div:last-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 800px) {.section {
        padding: 75px 0;
      }

      .navbar,
.nav-inner {
        min-height: 74px;
      }

      .menu-toggle {
        display: block;
      }

      .nav-menu {
        display: none;
        position: absolute;
        top: 74px;
        right: 20px;
        left: 20px;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        border-radius: 18px;
        box-shadow: var(--shadow);
      }

      .nav-menu.open {
        display: flex;
      }

      .nav-menu a {
        padding: 12px;
      }

      .hero,
.hero-grid {
        min-height: auto;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 70px;
        text-align: center;
      }

      .hero-copy > p {
        margin-right: auto;
        margin-left: auto;
      }

      .hero-selector {
        justify-content: center;
      }

      .hero-visual {
        min-height: 500px;
      }

      .category-grid {
        display: flex;
        overflow-x: auto;
        padding: 10px 2px 20px;
        scroll-snap-type: x mandatory;
      }

      .category-card {
        flex: 0 0 72%;
        scroll-snap-align: center;
      }

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

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

      .product-image {
        min-height: 320px;
      }

      .newsletter-form {
        max-width: none;
      }
}

    @media (max-width: 520px) {.container {
        width: min(100% - 28px, 1180px);
      }

      .hero h1 {
        font-size: 3.4rem;
      }

      .hero-thumb {
        width: 62px;
      }

      .hero-visual {
        min-height: 420px;
      }

      .newsletter-form {
        flex-direction: column;
        gap: 10px;
      }

      .newsletter-form input,
.newsletter-form button {
        border-radius: 999px;
      }
}

    /* Shared editable placeholder image used throughout the page. */
    .site-placeholder-image {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .category-art .site-placeholder-image {
      width: 76%;
      height: 88%;
      filter: drop-shadow(0 12px 12px rgba(44, 21, 53, 0.18));
    }

    .article-image {
      overflow: hidden;
    }

    .product-image .site-placeholder-image {
      width: 82%;
      height: 92%;
      object-fit: contain;
    }

    .article-image .site-placeholder-image {
      object-fit: cover;
    }

    /* Responsive layout hardening */
    body {
      overflow-x: hidden;
    }

    .hero-grid > *,
.product-grid > *,
.article-grid > * {
      min-width: 0;
    }

    .hero-visual {
      max-width: 100%;
    }

    #hero-main-image {
      max-width: min(100%, 560px);
      height: clamp(430px, 52vw, 620px);
    }

    /* Six centered drink categories */
    .category-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      align-items: start;
      gap: 18px;
    }

    .category-card {
      min-width: 0;
    }

    .category-art {
      width: 100%;
      height: auto;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
    }

    .category-art .site-placeholder-image {
      width: 74%;
      height: 88%;
      margin: auto;
      object-fit: contain;
      object-position: 50% 50%;
    }

    @media (max-width: 1180px) {.category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
      }
}

    @media (max-width: 1050px) {.category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
      }
}

    @media (max-width: 900px) {.hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        padding-top: 65px;
        text-align: center;
      }

      .hero-copy > p {
        margin-right: auto;
        margin-left: auto;
      }

      .hero-selector {
        justify-content: center;
      }
}

    @media (max-width: 800px) {.category-grid {
        display: grid;
        width: 100%;
        max-width: 560px;
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        margin-right: auto;
        margin-left: auto;
        overflow: visible;
        scroll-snap-type: none;
      }

      .category-card {
        width: 100%;
      }

      .category-art .site-placeholder-image {
        width: 70%;
        height: 86%;
      }

      .category-art {
        width: min(100%, 390px);
        margin-right: auto;
        margin-left: auto;
      }
}

    @media (max-width: 520px) {.section-heading h2 {
        font-size: clamp(2.15rem, 11vw, 3rem);
      }

      .category-grid {
        max-width: 420px;
        gap: 20px;
      }

      .category-card h3 {
        font-size: 1rem;
      }

      .category-card p {
        font-size: 0.88rem;
      }
}
    /* ========================================
   IMPROVED DRINK CATEGORY SECTION
======================================== */

.category-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(255, 91, 141, 0.1),
      transparent 22%
    ),
    radial-gradient(
      circle at 92% 80%,
      rgba(255, 196, 61, 0.12),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fff8fb 100%
    );
}

.category-section::before,
.category-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.category-section::before {
  width: 260px;
  height: 260px;
  top: -150px;
  left: -110px;
  border: 45px solid rgba(255, 91, 141, 0.07);
}

.category-section::after {
  width: 320px;
  height: 320px;
  right: -170px;
  bottom: -190px;
  border: 55px solid rgba(255, 196, 61, 0.08);
}

.category-section .container {
  position: relative;
  z-index: 2;
}

.category-section .section-heading {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 58px;
  margin-left: auto;
}

.category-section .eyebrow {
  margin-bottom: 10px;
  color: #ff4f87;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.category-section .section-heading h2 {
  margin-bottom: 16px;
  color: #21162d;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.category-section .section-heading h2 span {
  position: relative;
  display: inline-block;
  color: #f28d00;
}

.category-section .section-heading h2 span::after {
  content: "";
  height: 10px;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 3px;
  left: 0;
  background: rgba(255, 196, 61, 0.5);
  border-radius: 999px;
  transform: rotate(-1.5deg);
}

.category-intro {
  max-width: 620px;
  margin: 0 auto;
  color: #716879;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Six-card desktop grid */

.category-grid {
  display: grid;
  grid-template-columns:
    repeat(6, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

/* Category card */

.category-card {
  min-width: 0;
  position: relative;
  padding: 18px 12px 24px;
  overflow: hidden;
  border: 1px solid rgba(54, 34, 65, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 12px 35px rgba(55, 31, 68, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.category-card:hover {
  z-index: 3;
  border-color: rgba(255, 91, 141, 0.28);

  box-shadow:
    0 24px 55px rgba(55, 31, 68, 0.16);

  transform: translateY(-10px);
}

/* Small decorative number */

.category-card::before {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 16px;
  color: rgba(33, 22, 45, 0.3);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}


/* Circular product area */

.category-art {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 6px solid #ffffff;
  border-radius: 50%;

  box-shadow:
    0 14px 30px rgba(52, 30, 62, 0.13),
    inset 0 0 0 1px rgba(52, 30, 62, 0.04);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.category-card:hover .category-art {
  box-shadow:
    0 20px 38px rgba(52, 30, 62, 0.2),
    inset 0 0 0 1px rgba(52, 30, 62, 0.04);

  transform: scale(1.04);
}

.category-art .site-placeholder-image,
.category-art img {
  width: 76%;
  height: 88%;
  display: block;
  margin: auto;
  object-fit: contain;
  object-position: center;

  filter:
    drop-shadow(
      0 12px 10px
      rgba(45, 24, 55, 0.2)
    );

  transition:
    transform 0.35s ease;
}

.category-card:hover .category-art img {
  transform:
    translateY(-4px)
    scale(1.07);
}

/* Product titles */

.category-card h3 {
  margin: 20px 0 3px;
  color: #21162d;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.25;

  transition:
    color 0.25s ease;
}

.category-card:hover h3 {
  color: #ff4f87;
}

.category-card p {
  margin: 0;
  color: #83778a;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ========================================
   TABLET: SAME BEHAVIOR AS TRENDING DRINKS
======================================== */

@media (max-width: 1050px) {
  .category-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .category-card {
    padding: 24px;
  }

  .category-art {
    width: min(100%, 330px);
    margin: 0 auto;
  }
}

/* ========================================
   MOBILE: ONE CARD PER ROW
======================================== */

@media (max-width: 800px) {
  .category-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .category-section .section-heading {
    margin-bottom: 38px;
  }

  .category-section .section-heading h2 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .category-grid {
    width: 100%;
    max-width: 520px;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-right: auto;
    margin-left: auto;
  }

  .category-card {
    padding: 25px;
  }

  .category-art {
    width: min(100%, 340px);
  }

  .category-card h3 {
    font-size: 1.25rem;
  }

  .category-section .slider-dots {
    display: none;
  }
}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {
  .category-section .section-heading h2 {
    font-size: 2.55rem;
  }

  .category-intro {
    font-size: 0.95rem;
  }

  .category-card {
    padding: 20px;
    border-radius: 24px;
  }

  .category-art {
    width: min(100%, 290px);
  }
}
/* ========================================
   BRIGHT MANGO ABOUT SECTION
======================================== */

.about-impact {
  --about-white: #ffffff;
  --about-cream: #fff8eb;
  --about-dark: #21162d;
  --about-muted: #716879;
  --about-orange: #f28d00;
  --about-gold: #ffc642;

  min-height: 820px;
  position: relative;
  overflow: hidden;
  color: var(--about-white);

  background:
    radial-gradient(
      circle at 80% 35%,
      rgba(255, 255, 255, 0.25),
      transparent 33%
    ),
    radial-gradient(
      circle at 12% 85%,
      rgba(255, 196, 61, 0.28),
      transparent 25%
    ),
    linear-gradient(
      120deg,
      var(--about-orange) 0%,
      #f99e0b 48%,
      var(--about-gold) 100%
    );
}

/* ========================================
   DECORATIVE CIRCLES
======================================== */

.about-impact::before,
.about-impact::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-impact::before {
  width: 420px;
  height: 420px;
  top: -250px;
  right: -140px;

  border: 70px solid
    rgba(255, 255, 255, 0.11);
}

.about-impact::after {
  width: 300px;
  height: 300px;
  bottom: -200px;
  left: -130px;

  border: 55px solid
    rgba(255, 255, 255, 0.09);
}

.about-decoration {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(8px);
}

.about-decoration-one {
  width: 210px;
  height: 210px;
  top: 70px;
  left: 4%;
  background:
    rgba(255, 255, 255, 0.1);
}

.about-decoration-two {
  width: 180px;
  height: 180px;
  right: 7%;
  bottom: 60px;
  background:
    rgba(255, 255, 255, 0.13);
}

/* ========================================
   MAIN GRID
======================================== */

.about-impact-grid {
  min-height: 650px;
  position: relative;
  z-index: 2;
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  align-items: center;

  gap: clamp(
    55px,
    7vw,
    100px
  );
}

.about-impact-grid > * {
  min-width: 0;
}

/* ========================================
   PRODUCT SHOWCASE
======================================== */

.about-showcase {
  min-width: 0;
  position: relative;
}

.about-product-stage {
  width: min(100%, 530px);
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 auto;

  border: 1px solid
    rgba(255, 255, 255, 0.4);

  border-radius:
    48% 48% 34px 34px;

  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(255, 255, 255, 0.22),
      transparent 52%
    ),
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.07)
    );

  box-shadow:
    0 35px 80px
    rgba(111, 58, 0, 0.2),
    inset 0 1px 0
    rgba(255, 255, 255, 0.4);

  backdrop-filter: blur(8px);
}

.about-product-stage::before {
  content: "";
  width: 120px;
  height: 9px;
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  margin: auto;

  background:
    rgba(93, 47, 0, 0.28);

  border-radius: 50%;
  filter: blur(9px);
}

/* Signature label */

.about-product-label {
  position: absolute;
  z-index: 5;
  top: 28px;
  left: 30px;
  padding: 7px 14px;

  color: var(--about-dark);
  background: var(--about-white);

  border-radius: 999px;

  box-shadow:
    0 12px 28px
    rgba(118, 60, 0, 0.18);

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

/* Product circle */

.about-product-circle {
  width: 78%;
  aspect-ratio: 1;
  position: absolute;
  z-index: 1;

  border: 2px solid
    rgba(255, 255, 255, 0.7);

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 52% 38%,
      rgba(255, 255, 255, 0.4),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.17),
      rgba(255, 255, 255, 0.06)
    );

  box-shadow:
    0 25px 55px
    rgba(134, 69, 0, 0.2);
}

.about-product-circle::before {
  content: "";
  position: absolute;
  inset: 18px;

  border: 1px solid
    rgba(255, 255, 255, 0.28);

  border-radius: 50%;
}

/* Main product image */

.about-product-image {
  width: 82%;
  height: 560px;
  position: relative;
  z-index: 3;
  display: block;
  object-fit: contain;

  filter:
    drop-shadow(
      0 30px 24px
      rgba(93, 47, 0, 0.28)
    );

  transition:
    transform 0.35s ease;
}

.about-product-stage:hover
.about-product-image {
  transform:
    translateY(-7px)
    scale(1.025);
}

/* ========================================
   FLOATING CARDS
======================================== */

.about-mini-card {
  min-width: 210px;
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;

  color: var(--about-dark);

  background:
    rgba(255, 255, 255, 0.97);

  border: 1px solid
    rgba(255, 255, 255, 0.8);

  border-radius: 17px;

  box-shadow:
    0 18px 42px
    rgba(107, 54, 0, 0.18);
}

.about-mini-card-left {
  bottom: 90px;
  left: -35px;
}

.about-mini-card-right {
  right: -35px;
  bottom: 185px;
}

.about-mini-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;

  color: var(--about-white);

  background:
    linear-gradient(
      145deg,
      var(--about-orange),
      #ffb31f
    );

  border-radius: 50%;

  box-shadow:
    0 8px 18px
    rgba(242, 141, 0, 0.25);
}

.about-mini-card strong,
.about-mini-card small {
  display: block;
}

.about-mini-card strong {
  font-size: 0.9rem;
}

.about-mini-card small {
  margin-top: 1px;
  color: #776b7e;
  font-size: 0.75rem;
}

/* ========================================
   TEXT AREA
======================================== */

.about-impact-copy {
  min-width: 0;
}

.about-impact-copy h2 {
  margin-bottom: 24px;
  color: var(--about-white);

  font-size: clamp(
    3.2rem,
    5.8vw,
    5.6rem
  );

  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-impact-copy h2 span {
  color: var(--about-dark);
}

.about-lead {
  max-width: 650px;
  margin-bottom: 32px;

  color:
    rgba(255, 255, 255, 0.92);

  font-size: 1.08rem;
  line-height: 1.8;
}

/* ========================================
   BENEFIT CARDS
======================================== */

.about-benefits {
  display: grid;
  gap: 12px;
}

.about-benefit-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 15px;
  padding: 17px 19px;

  border: 1px solid
    rgba(255, 255, 255, 0.7);

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.94);

  box-shadow:
    0 13px 30px
    rgba(113, 57, 0, 0.12);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.about-benefit-card:hover {
  border-color: var(--about-white);
  background: var(--about-white);

  box-shadow:
    0 20px 42px
    rgba(113, 57, 0, 0.2);

  transform: translateX(7px);
}

.about-benefit-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;

  color: var(--about-white);

  background:
    linear-gradient(
      135deg,
      var(--about-orange),
      #ffb31f
    );

  border-radius: 13px;

  box-shadow:
    0 8px 20px
    rgba(242, 141, 0, 0.24);

  font-size: 0.76rem;
  font-weight: 900;
}

.about-benefit-card h3 {
  margin: 0 0 3px;
  color: var(--about-dark);
  font-size: 1rem;
}

.about-benefit-card p {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ========================================
   ACTIONS
======================================== */

.about-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}

.about-primary-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 24px;

  color: var(--about-dark);
  background: var(--about-white);

  border-radius: 999px;
  font-weight: 900;

  box-shadow:
    0 16px 35px
    rgba(105, 52, 0, 0.2);

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-primary-button:hover {
  color: var(--about-dark);
  background: var(--about-cream);

  box-shadow:
    0 22px 45px
    rgba(105, 52, 0, 0.28);

  transform: translateY(-3px);
}

.about-primary-button span {
  color: var(--about-orange);
  font-size: 1.2rem;
}

.about-quality-note strong,
.about-quality-note span {
  display: block;
}

.about-quality-note strong {
  color: var(--about-dark);
  font-size: 0.88rem;
}

.about-quality-note span {
  color:
    rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
}

/* ========================================
   MEDIUM DESKTOP
   901px–1180px
======================================== */

@media (max-width: 1180px) {
  .about-impact-grid {
    grid-template-columns:
      minmax(0, 0.92fr)
      minmax(0, 1.08fr);

    gap: 50px;
  }

  .about-product-stage {
    min-height: 590px;
  }

  .about-product-image {
    height: 515px;
  }

  .about-mini-card {
    min-width: 185px;
  }

  .about-mini-card-left {
    left: -15px;
  }

  .about-mini-card-right {
    right: -15px;
  }

  .about-impact-copy h2 {
    font-size: clamp(
      3rem,
      5.5vw,
      4.8rem
    );
  }
}

/* ========================================
   TABLET
   701px–900px
======================================== */

@media (max-width: 900px) {
  .about-impact {
    min-height: auto;
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .about-impact-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-showcase {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-impact-copy {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }

  .about-product-stage {
    width: min(100%, 540px);
  }

  .about-impact-copy h2 {
    font-size: clamp(
      3rem,
      9vw,
      4.8rem
    );
  }
}

/* ========================================
   SMALL TABLET
   581px–700px
======================================== */

@media (max-width: 700px) {
  .about-impact {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .about-product-stage {
    min-height: 550px;
  }

  .about-product-image {
    width: 86%;
    height: 480px;
  }

  .about-product-circle {
    width: 82%;
  }

  .about-mini-card-left {
    bottom: 38px;
    left: 16px;
  }

  .about-mini-card-right {
    right: 16px;
    bottom: 115px;
  }

  .about-impact-copy h2 {
    font-size: clamp(
      2.8rem,
      11vw,
      4rem
    );
  }
}

/* ========================================
   MOBILE
   401px–580px
======================================== */

@media (max-width: 580px) {
  .about-impact {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .about-impact-grid {
    gap: 55px;
  }

  .about-product-stage {
    width: 100%;
    min-height: 500px;

    border-radius:
      42% 42% 28px 28px;
  }

  .about-product-label {
    top: 20px;
    left: 20px;
    font-size: 0.64rem;
  }

  .about-product-circle {
    width: 84%;
  }

  .about-product-image {
    width: 90%;
    height: 425px;
  }

  .about-mini-card {
    min-width: 0;
    gap: 8px;
    padding: 10px 11px;
  }

  .about-mini-card-left {
    bottom: 24px;
    left: 12px;
  }

  .about-mini-card-right {
    right: 12px;
    bottom: 90px;
  }

  .about-mini-icon {
    width: 31px;
    height: 31px;
  }

  .about-mini-card strong {
    font-size: 0.74rem;
  }

  .about-mini-card small {
    font-size: 0.65rem;
  }

  .about-brand-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-brand-line::after {
    margin-left: 0;
  }

  .about-brand-line img {
    width: 45px;
    height: 45px;
  }

  .about-impact-copy h2 {
    font-size: clamp(
      2.7rem,
      13vw,
      3.8rem
    );
  }

  .about-lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-benefit-card {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 15px;
  }

  .about-benefit-number {
    width: 38px;
    height: 38px;
  }

  .about-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-primary-button {
    width: 100%;
  }
}

/* ========================================
   VERY SMALL MOBILE
   400px and below
======================================== */

@media (max-width: 400px) {
  .about-product-stage {
    min-height: 610px;
    align-content: center;
    padding: 65px 14px 18px;
  }

  .about-product-image {
    width: 96%;
    height: 370px;
  }

  .about-product-circle {
    width: 88%;
    top: 75px;
  }

  .about-mini-card {
    width: calc(100% - 28px);
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 8px 14px;
  }

  .about-impact-copy h2 {
    font-size: 2.55rem;
  }

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

  .about-quality-note {
    width: 100%;
    text-align: center;
  }
}
/* ========================================
   IMPACTFUL TRENDING PRODUCTS
======================================== */

.products-impact {
  --product-dark: #21162d;
  --product-muted: #716879;
  --product-pink: #ff5687;
  --product-orange: #f28d00;
  --product-yellow: #ffc642;
  --product-white: #ffffff;

  position: relative;
  overflow: hidden;
  background: #fbf8fc;
}

.products-impact::before,
.products-impact::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.products-impact::before {
  width: 360px;
  height: 360px;
  top: -240px;
  left: -170px;
  border: 60px solid
    rgba(255, 86, 135, 0.05);
}

.products-impact::after {
  width: 310px;
  height: 310px;
  right: -170px;
  bottom: -210px;
  border: 55px solid
    rgba(255, 198, 66, 0.07);
}

.products-impact .container {
  position: relative;
  z-index: 2;
}

/* ========================================
   SECTION HEADING
======================================== */

.products-heading {
  width: min(100%, 760px);
  margin-right: auto;
  margin-bottom: 58px;
  margin-left: auto;
}

.products-heading .eyebrow {
  margin-bottom: 10px;
  color: var(--product-pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.products-heading h2 {
  margin-bottom: 16px;
  color: var(--product-dark);
  font-size: clamp(
    3rem,
    5vw,
    4.8rem
  );
  line-height: 1;
  letter-spacing: -0.055em;
}

.products-heading h2 span {
  position: relative;
  display: inline-block;
  color: var(--product-orange);
}

.products-heading h2 span::after {
  content: "";
  height: 10px;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 3px;
  left: 0;

  background:
    rgba(255, 198, 66, 0.48);

  border-radius: 999px;
  transform: rotate(-1.5deg);
}

.products-intro {
  width: min(100%, 600px);
  margin: 0 auto;
  color: var(--product-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ========================================
   PRODUCT GRID
======================================== */

.products-impact .product-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  align-items: stretch;
  gap: 26px;
}

.products-impact .product-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 0;

  border: 1px solid
    rgba(48, 27, 58, 0.08);

  border-radius: 28px;
  background: var(--product-white);

  box-shadow:
    0 15px 42px
    rgba(48, 27, 58, 0.09);

  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.products-impact .product-card:hover {
  z-index: 3;

  border-color:
    rgba(242, 141, 0, 0.22);

  box-shadow:
    0 28px 65px
    rgba(48, 27, 58, 0.17);

  transform: translateY(-11px);
}

/* ========================================
   PRODUCT IMAGE
======================================== */

.products-impact .product-image {
  min-height: 285px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 16px 16px 0;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #ffca45,
      #ff655f
    );
}

.product-halo {
  width: 190px;
  height: 190px;
  position: absolute;
  z-index: 1;

  border: 1px solid
    rgba(255, 255, 255, 0.8);

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.28);

  box-shadow:
    0 18px 38px
    rgba(102, 52, 0, 0.08);

  transition:
    transform 0.35s ease;
}

.products-impact .product-image img {
  width: 86%;
  height: 260px;
  position: relative;
  z-index: 2;
  display: block;
  object-fit: contain;

  filter:
    drop-shadow(
      0 17px 13px
      rgba(52, 29, 60, 0.2)
    );

  transition:
    transform 0.35s ease;
}

.products-impact
.product-card:hover
.product-image img {
  transform:
    translateY(-7px)
    scale(1.06);
}

.products-impact
.product-card:hover
.product-halo {
  transform: scale(1.12);
}

/* Individual image colors */

.product-oreo .product-image {
  background:
    linear-gradient(
      145deg,
      #67405e,
      #e56591
    );
}

.product-cheese .product-image {
  background:
    linear-gradient(
      145deg,
      #ffe052,
      #ff981f
    );
}

.product-buko .product-image {
  background:
    linear-gradient(
      145deg,
      #65daa8,
      #35b98b
    );
}

.product-halo-mango .product-image {
  background:
    linear-gradient(
      145deg,
      #ff8eb9,
      #f34f88
    );
}

.product-melon .product-image {
  background:
    linear-gradient(
      145deg,
      #8dd651,
      #d9d83f
    );
}

.product-tropical .product-image {
  background:
    linear-gradient(
      145deg,
      #ffbd3f,
      #ff665f
    );
}

.product-avocado .product-image {
  background:
    linear-gradient(
      145deg,
      #62c653,
      #badb3d
    );
}

/* ========================================
   PRODUCT BADGES
======================================== */

.products-impact .badge {
  position: absolute;
  z-index: 6;
  top: 30px;
  left: 30px;
  padding: 7px 13px;

  color: var(--product-white);

  background:
    linear-gradient(
      135deg,
      #ff5687,
      #f23f76
    );

  border-radius: 999px;

  box-shadow:
    0 9px 20px
    rgba(242, 63, 118, 0.24);

  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.products-impact .badge-dark {
  background:
    linear-gradient(
      135deg,
      #34213d,
      #21162d
    );

  box-shadow:
    0 9px 20px
    rgba(33, 22, 45, 0.2);
}

/* ========================================
   PRODUCT CONTENT
======================================== */

.product-content {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}

.products-impact .stars {
  margin: 0;
  color: #ffae00;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.rating-number {
  color: #998d9f;
  font-size: 0.75rem;
  font-weight: 700;
}

.products-impact .product-card h3 {
  margin: 0 0 9px;
  color: var(--product-dark);
  font-size: 1.15rem;
  line-height: 1.3;
}

.products-impact .product-card p {
  min-height: 68px;
  margin: 0 0 16px;
  color: var(--product-muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.product-tags span {
  padding: 5px 10px;
  color: #776a7d;
  background: #f6f1f7;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

/* ========================================
   PRICE AND ACTION
======================================== */

.products-impact .product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  padding-top: 17px;

  border-top: 1px solid
    rgba(48, 27, 58, 0.08);
}

.product-price small,
.product-price strong {
  display: block;
}

.product-price small {
  margin-bottom: 1px;
  color: #998d9f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price strong {
  color: var(--product-dark);
  font-size: 1.45rem;
  line-height: 1;
}

.products-impact
.product-footer button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;

  border: 0;
  border-radius: 50%;

  color: var(--product-dark);

  background:
    linear-gradient(
      135deg,
      var(--product-yellow),
      #ffae18
    );

  box-shadow:
    0 10px 22px
    rgba(242, 141, 0, 0.2);

  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.products-impact
.product-footer button:hover {
  color: var(--product-white);

  background:
    linear-gradient(
      135deg,
      var(--product-orange),
      #ffad17
    );

  transform: rotate(-8deg) scale(1.08);
}

/* ========================================
   FULL MENU BUTTON
======================================== */

.products-action {
  margin-top: 50px;
  text-align: center;
}

.products-menu-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 27px;

  color: var(--product-white);

  background:
    linear-gradient(
      135deg,
      var(--product-orange),
      #ffad18
    );

  border-radius: 999px;

  box-shadow:
    0 15px 35px
    rgba(242, 141, 0, 0.25);

  font-weight: 900;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.products-menu-button:hover {
  box-shadow:
    0 21px 42px
    rgba(242, 141, 0, 0.34);

  transform: translateY(-3px);
}

.products-menu-button span {
  font-size: 1.2rem;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1050px) {
  .products-impact .product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 25px;
  }

  .products-impact .product-image {
    min-height: 320px;
  }

  .products-impact .product-image img {
    height: 295px;
  }

  .products-impact .product-card p {
    min-height: auto;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {
  .products-impact {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .products-heading {
    margin-bottom: 40px;
  }

  .products-heading h2 {
    font-size: clamp(
      2.7rem,
      12vw,
      3.8rem
    );
  }

  .products-impact .product-grid {
    width: 100%;
    max-width: 540px;
    grid-template-columns: 1fr;
    margin-right: auto;
    margin-left: auto;
  }

  .products-impact .product-image {
    min-height: 340px;
  }

  .products-impact .product-image img {
    width: 80%;
    height: 315px;
  }

  .product-content {
    padding: 23px 24px 26px;
  }

  .products-impact .product-card h3 {
    font-size: 1.3rem;
  }

  .products-impact .product-card p {
    font-size: 0.95rem;
  }
}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {
  .products-heading h2 {
    font-size: 2.65rem;
  }

  .products-intro {
    font-size: 0.95rem;
  }

  .products-impact .product-card {
    border-radius: 24px;
  }

  .products-impact .product-image {
    min-height: 285px;
    margin: 12px 12px 0;
  }

  .products-impact .product-image img {
    width: 86%;
    height: 270px;
  }

  .product-halo {
    width: 175px;
    height: 175px;
  }

  .product-content {
    padding: 20px;
  }

  .products-impact .badge {
    top: 24px;
    left: 24px;
  }

  .products-action {
    margin-top: 36px;
  }

  .products-menu-button {
    width: 100%;
  }
}

/* ========================================
   IMPACTFUL ARTICLES
======================================== */

.articles-impact {
  --article-dark: #21162d;
  --article-muted: #716879;
  --article-pink: #ff5687;
  --article-orange: #f28d00;
  --article-yellow: #ffc642;

  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffaf2 100%
    );
}

.articles-impact::before,
.articles-impact::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.articles-impact::before {
  width: 310px;
  height: 310px;
  top: -205px;
  left: -155px;
  border: 55px solid rgba(255, 86, 135, 0.055);
}

.articles-impact::after {
  width: 330px;
  height: 330px;
  right: -190px;
  bottom: -230px;
  border: 60px solid rgba(255, 198, 66, 0.09);
}

.articles-impact .container {
  position: relative;
  z-index: 2;
}

.articles-heading {
  width: min(100%, 760px);
  margin-right: auto;
  margin-bottom: 55px;
  margin-left: auto;
}

.articles-heading .eyebrow {
  margin-bottom: 9px;
  color: var(--article-pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.articles-heading h2 {
  margin-bottom: 15px;
  color: var(--article-dark);
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.articles-heading h2 span {
  position: relative;
  display: inline-block;
  color: var(--article-orange);
}

.articles-heading h2 span::after {
  content: "";
  height: 9px;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 2px;
  left: 0;
  border-radius: 999px;
  background: rgba(255, 198, 66, 0.5);
  transform: rotate(-1.5deg);
}

.articles-intro {
  width: min(100%, 590px);
  margin: 0 auto;
  color: var(--article-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.articles-impact .article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 27px;
}

.articles-impact .article-card {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(48, 27, 58, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 15px 42px rgba(48, 27, 58, 0.09);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.articles-impact .article-card:hover {
  border-color: rgba(242, 141, 0, 0.22);
  box-shadow: 0 28px 65px rgba(48, 27, 58, 0.16);
  transform: translateY(-10px);
}

.articles-impact .article-image {
  min-height: 320px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 16px 16px 0;
  padding: 0;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffbd42, #ff648b);
}

.articles-impact .article-image::before {
  content: "";
  width: 215px;
  height: 215px;
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.articles-impact .article-image.green {
  background: linear-gradient(145deg, #74c454, #f2cc46);
}

.articles-impact .article-image.purple {
  background: linear-gradient(145deg, #63367f, #e66199);
}

.articles-impact .article-image .site-placeholder-image {
  width: 84%;
  height: 295px;
  position: relative;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 17px 13px rgba(52, 29, 60, 0.22));
  transition: transform 0.35s ease;
}

.articles-impact .article-card:hover .site-placeholder-image {
  transform: translateY(-7px) scale(1.055);
}

.article-topic {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 17px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--article-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(48, 27, 58, 0.13);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 23px 25px;
}

.articles-impact .article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 10px;
  color: #95899c;
  font-size: 0.75rem;
  font-weight: 700;
}

.articles-impact .article-card h3 {
  margin: 0 0 11px;
  color: var(--article-dark);
  font-size: 1.3rem;
  line-height: 1.3;
}

.article-excerpt {
  margin: 0 0 21px;
  color: var(--article-muted);
  font-size: 0.91rem;
  line-height: 1.6;
}

.article-read {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(48, 27, 58, 0.08);
  color: var(--article-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.article-read span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--article-yellow), #ffad18);
  box-shadow: 0 9px 20px rgba(242, 141, 0, 0.2);
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.articles-impact .article-card:hover .article-read span {
  transform: translateX(4px);
}

@media (max-width: 960px) {.articles-impact .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {.articles-impact {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .articles-heading {
    margin-bottom: 40px;
  }

  .articles-heading h2 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
  }

  .articles-impact .article-grid {
    width: 100%;
    max-width: 540px;
    grid-template-columns: 1fr;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 480px) {.articles-heading h2 {
    font-size: 2.6rem;
  }

  .articles-intro {
    font-size: 0.95rem;
  }

  .articles-impact .article-card {
    border-radius: 24px;
  }

  .articles-impact .article-image {
    min-height: 280px;
    margin: 12px 12px 0;
  }

  .articles-impact .article-image .site-placeholder-image {
    height: 260px;
  }

  .article-body {
    padding: 20px;
  }
}
/* ========================================
   LARGER CATEGORY CARDS
   Same layout behavior as Trending Drinks
======================================== */

.category-impact .category-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 26px;
}

/* Center the final two cards */
.category-impact
.category-card:nth-child(5) {
  grid-column: 2;
}

.category-impact
.category-card:nth-child(6) {
  grid-column: 3;
}

.category-impact .category-card {
  min-height: 490px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 28px;
}

/* Larger product image area */

.category-impact .category-art {
  width: 100%;
  height: 315px;
  min-height: 315px;
  border-radius: 22px;
}

.category-impact .category-art img {
  width: 86%;
  height: 290px;
  object-fit: contain;
}

.category-impact .category-ring {
  width: 215px;
  height: 215px;
}

/* Larger category number */

.category-impact .category-number {
  top: 27px;
  left: 27px;
  font-size: 0.75rem;
}

/* Larger card content */

.category-impact .category-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 21px 8px 8px;
}

.category-impact
.category-content h3 {
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.category-impact
.category-content p {
  margin-bottom: 20px;
  font-size: 0.92rem;
}

.category-impact .category-link {
  margin-top: auto;
  padding-top: 17px;
  font-size: 0.84rem;
}

.category-impact
.category-link b {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

/* Tablet: two cards per row */

@media (max-width: 1050px) {
  .category-impact .category-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 25px;
  }

  .category-impact
  .category-card:nth-child(5),
  .category-impact
  .category-card:nth-child(6) {
    grid-column: auto;
  }

  .category-impact .category-art {
    height: 340px;
    min-height: 340px;
  }

  .category-impact
  .category-art img {
    height: 315px;
  }

  .category-impact
  .category-ring {
    width: 235px;
    height: 235px;
  }
}

/* Mobile: one card per row */

@media (max-width: 700px) {
  .category-impact .category-grid {
    width: 100%;
    max-width: 540px;
    grid-template-columns: 1fr;
    margin-right: auto;
    margin-left: auto;
  }

  .category-impact .category-card {
    min-height: 0;
  }

  .category-impact .category-art {
    height: 360px;
    min-height: 360px;
  }

  .category-impact
  .category-art img {
    height: 335px;
  }

  .category-impact
  .category-ring {
    width: 250px;
    height: 250px;
  }
}

/* Small mobile */

@media (max-width: 480px) {
  .category-impact .category-card {
    padding: 12px;
    border-radius: 24px;
  }

  .category-impact .category-art {
    height: 300px;
    min-height: 300px;
  }

  .category-impact
  .category-art img {
    width: 88%;
    height: 280px;
  }

  .category-impact
  .category-ring {
    width: 205px;
    height: 205px;
  }

  .category-impact
  .category-content {
    padding: 20px 9px 9px;
  }
}

/* ========================================
   SOCIAL IMPACT SECTION
======================================== */

.social-impact {
  --social-dark: #21162d;
  --social-orange: #f28d00;
  --social-yellow: #ffc642;
  --social-pink: #ff5687;

  position: relative;
  overflow: hidden;
  padding: 95px 0 0;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(255, 255, 255, 0.28),
      transparent 24%
    ),
    linear-gradient(
      115deg,
      #ef8f00 0%,
      #ffad18 52%,
      #ffc83e 100%
    );
}

.social-impact::before {
  content: "";
  width: 470px;
  height: 470px;
  position: absolute;
  top: -290px;
  left: -190px;
  border: 70px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.social-impact-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  margin-bottom: 55px;
}

.social-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.social-impact-heading h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.social-impact-heading h2 span {
  color: var(--social-dark);
}

.social-impact-heading p {
  width: min(100%, 590px);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.social-follow-button {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 20px 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  color: var(--social-dark);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 40px rgba(97, 49, 0, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.social-follow-button:hover {
  box-shadow: 0 25px 50px rgba(97, 49, 0, 0.28);
  transform: translateY(-5px);
}

.social-follow-button span {
  color: var(--social-pink);
  font-size: 1.35rem;
  font-weight: 900;
}

.social-follow-button b {
  font-size: 0.85rem;
}

/* ========================================
   MODERN FOOTER
======================================== */

.footer-impact {
  position: relative;
  padding: 155px 0 0;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(255, 174, 24, 0.14),
      transparent 25%
    ),
    linear-gradient(
      145deg,
      #2b190f 0%,
      #1d1210 55%,
      #241315 100%
    );
}

.footer-newsletter {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 55px;
  margin-bottom: 75px;
  padding: 34px 38px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 174, 24, 0.16),
      rgba(255, 255, 255, 0.055)
    );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.newsletter-copy > span {
  color: #ffc642;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.newsletter-copy h2 {
  margin: 6px 0 8px;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1.2;
}

.newsletter-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter-form {
  display: flex;
  min-height: 58px;
  padding: 6px;
  border-radius: 999px;
  background: #ffffff;
}

.footer-newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 12px 20px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  color: #21162d;
  background: transparent;
}

.footer-newsletter-form button {
  min-width: 145px;
  padding: 12px 23px;
  border: 0;
  border-radius: 999px;
  color: #21162d;
  background:
    linear-gradient(
      135deg,
      #ffc642,
      #ffad18
    );
  font-weight: 900;
  cursor: pointer;
}

.footer-newsletter-form button span {
  margin-left: 7px;
}

/* Main footer columns */

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 70px;
  padding-bottom: 65px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 900;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
}

.footer-brand-column > p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

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

.footer-social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.footer-social-links a:hover {
  color: #21162d;
  background: #ffc642;
  transform: translateY(-3px);
}

.footer-column-label {
  display: block;
  margin-bottom: 6px;
  color: #ffc642;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.footer-main h3 {
  margin: 0 0 21px;
  color: #ffffff;
  font-size: 1.2rem;
}

.footer-contact address {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  line-height: 1.75;
}

.footer-contact > a {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-weight: 700;
}

.footer-contact small {
  display: block;
  margin-bottom: 1px;
  color: #ffc642;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 25px;
}

.footer-link-grid a {
  color: rgba(255, 255, 255, 0.76);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-link-grid a:hover {
  color: #ffc642;
  transform: translateX(4px);
}

/* Bottom footer */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-impact .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

/* Accessibility */

.visually-hidden {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ========================================
   RESPONSIVE FOOTER
======================================== */

@media (max-width: 1000px) {
  .social-gallery {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 700px) {.social-impact {
    padding-top: 75px;
  }

  .social-impact-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .social-follow-button {
    width: 100%;
  }

  .footer-impact {
    padding-top: 125px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-brand-column {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {.social-impact-heading h2 {
    font-size: 2.8rem;
  }

  .footer-impact {
    padding-top: 70px;
  }

  .footer-newsletter {
    margin-bottom: 55px;
    padding: 27px 20px;
    border-radius: 24px;
  }

  .footer-newsletter-form {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
  }

  .footer-newsletter-form input,
.footer-newsletter-form button {
    width: 100%;
    min-height: 50px;
    border-radius: 16px;
  }

  .footer-link-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   GREEN BRANCHES PAGE — SCOPED
======================================== */

body.branches-page {
  --ink: #14251a;
  --ink-soft: #3f5546;
  --white: #ffffff;
  --green-primary: #56bd00;
  --green-bright: #8be63f;
  --green-lime: #c7f56d;
  --green-medium: #63cb12;
  --green-deep: #2d8e00;
  --green-dark: #174c00;
  --green-soft: #edfadd;
  --green-pale: #fbfff6;
  --border: rgba(86, 189, 0, 0.2);
  --shadow: 0 18px 45px rgba(69, 139, 11, 0.13);
  --radius: 26px;
}

.branches-page *,
.branches-page *::before,
.branches-page *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.branches-page {
  margin: 0;
  color: var(--ink);
  background: var(--green-pale);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.branches-page.menu-open {
  overflow: hidden;
}

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

.branches-page a {
  color: inherit;
  text-decoration: none;
}

.branches-page button,
.branches-page input {
  font: inherit;
}

.branches-page button,
.branches-page a {
  -webkit-tap-highlight-color: transparent;
}

.branches-page .container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.branches-page .visually-hidden {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Header */

.branches-page .site-header {
  position: relative;
  z-index: 100;
}

.branches-page .navbar {
  min-height: 86px;
  border-bottom: 1px solid rgba(86, 189, 0, 0.2);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(86, 189, 0, 0.08);
}

.branches-page .nav-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.branches-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.branches-page .brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-primary), var(--green-deep));
  box-shadow: 0 8px 22px rgba(86, 189, 0, 0.25);
}

.branches-page .custom-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.branches-page .nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 30px);
  font-weight: 800;
}

.branches-page .nav-menu a {
  transition: color 180ms ease, transform 180ms ease;
}

.branches-page .nav-menu a:hover,
.branches-page .nav-menu .active-page {
  color: var(--green-deep);
}

.branches-page .nav-menu .nav-cta {
  padding: 11px 20px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--green-lime), var(--green-primary));
  box-shadow: 0 8px 18px rgba(86, 189, 0, 0.1);
}

.branches-page .nav-menu .nav-cta:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.branches-page .menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 13px;
  background: var(--green-soft);
  cursor: pointer;
}

.branches-page .menu-toggle span {
  width: 100%;
  height: 3px;
  display: block;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--green-primary);
}

/* Hero */

.branches-page .branches-hero {
  min-height: 610px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, #56bd00 0%, #72cf25 52%, #a8e95f 100%);
  background-size: 130% 130%;
  animation: heroFlow 10s ease-in-out infinite alternate;
}

.branches-page .branches-hero::before,
.branches-page .branches-hero::after {
  display: none;
}

.branches-page .branches-hero::before {
  width: 420px;
  height: 420px;
  top: -270px;
  left: -180px;
}

.branches-page .branches-hero::after {
  width: 360px;
  height: 360px;
  right: -175px;
  bottom: -200px;
}

.branches-page .branches-hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(38px, 6vw, 72px);
  padding-top: 55px;
  padding-bottom: 95px;
}

.branches-page .branches-eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.branches-page .branches-hero-copy h1 {
  margin: 0 0 23px;
  color: var(--white);
  font-size: clamp(3.6rem, 6vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-shadow: none;
}

.branches-page .branches-hero-copy h1 span {
  color: var(--green-dark);
}

.branches-page .branches-hero-copy > p {
  width: min(100%, 590px);
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  line-height: 1.75;
}

.branches-page .branches-hero-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 25px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(86, 189, 0, 0.16);
  font-weight: 900;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease,
    box-shadow 220ms ease;
}

.branches-page .branches-hero-button:hover {
  color: var(--ink);
  background: var(--green-primary);
  box-shadow: 0 18px 38px rgba(86, 189, 0, 0.2);
  transform: translateY(-4px);
}

.branches-page .branches-hero-visual {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}

.branches-page .branches-orbit {
  width: min(420px, 38vw);
  aspect-ratio: 1;
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(139, 230, 63, 0.28);
  animation: orbitFloat 7s ease-in-out infinite;
}

.branches-page .branches-count {
  width: min(270px, 25vw);
  aspect-ratio: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 7px solid rgba(139, 230, 63, 0.28);
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(145deg, #ffffff, #f1fbdc);
  box-shadow: 0 22px 48px rgba(86, 189, 0, 0.14);
  transform: rotate(-3deg);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.branches-page .branches-count:hover {
  box-shadow: 0 26px 55px rgba(86, 189, 0, 0.18);
  transform: rotate(0) scale(1.04);
}

.branches-page .branches-count strong {
  font-size: clamp(4.4rem, 7vw, 6rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.branches-page .branches-count span {
  margin-top: 13px;
  color: var(--green-deep);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.branches-page .branches-count small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-weight: 700;
}

/* Regional totals */

.branches-page .branch-summary {
  position: relative;
  z-index: 4;
  margin-top: -70px;
}

.branches-page .branch-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.branches-page .branch-summary article {
  min-height: 145px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, #f1fbe5);
  box-shadow: 0 14px 34px rgba(86, 189, 0, 0.1);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.branches-page .branch-summary article:hover {
  border-color: rgba(86, 189, 0, 0.62);
  box-shadow: 0 18px 40px rgba(86, 189, 0, 0.14);
  transform: translateY(-8px);
}

.branches-page .branch-summary article > span {
  position: absolute;
  top: 15px;
  right: 17px;
  color: rgba(20, 37, 26, 0.2);
  font-size: 0.76rem;
  font-weight: 900;
}

.branches-page .branch-summary article > strong {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--green-lime), var(--green-primary));
  box-shadow: 0 12px 25px rgba(86, 189, 0, 0.24);
  font-size: 2rem;
}

.branches-page .branch-summary article:nth-child(2) > strong {
  background: linear-gradient(145deg, #dbff9a, #76cf20);
}

.branches-page .branch-summary article:nth-child(3) > strong {
  background: linear-gradient(145deg, #a8eb54, #48a900);
}

.branches-page .branch-summary h2 {
  margin: 0 0 2px;
  font-size: 1.25rem;
}

.branches-page .branch-summary p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Branch directory */

.branches-page .branches-directory {
  position: relative;
  overflow: hidden;
  padding: 125px 0 110px;
  background: radial-gradient(circle at 0% 12%, rgba(139, 230, 63, 0.13), transparent 24%),
    radial-gradient(circle at 100% 82%, rgba(199, 245, 109, 0.16), transparent 27%),
    linear-gradient(180deg, #fbfff6, #ffffff);
}

.branches-page .branches-directory::before,
.branches-page .branches-directory::after {
  position: absolute;
  border: 52px solid rgba(86, 189, 0, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.branches-page .branches-directory::before {
  width: 250px;
  height: 250px;
  top: 260px;
  left: -160px;
}

.branches-page .branches-directory::after {
  width: 360px;
  height: 360px;
  right: -220px;
  bottom: -230px;
}

.branches-page .branches-directory .container {
  position: relative;
  z-index: 2;
}

.branches-page .branches-directory-heading {
  width: min(100%, 720px);
  margin: 0 auto 72px;
  text-align: center;
}

.branches-page .branches-directory-heading > span {
  display: block;
  margin-bottom: 9px;
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.branches-page .branches-directory-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.branches-page .branches-directory-heading h2 b {
  position: relative;
  color: var(--green-medium);
}

.branches-page .branches-directory-heading h2 b::after {
  height: 9px;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 2px;
  left: 0;
  border-radius: 999px;
  background: rgba(139, 230, 63, 0.42);
  content: "";
  transform: rotate(-1.5deg);
}

.branches-page .branches-directory-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}

/* Search */

.branches-page .branch-search-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(340px, 1.28fr);
  gap: 34px;
  align-items: center;
  margin: -12px 0 62px;
  padding: 30px 34px;
  overflow: hidden;
  border: 1px solid rgba(86, 189, 0, 0.42);
  border-radius: 28px;
  background: radial-gradient(circle at 94% 5%, rgba(255, 255, 255, 0.55), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(235, 255, 192, 0.48), transparent 35%),
    linear-gradient(120deg, #f0ffdf 0%, #a9e96c 48%, #56bd00 100%);
  box-shadow: 0 25px 55px rgba(69, 139, 11, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.branches-page .branch-search-panel::before {
  width: 150px;
  height: 240%;
  position: absolute;
  top: -70%;
  left: -230px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(22deg);
  animation: searchShine 7s ease-in-out infinite;
}

.branches-page .branch-search-panel::after {
  width: 205px;
  height: 205px;
  position: absolute;
  right: -62px;
  bottom: -88px;
  border: 28px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.branches-page .branch-search-copy,
.branches-page .branch-search-area {
  position: relative;
  z-index: 1;
}

.branches-page .branch-search-copy > span {
  display: block;
  margin-bottom: 7px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.branches-page .branch-search-copy h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  line-height: 1.08;
}

.branches-page .branch-search-copy p {
  margin: 9px 0 0;
  color: rgba(20, 37, 26, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.branches-page .branch-search-control {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 18px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(69, 139, 11, 0.17);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.branches-page .branch-search-control:focus-within {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 5px rgba(86, 189, 0, 0.2),
    0 18px 40px rgba(69, 139, 11, 0.2);
  transform: translateY(-2px);
}

.branches-page .branch-search-icon {
  flex: 0 0 auto;
  color: var(--green-deep);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  transform: rotate(-18deg);
}

.branches-page .branch-search-control input {
  min-width: 0;
  flex: 1 1 auto;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1rem;
}

.branches-page .branch-search-control input::placeholder {
  color: #708478;
  opacity: 1;
}

.branches-page .branch-search-control input::-webkit-search-cancel-button {
  display: none;
}

.branches-page #branch-search-clear {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  color: var(--green-dark);
  background: linear-gradient(135deg, var(--green-lime), var(--green-primary));
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.branches-page #branch-search-clear:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
}

.branches-page #branch-search-clear:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

.branches-page .branch-search-status {
  min-height: 1.35em;
  margin: 10px 3px 0;
  color: #17683a;
  font-size: 0.88rem;
  font-weight: 800;
}

/* Region blocks and cards */

.branches-page .region-block + .region-block {
  margin-top: 95px;
}

.branches-page .region-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 30px;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(0, 142, 57, 0.18);
}

.branches-page .region-heading span {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--green-deep);
  background: #edf9d9;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.branches-page .region-heading h2 {
  margin: 8px 0 0;
  font-size: 2.2rem;
  line-height: 1.1;
}

.branches-page .region-heading p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
  text-align: right;
}

.branches-page .branch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.branches-page .branch-grid-single {
  grid-template-columns: minmax(0, 380px);
}

.branches-page .branch-card {
  min-height: 235px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: linear-gradient(150deg, #ffffff 15%, #f0f9e1 100%);
  box-shadow: 0 12px 30px rgba(86, 189, 0, 0.09);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.branches-page .branch-card::after {
  height: 7px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--green-lime), var(--green-primary));
  content: "";
}

.branches-page .region-manila .branch-card::after {
  background: linear-gradient(90deg, #dbff9a, #76cf20);
}

.branches-page .region-batangas .branch-card::after {
  background: linear-gradient(90deg, #a8eb54, #48a900);
}

.branches-page .branch-card:hover {
  border-color: rgba(86, 189, 0, 0.68);
  box-shadow: 0 18px 38px rgba(86, 189, 0, 0.14);
  transform: translateY(-9px);
}

.branches-page .branch-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
}

.branches-page .branch-number {
  width: 58px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  color: var(--ink);
  background: linear-gradient(120deg, #f0ffdf 0%, #a9e96c 55%, #56bd00 100%);
  box-shadow: 0 8px 18px rgba(86, 189, 0, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}

.branches-page .region-manila .branch-number {
  background: linear-gradient(120deg, #f0ffdf 0%, #a9e96c 55%, #56bd00 100%);
}

.branches-page .region-batangas .branch-number {
  background: linear-gradient(120deg, #f0ffdf 0%, #a9e96c 55%, #56bd00 100%);
}

.branches-page .branch-area {
  max-width: 72%;
  padding: 6px 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 66, 0.12);
  border-radius: 999px;
  color: #17683a;
  background: #eef9dc;
  font-size: 0.72rem;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.branches-page .branch-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.branches-page .branch-card address {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.65;
}

.branches-page .branch-card-pending {
  border-style: dashed;
  background: linear-gradient(145deg, #ffffff, #eff9df);
}

.branches-page .branch-status {
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-deep);
  background: #e5f6ca;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.branches-page .branch-card[hidden],
.branches-page .region-block[hidden] {
  display: none !important;
}

/* Footer */

.branches-page .footer-impact {
  position: relative;
  padding: 105px 0 0;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(145deg, #f6ffe9 0%, #e3f7c9 55%, #cdefa8 100%);
}

.branches-page .footer-newsletter {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 55px;
  margin-bottom: 75px;
  padding: 34px 38px;
  border: 1px solid rgba(86, 189, 0, 0.25);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(215, 242, 181, 0.88));
  box-shadow: 0 24px 60px rgba(69, 139, 11, 0.14);
}

.branches-page .newsletter-copy > span,
.branches-page .footer-column-label,
.branches-page .footer-contact small {
  color: var(--green-primary);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.branches-page .newsletter-copy h2 {
  margin: 6px 0 8px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.branches-page .newsletter-copy p,
.branches-page .footer-brand-column > p,
.branches-page .footer-contact address {
  color: rgba(20, 37, 26, 0.72);
}

.branches-page .newsletter-copy h2,
.branches-page .footer-brand,
.branches-page .footer-main h3,
.branches-page .footer-contact > a {
  color: var(--ink);
}

.branches-page .newsletter-copy p {
  margin: 0;
}

.branches-page .footer-newsletter-form {
  min-height: 58px;
  display: flex;
  padding: 6px;
  border-radius: 999px;
  background: var(--white);
}

.branches-page .footer-newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 12px 20px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
}

.branches-page .footer-newsletter-form button {
  min-width: 145px;
  padding: 12px 23px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--green-lime), var(--green-primary));
  cursor: pointer;
  font-weight: 900;
}

.branches-page .footer-newsletter-form button span {
  margin-left: 7px;
}

.branches-page .footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: clamp(35px, 6vw, 70px);
  padding-bottom: 65px;
}

.branches-page .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 900;
}

.branches-page .footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.branches-page .footer-brand-column > p {
  max-width: 390px;
  margin: 0;
  line-height: 1.75;
}

.branches-page .footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.branches-page .footer-social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(86, 189, 0, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.branches-page .footer-social-links a:hover {
  color: var(--green-dark);
  background: var(--green-bright);
  transform: translateY(-3px);
}

.branches-page .footer-column-label {
  display: block;
  margin-bottom: 6px;
}

.branches-page .footer-main h3 {
  margin: 0 0 21px;
  font-size: 1.2rem;
}

.branches-page .footer-contact address {
  margin: 0 0 20px;
  font-style: normal;
  line-height: 1.75;
}

.branches-page .footer-contact > a {
  display: block;
  margin-top: 14px;
  font-weight: 700;
}

.branches-page .footer-contact small {
  display: block;
  margin-bottom: 1px;
  text-transform: uppercase;
}

.branches-page .footer-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 25px;
}

.branches-page .footer-link-grid a {
  color: rgba(20, 37, 26, 0.78);
  transition: color 180ms ease, transform 180ms ease;
}

.branches-page .footer-link-grid a:hover {
  color: var(--green-primary);
  transform: translateX(4px);
}

.branches-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  border-top: 1px solid rgba(86, 189, 0, 0.22);
}

.branches-page .footer-bottom p {
  margin: 0;
  color: rgba(20, 37, 26, 0.64);
  font-size: 0.84rem;
}

.branches-page .back-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: var(--green-dark);
  background: linear-gradient(145deg, var(--green-lime), var(--green-primary));
  box-shadow: 0 12px 28px rgba(86, 189, 0, 0.28);
  font-size: 1.25rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.branches-page .back-top:hover {
  box-shadow: 0 17px 34px rgba(86, 189, 0, 0.4);
  transform: translateY(-5px);
}

/* Responsive layouts */

@media (max-width: 1080px) {
  .branches-page .nav-menu {
    gap: 17px;
    font-size: 0.92rem;
  }

  .branches-page .branches-hero-grid {
    gap: 30px;
  }

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

  .branches-page .branch-grid-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 500px;
  }
}

@media (max-width: 880px) {
  .branches-page .menu-toggle {
    display: block;
  }

  .branches-page .nav-menu {
    position: fixed;
    top: 86px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 22px 24px 40px;
    overflow-y: auto;
    background: rgba(248, 255, 249, 0.99);
    box-shadow: 0 16px 34px rgba(86, 189, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .branches-page .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .branches-page .nav-menu a {
    padding: 15px 17px;
    border-radius: 14px;
  }

  .branches-page .nav-menu a:hover,
.branches-page .nav-menu .active-page {
    background: var(--green-soft);
  }

  .branches-page .nav-menu .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .branches-page .branches-hero-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 72px;
    padding-bottom: 140px;
    text-align: center;
  }

  .branches-page .branches-hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .branches-page .branches-hero-visual {
    min-height: 390px;
  }

  .branches-page .branches-orbit {
    width: 365px;
  }

  .branches-page .branches-count {
    width: 235px;
  }

  .branches-page .branch-summary-grid {
    grid-template-columns: 1fr;
  }

  .branches-page .branch-search-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .branches-page .footer-newsletter,
.branches-page .footer-main {
    grid-template-columns: 1fr;
  }

  .branches-page .footer-newsletter {
    gap: 25px;
  }
}

@media (max-width: 680px) {
  .branches-page .container {
    width: min(100% - 32px, 1180px);
  }

  .branches-page .navbar,
.branches-page .nav-inner {
    min-height: 76px;
  }

  .branches-page .nav-menu {
    top: 76px;
  }

  .branches-page .brand {
    font-size: 1.5rem;
  }

  .branches-page .brand-mark,
.branches-page .custom-logo {
    width: 43px;
    height: 43px;
  }

  .branches-page .branches-hero-copy h1 {
    font-size: clamp(3.2rem, 14vw, 4.3rem);
  }

  .branches-page .branches-hero-copy > p {
    font-size: 1rem;
  }

  .branches-page .branches-hero-visual {
    min-height: 340px;
  }

  .branches-page .branches-orbit {
    width: min(310px, 86vw);
  }

  .branches-page .branches-count {
    width: min(205px, 57vw);
  }

  .branches-page .branches-count strong {
    font-size: 4.5rem;
  }

  .branches-page .branches-directory {
    padding: 95px 0 76px;
  }

  .branches-page .branches-directory-heading {
    margin-bottom: 52px;
  }

  .branches-page .branches-directory-heading h2 {
    font-size: clamp(2.7rem, 12vw, 3.5rem);
  }

  .branches-page .branch-search-panel {
    margin-bottom: 48px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .branches-page .region-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .branches-page .region-heading p {
    text-align: left;
  }

  .branches-page .branch-grid,
.branches-page .branch-grid-single {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .branches-page .footer-impact {
    padding-top: 75px;
  }

  .branches-page .footer-newsletter {
    margin-bottom: 58px;
    padding: 27px 22px;
    border-radius: 23px;
  }

  .branches-page .footer-newsletter-form {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
  }

  .branches-page .footer-newsletter-form input,
.branches-page .footer-newsletter-form button {
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
  }

  .branches-page .footer-main {
    gap: 42px;
  }

  .branches-page .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 440px) {
  .branches-page .container {
    width: min(100% - 24px, 1180px);
  }

  .branches-page .brand-name {
    font-size: 1.35rem;
  }

  .branches-page .branches-hero-grid {
    padding-top: 58px;
    padding-bottom: 125px;
  }

  .branches-page .branches-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .branches-page .branches-hero-copy h1 {
    font-size: 3rem;
  }

  .branches-page .branches-hero-button {
    width: 100%;
  }

  .branches-page .branches-hero-visual {
    min-height: 310px;
  }

  .branches-page .branches-orbit {
    width: min(280px, 88vw);
  }

  .branches-page .branches-count {
    width: min(185px, 59vw);
  }

  .branches-page .branches-count strong {
    font-size: 4rem;
  }

  .branches-page .branch-summary article {
    grid-template-columns: 64px 1fr;
    padding: 22px 19px;
  }

  .branches-page .branch-summary article > strong {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 1.6rem;
  }

  .branches-page .branch-search-control {
    min-height: 58px;
    padding-left: 12px;
  }

  .branches-page .branch-search-icon {
    font-size: 1.45rem;
  }

  .branches-page #branch-search-clear {
    min-height: 40px;
    padding-inline: 11px;
  }

  .branches-page .branch-card {
    min-height: 215px;
    padding: 21px;
  }

  .branches-page .branch-card-top {
    margin-bottom: 20px;
  }

  .branches-page .footer-link-grid {
    grid-template-columns: 1fr;
  }

  .branches-page .back-top {
    width: 46px;
    height: 46px;
    right: 14px;
    bottom: 14px;
  }
}

@keyframes heroFlow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.025);
  }
}

@keyframes searchShine {
  0%,
  30% {
    left: -230px;
  }

  65%,
  100% {
    left: calc(100% + 230px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .branches-page .branches-hero,
.branches-page .branches-orbit,
.branches-page .branch-search-panel::before {
    animation: none;
  }

  .branches-page *,
.branches-page *::before,
.branches-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   GLOBAL BRIGHT GREEN THEME
   Shared by index.html and future pages.
   #56BD00 is the darkest decorative green.
======================================== */

body:not(.branches-page) {
  --pink: #56bd00;
  --pink-dark: #56bd00;
  --yellow: #c7f56d;
  --purple: #8bdc43;
  --dark-purple: #56bd00;
  --green: #72cf25;
  background: #fbfff6;
}

body:not(.branches-page) .navbar {
  border-bottom: 1px solid rgba(86, 189, 0, 0.18);
  box-shadow: 0 8px 24px rgba(86, 189, 0, 0.08);
}

body:not(.branches-page) .brand-mark {
  background: linear-gradient(145deg, #c7f56d, #56bd00);
  box-shadow: 0 7px 17px rgba(86, 189, 0, 0.1);
}

body:not(.branches-page) .nav-menu a:hover {
  color: #56bd00;
}

body:not(.branches-page) .nav-menu .nav-cta {
  color: var(--ink);
  background: linear-gradient(135deg, #c7f56d, #56bd00);
  box-shadow: 0 8px 18px rgba(86, 189, 0, 0.1);
}

/* Homepage hero */

body:not(.branches-page) .hero,
body:not(.branches-page) .hero[data-theme="mango"],
body:not(.branches-page) .hero[data-theme="cream"],
body:not(.branches-page) .hero[data-theme="green"],
body:not(.branches-page) .hero[data-theme="blue"] {
  background: linear-gradient(120deg, #56bd00 0%, #72cf25 52%, #a8e95f 100%);
}

body:not(.branches-page) .hero::before,
body:not(.branches-page) .hero::after {
  display: none;
}

body:not(.branches-page) .hero-orbit {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

body:not(.branches-page) .hero-thumb {
  box-shadow: none;
}

body:not(.branches-page) .hero-thumb.active {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.82);
}

body:not(.branches-page) .thumb-underline {
  background: rgba(255, 255, 255, 0.55);
}

body:not(.branches-page) .hero-thumb.active .thumb-underline {
  background: #ffffff;
}

/* Category section */

body:not(.branches-page) .category-impact {
  background: linear-gradient(180deg, #fbfff6, #f2fae7);
}

body:not(.branches-page) .category-impact::before,
body:not(.branches-page) .category-impact::after {
  border-color: rgba(86, 189, 0, 0.08);
}

body:not(.branches-page) .category-heading h2 span,
body:not(.branches-page) .category-link,
body:not(.branches-page) .category-number {
  color: #56bd00;
}

body:not(.branches-page) .category-card {
  border-color: rgba(86, 189, 0, 0.17);
  background: linear-gradient(150deg, #ffffff, #f3fae8);
  box-shadow: 0 12px 30px rgba(86, 189, 0, 0.08);
}

body:not(.branches-page) .category-card:hover {
  border-color: rgba(86, 189, 0, 0.5);
  box-shadow: 0 17px 36px rgba(86, 189, 0, 0.12);
}

body:not(.branches-page) .category-mango,
body:not(.branches-page) .category-cream,
body:not(.branches-page) .category-pink,
body:not(.branches-page) .category-yellow,
body:not(.branches-page) .category-purple,
body:not(.branches-page) .category-green {
  background: linear-gradient(145deg, #efffdc, #a8e95f);
}

body:not(.branches-page) .category-card:nth-child(2n) .category-art {
  background: linear-gradient(145deg, #f8ffe9, #c7f56d);
}

body:not(.branches-page) .category-card:nth-child(3n) .category-art {
  background: linear-gradient(145deg, #e8fbd6, #8bdc43);
}

body:not(.branches-page) .category-ring {
  border-color: rgba(86, 189, 0, 0.26);
}

/* About section */

body:not(.branches-page) .about-impact {
  background: linear-gradient(180deg, #f8ffef, #ffffff);
}

body:not(.branches-page) .about-product-stage {
  background: linear-gradient(145deg, #efffdc, #a8e95f);
  box-shadow: none;
}

body:not(.branches-page) .about-product-circle {
  border-color: rgba(86, 189, 0, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

body:not(.branches-page) .about-mini-card,
body:not(.branches-page) .about-benefit-card {
  border-color: rgba(86, 189, 0, 0.16);
  box-shadow: 0 12px 28px rgba(86, 189, 0, 0.08);
}

body:not(.branches-page) .about-mini-icon,
body:not(.branches-page) .about-benefit-number,
body:not(.branches-page) .about-primary-button {
  color: var(--ink);
  background: linear-gradient(145deg, #c7f56d, #56bd00);
}

/* Products and trending cards */

body:not(.branches-page) .products-impact {
  background: linear-gradient(180deg, #fbfff6, #f2fae7);
}

body:not(.branches-page) .products-impact::before,
body:not(.branches-page) .products-impact::after {
  border-color: rgba(86, 189, 0, 0.07);
}

body:not(.branches-page) .products-heading h2 span,
body:not(.branches-page) .products-menu-button {
  color: #56bd00;
}

body:not(.branches-page) .product-card {
  border-color: rgba(86, 189, 0, 0.16);
  box-shadow: 0 12px 30px rgba(86, 189, 0, 0.08);
}

body:not(.branches-page) .product-card:hover {
  border-color: rgba(86, 189, 0, 0.48);
  box-shadow: 0 18px 38px rgba(86, 189, 0, 0.12);
}

body:not(.branches-page) .product-mango,
body:not(.branches-page) .product-oreo,
body:not(.branches-page) .product-cheese,
body:not(.branches-page) .product-buko,
body:not(.branches-page) .product-halo,
body:not(.branches-page) .product-halo-mango,
body:not(.branches-page) .product-melon,
body:not(.branches-page) .product-tropical,
body:not(.branches-page) .product-avocado {
  background: linear-gradient(145deg, #efffdc, #a8e95f);
}

body:not(.branches-page) .product-card:nth-child(2n) .product-image {
  background: linear-gradient(145deg, #f8ffe9, #c7f56d);
}

body:not(.branches-page) .product-card:nth-child(3n) .product-image {
  background: linear-gradient(145deg, #e8fbd6, #8bdc43);
}

body:not(.branches-page) .badge,
body:not(.branches-page) .badge-dark,
body:not(.branches-page) .products-action {
  color: var(--ink);
  background: linear-gradient(135deg, #c7f56d, #56bd00);
}

/* Articles */

body:not(.branches-page) .articles-impact {
  background: linear-gradient(180deg, #ffffff, #f3fae8);
}

body:not(.branches-page) .articles-heading h2 span,
body:not(.branches-page) .article-read {
  color: #56bd00;
}

body:not(.branches-page) .article-card {
  border-color: rgba(86, 189, 0, 0.16);
  box-shadow: 0 12px 30px rgba(86, 189, 0, 0.08);
}

body:not(.branches-page) .article-card:hover {
  border-color: rgba(86, 189, 0, 0.48);
  box-shadow: 0 18px 38px rgba(86, 189, 0, 0.12);
}

body:not(.branches-page) .article-image {
  background: linear-gradient(145deg, #efffdc, #a8e95f);
}

body:not(.branches-page) .article-card:nth-child(2n) .article-image {
  background: linear-gradient(145deg, #f8ffe9, #c7f56d);
}

body:not(.branches-page) .article-card:nth-child(3n) .article-image {
  background: linear-gradient(145deg, #e8fbd6, #8bdc43);
}

body:not(.branches-page) .article-topic {
  color: var(--ink);
  background: #e5f6ca;
}

/* Social section */

body:not(.branches-page) .social-impact {
  --social-orange: #56bd00;
  --social-yellow: #c7f56d;
  --social-pink: #72cf25;
  color: var(--ink);
  background: linear-gradient(120deg, #56bd00 0%, #72cf25 52%, #a8e95f 100%);
}

body:not(.branches-page) .social-impact::before {
  display: none;
}

body:not(.branches-page) .social-impact-heading h2,
body:not(.branches-page) .social-eyebrow {
  color: var(--ink);
}

body:not(.branches-page) .social-impact-heading p {
  color: rgba(20, 37, 26, 0.76);
}

body:not(.branches-page) .social-follow-button {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(86, 189, 0, 0.1);
}

/* Shared bright footer for the homepage */

body:not(.branches-page) .footer-impact {
  color: var(--ink);
  background: linear-gradient(145deg, #f6ffe9 0%, #e3f7c9 55%, #cdefa8 100%);
}

body:not(.branches-page) .footer-newsletter {
  border-color: rgba(86, 189, 0, 0.24);
  background: linear-gradient(135deg, #ffffff, #e7f8d2);
  box-shadow: 0 14px 32px rgba(86, 189, 0, 0.09);
}

body:not(.branches-page) .newsletter-copy > span,
body:not(.branches-page) .footer-column-label,
body:not(.branches-page) .footer-contact small,
body:not(.branches-page) .footer-link-grid a:hover {
  color: #56bd00;
}

body:not(.branches-page) .newsletter-copy p,
body:not(.branches-page) .footer-brand-column > p,
body:not(.branches-page) .footer-contact address,
body:not(.branches-page) .footer-link-grid a,
body:not(.branches-page) .footer-bottom p {
  color: rgba(20, 37, 26, 0.72);
}

body:not(.branches-page) .newsletter-copy h2,
body:not(.branches-page) .footer-brand,
body:not(.branches-page) .footer-main h3,
body:not(.branches-page) .footer-contact > a {
  color: var(--ink);
}

body:not(.branches-page) .footer-newsletter-form button,
body:not(.branches-page) .footer-social-links a:hover,
body:not(.branches-page) .back-top {
  color: var(--ink);
  background: linear-gradient(135deg, #c7f56d, #56bd00);
}

body:not(.branches-page) .footer-social-links a {
  border-color: rgba(86, 189, 0, 0.24);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

body:not(.branches-page) .footer-bottom {
  border-top-color: rgba(86, 189, 0, 0.2);
}

body:not(.branches-page) .back-top {
  box-shadow: 0 10px 24px rgba(86, 189, 0, 0.12);
}
