/* Gummy Kids — static, file:// friendly */
:root {
  /* Centered content column; side gutters on wide viewports */
  --page-container-max: 72rem;
  --cream: #fffbf2;
  --cream-mid: #fff5eb;
  --pink-soft: #ffe8f0;
  --pink: #e91e63;
  --coral: #e91e63;
  --blue-brand: #00aeef;
  --green-brand: #00a651;
  --lavender: #7e57c2;
  --text: #2d2430;
  --text-soft: #5c5160;
  --white: #fff;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  --radius: 1.25rem;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-playful: "Baloo 2", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--cream);
  background-image: radial-gradient(
    ellipse 80% 60% at 70% 0%,
    rgba(255, 232, 240, 0.75) 0%,
    transparent 55%
  );
  background-attachment: fixed;
}

a {
  color: var(--coral);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 158, 200, 0.25);
}

.header-inner {
  position: relative;
  max-width: var(--page-container-max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.92;
}

.logo-img {
  height: 2.65rem;
  width: auto;
  max-width: min(52vw, 11.5rem);
  object-fit: contain;
  display: block;
}

@media (min-width: 40rem) {
  .logo-img {
    height: 3rem;
    max-width: 12.5rem;
  }
}

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

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: var(--coral);
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--coral);
  border-bottom-color: var(--blue-brand);
}

@media (max-width: 52rem) {
  .nav-toggle-label {
    display: block;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(255, 248, 240, 0.98);
    border-bottom: 1px solid rgba(255, 158, 200, 0.25);
    gap: 0;
    display: none;
  }

  .nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }
}

/* —— Layout —— */
main {
  flex: 1;
  width: 100%;
  max-width: var(--page-container-max);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: var(--text);
}

/* Full-viewport section backgrounds (content width stays in __inner / --page-container-max) */
.yummy-section,
.kids-love-section,
.gkids-section,
.why-section,
.trust-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

/* —— Hero —— */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 0.5rem 0 1.75rem;
}

@media (min-width: 56rem) {
  .hero {
    grid-template-columns: 1fr minmax(0, 1.02fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    padding: 1rem 0 2.25rem;
    align-items: center;
  }
}

/* Floating gummy mascots — corners: sun TL, star TR, love BL, flower BR */
@keyframes hero-float-gummy {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

@keyframes hero-float-kids {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-gummies {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* Stretch gummy layer across the full hero grid (home has two columns) */
.hero.hero--design .hero-gummies,
.hero.hero--page .hero-gummies {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.hero-gummy {
  position: absolute;
  width: min(22vw, 5.75rem);
  max-width: 5.75rem;
  min-width: 3.25rem;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.14));
  animation: hero-float-gummy 3.8s ease-in-out infinite;
}

.hero-gummy--sun {
  top: -2%;
  left: -14%;
  animation-delay: 0s;
}

.hero-gummy--star {
  top: -2%;
  right: -14%;
  animation-delay: 0.85s;
}

.hero-gummy--love {
  bottom: 2%;
  left: -14%;
  animation-delay: 1.7s;
}

.hero-gummy--flower {
  bottom: 2%;
  right: -14%;
  animation-delay: 2.55s;
}

@media (min-width: 56rem) {
  .hero-gummy {
    width: min(16vw, 6rem);
    max-width: 6rem;
  }

  .hero-gummy--sun {
    top: -5%;
    left: -22%;
  }

  .hero-gummy--star {
    top: -5%;
    right: -22%;
  }

  .hero-gummy--love {
    bottom: 3%;
    left: -22%;
  }

  .hero-gummy--flower {
    bottom: 3%;
    right: -22%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-gummy,
  .hero--design .hero-bento {
    animation: none;
  }
}

/* Compact hero on inner pages */
.hero--page {
  display: block;
  min-height: 11rem;
  padding: 2.75rem 0 1.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 36rem) {
  .hero--page .hero-page-inner {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }
}

.hero-page-inner {
  position: relative;
  z-index: 2;
}

.hero-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  color: var(--text);
  max-width: 36rem;
}

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

/* Home hero (reference layout) */
.hero-title {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  text-align: left;
}

.hero-line {
  display: block;
}

.hero-line--gradient {
  font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  background: linear-gradient(
    95deg,
    #ff6b35 0%,
    #e91e63 28%,
    #ab47bc 62%,
    #2196f3 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-line--green {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(2.4rem, 6.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--green-brand);
  letter-spacing: -0.03em;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  max-width: 32rem;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 500;
  color: var(--text);
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.hero-bullets li:last-child {
  margin-bottom: 0;
}

.hero-bullet-ico {
  flex-shrink: 0;
  margin-top: 0.1em;
}

.hero-accent--love {
  color: var(--pink);
  font-weight: 700;
}

.hero-accent--trust {
  color: var(--blue-brand);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  margin-bottom: 1rem;
}

.hero .btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.45rem;
  font-family: var(--font-playful);
  font-weight: 600;
  font-size: 1.02rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-ico {
  margin-right: 0.4rem;
  font-size: 1.1em;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, #e91e63, #ec407a);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-brand);
  border: 2px solid var(--blue-brand);
  box-shadow: 0 4px 16px rgba(0, 174, 239, 0.12);
}

.btn-secondary:hover {
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.2);
}

/* Feature pills */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  margin-bottom: 1rem;
}

.feature-pill {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.feature-pill--colors {
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
}

.feature-pill--veg {
  background: linear-gradient(135deg, #00897b, #26a69a);
}

.feature-pill--sugar {
  background: linear-gradient(135deg, #29b6f6, #4fc3f7);
}

.feature-pill--doctor {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
}

/* Certification logos */
.hero-certs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.hero-cert-img {
  height: auto;
  max-height: clamp(2.25rem, 6vw, 3.25rem);
  width: auto;
  max-width: min(44vw, 10rem);
  object-fit: contain;
}

/* Bento photo collage */
.hero-collage {
  display: grid;
  gap: 0.5rem;
  width: 100%;
  max-width: 26rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero--design .hero-bento {
  animation: hero-float-kids 5.5s ease-in-out infinite;
  will-change: transform;
}

.hero--design .hero-bento-1 {
  animation-delay: 0s;
}

.hero--design .hero-bento-2 {
  animation-delay: 0.6s;
}

.hero--design .hero-bento-3 {
  animation-delay: 1.2s;
}

.hero--design .hero-bento-4 {
  animation-delay: 1.8s;
}

.hero-bento {
  overflow: hidden;
  border-radius: 1.35rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--white);
  background: #e8e8e8;
}

.hero-bento img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bento-1 {
  min-height: 200px;
}

.hero-bento-2,
.hero-bento-3 {
  min-height: 118px;
}

.hero-bento-4 {
  min-height: 100px;
}

@media (min-width: 56rem) {
  .hero-collage {
    max-width: none;
    margin: 0;
    grid-template-columns: 1fr 1fr;
    /* Cap row height so collage does not dominate the fold on wide screens */
    grid-template-rows:
      minmax(6.5rem, min(10vw, 9.5rem))
      minmax(6.5rem, min(10vw, 9.5rem))
      minmax(4.75rem, min(7.5vw, 6.5rem));
    align-self: center;
  }

  .hero-bento-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 0;
  }

  .hero-bento-2 {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
  }

  .hero-bento-3 {
    grid-column: 2;
    grid-row: 2;
    min-height: 0;
  }

  .hero-bento-4 {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 0;
  }
}

.text-gradient {
  background: linear-gradient(105deg, var(--coral), #ec407a, var(--lavender));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* —— Trust badges (other pages) —— */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px dashed rgba(233, 30, 99, 0.25);
}

.badge {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(233, 30, 99, 0.2);
}

/* —— Products grid —— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 158, 200, 0.2);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.product-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.product-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* —— About / Contact —— */
.prose {
  max-width: 40rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.contact-form {
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 158, 200, 0.45);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

/* —— Home: Our Yummy Gummies —— */
.yummy-section {
  position: relative;
  background: #fff;
  padding: 3rem 1.25rem 3.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.yummy-section__inner {
  position: relative;
  z-index: 2;
  max-width: var(--page-container-max);
  width: 100%;
  margin: 0 auto;
}

.yummy-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  animation: hero-float-gummy 4.5s ease-in-out infinite;
}

.yummy-deco img {
  width: min(18vw, 5rem);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.yummy-deco--heart {
  bottom: 12%;
  left: 2%;
  animation-delay: 0.3s;
}

.yummy-deco--star {
  top: 8%;
  right: 6%;
  animation-delay: 1.1s;
}

.yummy-deco--flower {
  top: 42%;
  right: 1%;
  animation-delay: 1.9s;
}

@media (prefers-reduced-motion: reduce) {
  .yummy-deco {
    animation: none;
  }
}

.yummy-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.yummy-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: #e91e63;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  width: 100%;
}

.yummy-title__ico {
  font-size: 0.85em;
  line-height: 1;
}

.yummy-sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 500;
}

.yummy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 40rem) {
  .yummy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .yummy-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.yummy-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(45, 36, 48, 0.18);
  border-radius: 1.15rem;
  padding: 1.1rem 1.1rem 1.25rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yummy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.yummy-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 11rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border-radius: 0.85rem;
}

.yummy-card__bottle {
  max-width: 100%;
  width: auto;
  max-height: 11rem;
  height: auto;
  object-fit: contain;
}

.yummy-card__halal {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 2.35rem;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.yummy-card__name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.yummy-card__tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  color: #757575;
  margin: 0 0 0.85rem;
  line-height: 1.45;
}

.yummy-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.yummy-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 0.35rem 0.55rem;
  border-radius: 0.45rem;
  color: #263238;
}

.yummy-tag--teal {
  background: #e0f2f1;
  color: #00695c;
}

.yummy-tag--sky {
  background: #e1f5fe;
  color: #0277bd;
}

.yummy-card__btn {
  margin-top: auto;
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  font-family: var(--font-playful);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #e91e63, #ec407a);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.yummy-card__btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(233, 30, 99, 0.38);
}

.yummy-cta-wrap {
  text-align: center;
  margin: 2.5rem 0 0;
}

.btn-view-all {
  padding: 1rem 2.5rem;
  font-size: 1.08rem;
  background: linear-gradient(135deg, #0288d1, #00aeef);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.35);
}

.btn-view-all:hover {
  box-shadow: 0 12px 32px rgba(0, 174, 239, 0.42);
}

/* —— Home: Kids Love Them! —— */
.kids-love-section {
  position: relative;
  background: #fff;
  padding: 3rem 1.25rem 3.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.kids-love-section__inner {
  max-width: var(--page-container-max);
  width: 100%;
  margin: 0 auto;
}

.kids-love-header {
  text-align: center;
  margin-bottom: 2rem;
}

.kids-love-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #e91e63;
  letter-spacing: -0.02em;
}

.kids-love-sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-soft);
  font-weight: 500;
}

.kids-love-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 48rem) {
  .kids-love-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.kids-love-card {
  background: #fff;
  border: 1px solid rgba(45, 36, 48, 0.2);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kids-love-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.kids-love-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}

.kids-love-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kids-love-card__label {
  margin: 0;
  padding: 1rem 1rem 1.15rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* —— Home: Meet Our Gummy Kids! —— */
.gkids-section {
  padding: 3rem 1.25rem 3.75rem;
  background: linear-gradient(to bottom, #e0f2ff 0%, #ffffff 72%);
  border-top: 1px solid rgba(0, 174, 239, 0.12);
}

.gkids-section__inner {
  max-width: var(--page-container-max);
  width: 100%;
  margin: 0 auto;
}

.gkids-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.gkids-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #0288d1;
  letter-spacing: -0.02em;
}

.gkids-sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-soft);
  font-weight: 500;
}

.gkids-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 40rem) {
  .gkids-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .gkids-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
    align-items: stretch;
  }
}

.gkids-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 20.5rem;
  padding: 1.35rem 1.15rem 1.6rem;
  background: #fff;
  border-radius: 1.15rem;
  border: 3px solid;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gkids-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.gkids-card--teal {
  border-color: #00897b;
}

.gkids-card--blue {
  border-color: #1e88e5;
}

.gkids-card--purple {
  border-color: #7e57c2;
}

.gkids-card--pink {
  border-color: #ec407a;
}

.gkids-card__icon {
  flex-shrink: 0;
  margin-bottom: 0.85rem;
  width: clamp(7.5rem, 22vmin, 10.5rem);
  height: clamp(7.5rem, 22vmin, 10.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
  border-radius: 1.15rem;
  background: linear-gradient(145deg, #f5f5f5, #fff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.gkids-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gkids-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.gkids-card--teal .gkids-card__name {
  color: #00695c;
}

.gkids-card--blue .gkids-card__name {
  color: #1565c0;
}

.gkids-card--purple .gkids-card__name {
  color: #5e35b1;
}

.gkids-card--pink .gkids-card__name {
  color: #c2185b;
}

.gkids-card__desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0 0 1rem;
  flex-grow: 1;
}

.gkids-card__tag {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  font-style: italic;
  margin: 0;
}

.gkids-card--teal .gkids-card__tag {
  color: #00897b;
}

.gkids-card--blue .gkids-card__tag {
  color: #1e88e5;
}

.gkids-card--purple .gkids-card__tag {
  color: #7e57c2;
}

.gkids-card--pink .gkids-card__tag {
  color: #ec407a;
}

/* —— Home: Why Gummy Kids? —— */
.why-section {
  position: relative;
  background: #fff;
  padding: 3rem 1.25rem 3.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.why-section__inner {
  position: relative;
  z-index: 2;
  max-width: var(--page-container-max);
  width: 100%;
  margin: 0 auto;
}

.why-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  animation: hero-float-gummy 4.8s ease-in-out infinite;
}

.why-deco img {
  width: min(14vw, 3.75rem);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.why-deco--flower {
  left: 2%;
  top: 35%;
  animation-delay: 0.4s;
}

.why-deco--star {
  right: 3%;
  top: 28%;
  animation-delay: 1.2s;
}

@media (prefers-reduced-motion: reduce) {
  .why-deco {
    animation: none;
  }
}

.why-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.why-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--green-brand);
  letter-spacing: -0.02em;
}

.why-sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 48rem) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.why-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.22);
  border-radius: 1.1rem;
  padding: 1.35rem 1.15rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.why-card__icon {
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  line-height: 1;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.why-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.why-card__name--pink {
  color: #e91e63;
}

.why-card__name--purple {
  color: #7e57c2;
}

.why-card__name--green {
  color: var(--green-brand);
}

.why-card__name--yellow {
  color: #f9a825;
}

.why-card__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0;
}

/* —— Home: Trusted Quality —— */
.trust-section {
  background: #fff;
  padding: 2.75rem 1.25rem 3.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-section__inner {
  max-width: var(--page-container-max);
  width: 100%;
  margin: 0 auto;
}

.trust-header {
  text-align: center;
  margin-bottom: 2rem;
}

.trust-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.8vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #0288d1;
  letter-spacing: -0.02em;
}

.trust-sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--text);
  font-weight: 500;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 2.5rem;
}

.trust-logo {
  height: auto;
  max-height: clamp(3.5rem, 12vw, 5rem);
  width: auto;
  max-width: min(40vw, 11rem);
  object-fit: contain;
}

/* —— Footer (3-column + copyright) —— */
.site-footer {
  margin-top: auto;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #f4f7fa;
}

.footer-main {
  max-width: var(--page-container-max);
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

@media (min-width: 52rem) {
  .footer-main {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 1fr);
    gap: 2rem 3rem;
  }
}

@media (max-width: 51.99rem) {
  .footer-col--brand {
    text-align: center;
  }

  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col--links {
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links a {
    border-left: none;
    padding-left: 0;
    border-bottom: 2px solid transparent;
    margin-left: 0;
  }

  .footer-links a[aria-current="page"] {
    border-left-color: transparent;
    border-bottom-color: var(--blue-brand);
  }

  .footer-col--trust {
    text-align: center;
  }

  .footer-trust li {
    justify-content: center;
  }
}

.footer-brand-logo {
  display: inline-flex;
  line-height: 0;
  margin-bottom: 1rem;
}

.footer-brand-logo:hover {
  text-decoration: none;
  opacity: 0.9;
}

.footer-logo-img {
  height: 2.85rem;
  width: auto;
  max-width: min(70vw, 14rem);
  object-fit: contain;
  display: block;
}

@media (min-width: 40rem) {
  .footer-logo-img {
    height: 3.15rem;
    max-width: 15rem;
  }
}

.footer-tagline {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 22rem;
}

.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #e8ecf0;
  color: #5c5160;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.footer-social a:hover {
  background: #dde3ea;
  color: var(--coral);
  text-decoration: none;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.15rem 0;
  border-left: 3px solid transparent;
  padding-left: 0.35rem;
  margin-left: -0.35rem;
}

.footer-links a:hover {
  color: var(--coral);
  text-decoration: none;
}

.footer-links a[aria-current="page"] {
  color: var(--coral);
  border-left-color: var(--blue-brand);
}

.footer-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-trust li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.35;
}

.footer-trust-ico {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1;
  width: 1.75rem;
  text-align: center;
}

.footer-meta {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 1.15rem 1.25rem 1.5rem;
  font-size: 0.8125rem;
  color: #7a8490;
  line-height: 1.55;
  background: #f0f3f7;
}

.footer-meta p {
  margin: 0;
}

/* 2026 UI refresh */
:root {
  --page-container-max: 76rem;
  --cream: #fffaf1;
  --cream-mid: #f7fbf6;
  --pink-soft: #fff0f4;
  --pink: #eb4f76;
  --coral: #eb4f76;
  --blue-brand: #1687c9;
  --green-brand: #10a66a;
  --lavender: #7a5cc8;
  --text: #25323a;
  --text-soft: #61717b;
  --white: #fff;
  --line: #e5ecef;
  --surface: #fffdf8;
  --surface-soft: #f5fbf7;
  --sun: #ffb703;
  --shadow: 0 18px 42px rgba(31, 43, 51, 0.1);
  --shadow-soft: 0 8px 22px rgba(31, 43, 51, 0.08);
  --radius: 8px;
}

html {
  background: #fffaf1;
}

body {
  color: var(--text);
  background:
    linear-gradient(180deg, #fff8ed 0%, #f7fbf6 42%, #fffdf8 100%);
  background-attachment: fixed;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--blue-brand);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(22, 135, 201, 0.32);
  outline-offset: 3px;
}

.site-header {
  padding: 0.7rem 1.25rem;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(37, 50, 58, 0.08);
  box-shadow: 0 8px 24px rgba(31, 43, 51, 0.06);
}

.header-inner {
  gap: 1.25rem;
}

.logo-img {
  height: 3.15rem;
  max-width: min(52vw, 13rem);
}

.nav {
  gap: 0.35rem;
  padding: 0.25rem;
  background: rgba(245, 251, 247, 0.84);
  border: 1px solid rgba(37, 50, 58, 0.08);
  border-radius: 999px;
}

.nav a {
  padding: 0.52rem 0.9rem;
  border: 0;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a:hover {
  background: #fff;
  color: var(--text);
}

.nav a[aria-current="page"] {
  color: #fff;
  background: var(--text);
  border-bottom-color: transparent;
  box-shadow: 0 8px 18px rgba(37, 50, 58, 0.14);
}

.nav-toggle-label {
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(37, 50, 58, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 0;
}

.nav-toggle-label::before {
  content: "";
  width: 1.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  box-shadow: 0 -6px 0 var(--text), 0 6px 0 var(--text);
}

@media (max-width: 52rem) {
  .nav-toggle-label {
    display: flex;
  }

  .nav {
    top: calc(100% + 0.75rem);
    left: auto;
    right: 0;
    width: min(18rem, calc(100vw - 2.5rem));
    padding: 0.7rem;
    background: #fffdf8;
    border: 1px solid rgba(37, 50, 58, 0.1);
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(31, 43, 51, 0.16);
  }

  .nav a {
    padding: 0.85rem 0.9rem;
    border-bottom: 0;
    border-radius: 8px;
  }
}

main {
  padding: 0 1.25rem 4rem;
}

.section-title,
.hero-title,
.yummy-title,
.kids-love-title,
.gkids-title,
.why-title,
.trust-title {
  letter-spacing: 0;
}

.btn,
.yummy-card__btn,
.btn-view-all {
  border-radius: 8px;
  letter-spacing: 0;
}

.btn:hover,
.yummy-card:hover,
.kids-love-card:hover,
.gkids-card:hover,
.why-card:hover,
.product-card:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #ff7a59);
  color: #fff;
  box-shadow: 0 12px 26px rgba(235, 79, 118, 0.28);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(37, 50, 58, 0.14);
  box-shadow: var(--shadow-soft);
}

.feature-pill,
.badge,
.products-count-pill,
.pd-checks li,
.pd-trust-pill {
  border-radius: 999px;
}

.hero {
  min-height: clamp(34rem, 82vh, 47rem);
  padding: clamp(2.25rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.46) 0 8rem, transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(244, 180, 0, 0.42) 0 12rem, transparent 30rem),
    linear-gradient(180deg, #ffe200 0%, #f6d800 55%, #fff0a1 55%, #fff6c4 100%);
  border-bottom: 1px solid rgba(37, 50, 58, 0.08);
}

.hero::after {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  bottom: -0.1rem;
  z-index: 1;
  height: clamp(3.5rem, 9vw, 6.5rem);
  background:
    radial-gradient(ellipse 12rem 5rem at 6% 100%, #fff 0 68%, transparent 69%),
    radial-gradient(ellipse 16rem 6rem at 27% 105%, #fff 0 68%, transparent 69%),
    radial-gradient(ellipse 13rem 5rem at 47% 100%, #fff 0 68%, transparent 69%),
    radial-gradient(ellipse 17rem 6rem at 68% 106%, #fff 0 68%, transparent 69%),
    radial-gradient(ellipse 14rem 5rem at 90% 100%, #fff 0 68%, transparent 69%);
  pointer-events: none;
}

.hero-copy,
.hero-products {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-copy {
  max-width: 37rem;
}

.hero-title {
  margin-bottom: 1.15rem;
}

.hero-line--gradient {
  font-size: clamp(2.65rem, 6vw, 4.4rem);
  line-height: 0.98;
  background: linear-gradient(95deg, #24343d 0%, #24343d 48%, #eb4f76 49%, #ff7a59 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-line--green {
  color: var(--green-brand);
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-bullets {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
}

.hero-bullets li {
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(37, 50, 58, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(31, 43, 51, 0.07);
}

.hero-bullet-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.hero-actions {
  margin-bottom: 1.15rem;
}

.hero .btn {
  min-height: 3rem;
  padding: 0.78rem 1.15rem;
}

.hero-features {
  gap: 0.5rem;
}

.feature-pill {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(37, 50, 58, 0.1);
  box-shadow: 0 5px 14px rgba(31, 43, 51, 0.07);
}

.feature-pill--colors {
  border-color: rgba(22, 135, 201, 0.22);
}

.feature-pill--veg {
  border-color: rgba(16, 166, 106, 0.24);
}

.feature-pill--sugar {
  border-color: rgba(255, 183, 3, 0.35);
}

.feature-pill--doctor {
  border-color: rgba(235, 79, 118, 0.24);
}

.hero-certs {
  padding-top: 0.3rem;
}

.hero-cert-img {
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(37, 50, 58, 0.08);
  border-radius: 8px;
}

.hero--design .hero-gummies {
  display: none;
}

.hero-products {
  justify-self: end;
  width: min(100%, 40rem);
  min-height: clamp(23rem, 42vw, 33rem);
  align-self: end;
  isolation: isolate;
}

.hero-products::before {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 13%;
  width: 82%;
  height: 2.2rem;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(100, 74, 0, 0.2) 0%, rgba(100, 74, 0, 0.08) 52%, transparent 72%);
  filter: blur(0.25rem);
  z-index: 1;
}

.hero-products__arch {
  position: absolute;
  right: 0;
  bottom: 21%;
  width: min(88%, 34rem);
  aspect-ratio: 2 / 1;
  border-radius: 50rem 50rem 0 0;
  background:
    linear-gradient(145deg, rgba(255, 245, 116, 0.9), rgba(236, 196, 0, 0.34)),
    #f9dc24;
  box-shadow:
    inset 0 1.2rem 2.5rem rgba(255, 255, 255, 0.22),
    -0.9rem 0.7rem 0 rgba(183, 150, 0, 0.16);
  z-index: 0;
}

.hero-products__shelf {
  position: absolute;
  right: -5%;
  bottom: 16%;
  width: 100%;
  height: 4.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 244, 141, 0.82), rgba(239, 198, 0, 0.22));
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.65);
  z-index: 0;
}

.hero-product {
  position: absolute;
  bottom: 15%;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 1.1rem 1.4rem rgba(72, 55, 0, 0.22));
}

.hero-product--omega {
  left: 3%;
  height: clamp(13rem, 22vw, 19rem);
  z-index: 3;
  transform: rotate(-3deg);
}

.hero-product--lute {
  left: 25%;
  height: clamp(14.5rem, 25vw, 21.5rem);
  z-index: 5;
}

.hero-product--immu {
  left: 50%;
  height: clamp(15rem, 26.5vw, 22.5rem);
  z-index: 6;
  transform: translateY(-0.2rem);
}

.hero-product--mvites {
  right: 0;
  height: clamp(13.5rem, 23.5vw, 20rem);
  z-index: 4;
  transform: rotate(3deg);
}

.yummy-section,
.kids-love-section,
.gkids-section,
.why-section,
.trust-section {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.why-section,
.trust-section {
  background: #fffdf8;
}

.yummy-section {
  background: #fff3df;
}

.kids-love-section {
  background: #f5fbf7;
}

.gkids-section {
  background: linear-gradient(180deg, #eef8fb 0%, #fffdf8 100%);
}

.yummy-section,
.kids-love-section,
.gkids-section,
.why-section,
.trust-section {
  border-top: 1px solid rgba(37, 50, 58, 0.08);
}

.yummy-header,
.kids-love-header,
.gkids-header,
.why-header,
.trust-header {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.yummy-title,
.kids-love-title {
  color: var(--pink);
}

.gkids-title,
.trust-title {
  color: var(--blue-brand);
}

.why-title {
  color: var(--green-brand);
}

.yummy-sub,
.kids-love-sub,
.gkids-sub,
.why-sub,
.trust-sub {
  color: var(--text-soft);
}

.yummy-grid,
.gkids-grid,
.why-grid {
  align-items: stretch;
}

.yummy-card,
.kids-love-card,
.gkids-card,
.why-card,
.product-card {
  border-radius: 8px;
  border: 1px solid rgba(37, 50, 58, 0.09);
  box-shadow: var(--shadow-soft);
}

.yummy-card,
.why-card,
.product-card {
  background: #fff;
}

.yummy-card__visual,
.gkids-card__icon {
  border-radius: 8px;
  background: #f7fbf8;
}

.yummy-card__name,
.gkids-card__name,
.why-card__name,
.product-card h2 {
  color: var(--text);
  letter-spacing: 0;
}

.yummy-card__tagline,
.gkids-card__desc,
.why-card__desc,
.product-card p {
  color: var(--text-soft);
}

.yummy-tag {
  border-radius: 8px;
}

.yummy-tag--teal {
  background: #e9f8f1;
  color: #08734c;
}

.yummy-tag--sky {
  background: #eaf5fb;
  color: #126c9f;
}

.yummy-card__btn,
.btn-view-all {
  background: var(--text);
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 50, 58, 0.18);
}

.kids-love-card {
  overflow: hidden;
}

.kids-love-card__label {
  color: var(--text);
  border-top-color: rgba(37, 50, 58, 0.08);
}

.gkids-card {
  min-height: 0;
  border-width: 1px;
}

.gkids-card--teal {
  border-top: 4px solid #10a66a;
}

.gkids-card--blue {
  border-top: 4px solid #1687c9;
}

.gkids-card--purple {
  border-top: 4px solid #7a5cc8;
}

.gkids-card--pink {
  border-top: 4px solid #eb4f76;
}

.why-card__icon {
  filter: none;
}

.trust-logos {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(37, 50, 58, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  background: #25323a;
  border-top: 0;
  color: #fff;
}

.footer-main {
  padding-top: 2.75rem;
  padding-bottom: 2.5rem;
}

.footer-heading,
.footer-links a[aria-current="page"] {
  color: #fff;
}

.footer-tagline,
.footer-links a,
.footer-trust li {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a {
  border-left-color: rgba(255, 255, 255, 0);
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a[aria-current="page"] {
  border-left-color: var(--sun);
}

.footer-social a {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.footer-social a:hover {
  background: #fff;
  color: var(--text);
}

.footer-meta {
  background: #1f2a31;
  border-top-color: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 56rem) {
  .hero {
    min-height: auto;
    padding-bottom: 5rem;
  }

  .hero::before {
    background:
      radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.5) 0 7rem, transparent 18rem),
      linear-gradient(180deg, #ffe200 0%, #f7da12 52%, #fff3af 52%, #fff8d0 100%);
  }

  .hero-copy {
    max-width: none;
  }

  .hero-products {
    justify-self: center;
    width: min(100%, 35rem);
    min-height: clamp(16.5rem, 64vw, 24rem);
    margin-top: -0.25rem;
  }

  .hero-products__arch {
    right: 5%;
    bottom: 20%;
    width: 90%;
  }

  .hero-products__shelf {
    right: 0;
    bottom: 16%;
    width: 94%;
  }

  .hero-product--omega {
    left: 1%;
    height: clamp(10.5rem, 39vw, 15rem);
  }

  .hero-product--lute {
    left: 24%;
    height: clamp(11.75rem, 43vw, 16.75rem);
  }

  .hero-product--immu {
    left: 48%;
    height: clamp(12rem, 45vw, 17.25rem);
  }

  .hero-product--mvites {
    right: 0;
    height: clamp(11rem, 40vw, 15.5rem);
  }
}

@media (max-width: 36rem) {
  main {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo-img {
    height: 2.65rem;
  }

  .hero-line--gradient {
    font-size: clamp(1.95rem, 8.4vw, 2.25rem);
    line-height: 1.08;
  }

  .hero-line--green {
    font-size: clamp(1.75rem, 7.6vw, 2.1rem);
  }

  .hero-bullets {
    font-size: 0.88rem;
  }

  .hero-bullets li {
    gap: 0.4rem;
    padding: 0.7rem 0.75rem;
  }

  .feature-pill {
    font-size: 0.7rem;
    padding: 0.34rem 0.55rem;
  }

  .hero-actions,
  .pd-cta-row,
  .about-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .btn,
  .pd-cta-row .btn,
  .about-cta__btn {
    width: 100%;
  }
}
