/* Ocean Kids — playful kids fashion + recovery support */
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap");

:root {
  --ocean: #1a8fc4;
  --ocean-deep: #0e6fa0;
  --aqua: #7ed6df;
  --aqua-bright: #5ee7f0;
  --coral: #ff8a8a;
  --sun: #ffd56b;
  --peach: #ffc4a8;
  --lavender: #c9b6ff;
  --sand: #fff8ee;
  --sky: #e8f9ff;
  --mint: #8fecc0;
  --navy: #1f4a63;
  --white: #ffffff;
  --muted: #5c7a8c;
  --border: rgba(26, 143, 196, 0.14);
  --shadow: 0 14px 36px rgba(26, 143, 196, 0.14);
  --shadow-sm: 0 6px 18px rgba(26, 143, 196, 0.1);
  --radius: 1.75rem;
  --radius-sm: 1.1rem;
  --header-h: 4.5rem;
  --font-display: "Baloo 2", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dot: radial-gradient(circle, rgba(126, 214, 223, 0.45) 1.5px, transparent 2px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Soft anti-copy: page content; forms stay selectable */
body {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

input,
textarea,
select,
[contenteditable="true"],
[data-allow-select] {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background:
    var(--dot) 0 0 / 22px 22px,
    linear-gradient(180deg, #fffdf9 0%, var(--sky) 40%, #fff 100%);
  background-attachment: fixed;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.35rem, 7vw, 4rem);
}
h2 {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Buttons — chunky kid-friendly pills */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 3px solid transparent;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s,
    box-shadow 0.25s, border-color 0.25s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--ocean);
  color: var(--white);
  box-shadow: 0 8px 0 var(--ocean-deep);
}

.btn-primary:hover {
  background: var(--ocean-deep);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--aqua);
  color: var(--ocean-deep);
  box-shadow: 0 6px 0 rgba(126, 214, 223, 0.55);
}

.btn-secondary:hover {
  background: var(--sky);
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 0 #e86f6f;
}

.btn-coral:hover {
  filter: brightness(1.03);
}

.btn-sun {
  background: var(--sun);
  color: var(--navy);
  box-shadow: 0 8px 0 #e8b84a;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.btn-sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.85rem;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08);
}

.btn:disabled,
.btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.site-header.is-solid,
.site-header.is-inner {
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.site-header.is-transparent {
  background: transparent;
}

.site-header.is-transparent .nav-link,
.site-header.is-transparent .icon-btn,
.site-header.is-transparent .brand-text {
  color: var(--white);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
}

.logo-icon {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  border-radius: 999px;
  background: white;
  padding: 0.25rem;
  box-shadow: 0 4px 0 rgba(126, 214, 223, 0.45);
}

.logo-wordmark-nav {
  height: 1.55rem;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ocean);
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--navy);
  position: relative;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(126, 214, 223, 0.35);
  color: var(--ocean-deep);
}

.site-header.is-transparent .nav-link:hover,
.site-header.is-transparent .nav-link.is-active {
  background: rgba(255, 255, 255, 0.22);
  color: white;
}

.nav-link.nav-help {
  background: var(--coral);
  color: white !important;
  box-shadow: 0 4px 0 #e86f6f;
}

.site-header.is-transparent .nav-link.nav-help {
  background: var(--coral);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 3px 0 rgba(126, 214, 223, 0.35);
}

.icon-btn:hover {
  background: var(--sun);
}

.badge-count {
  position: absolute;
  top: 0.05rem;
  right: 0.05rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid white;
}

.menu-toggle {
  display: grid;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.nav-drawer.is-open {
  pointer-events: auto;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 74, 99, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-drawer.is-open .nav-drawer-backdrop {
  opacity: 1;
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(20rem, 88vw);
  height: 100%;
  background: linear-gradient(180deg, #fffdf9, var(--sky));
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}

.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer-panel a {
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: white;
  box-shadow: var(--shadow-sm);
}

/* Hero — kid split layout (contained photo, not full-bleed) */
.hero-kid {
  position: relative;
  min-height: auto;
  display: block;
  color: var(--navy);
  overflow: hidden;
  border-radius: 0;
  padding: calc(var(--header-h) + 1.5rem) 0 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 213, 107, 0.55), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 138, 138, 0.35), transparent 26%),
    radial-gradient(circle at 70% 75%, rgba(126, 214, 223, 0.45), transparent 30%),
    linear-gradient(165deg, #e8f9ff 0%, #fff8ee 45%, #ffe8f0 100%);
}

.hero-kid .hero-bubbles {
  z-index: 0;
}

.hero-kid-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2.5rem;
}

@media (min-width: 900px) {
  .hero-kid-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    min-height: calc(100svh - var(--header-h) - 4rem);
  }
}

.hero-copy {
  text-align: left;
  max-width: 34rem;
}

.hero-brand-inline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.hero-brand-inline .logo-icon {
  width: 3.75rem;
  height: 3.75rem;
  flex-shrink: 0;
  box-shadow: 0 6px 0 rgba(126, 214, 223, 0.5);
}

.hero-brand-stack {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
}

.hero-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1;
  color: var(--ocean-deep);
  letter-spacing: 0.02em;
}

.hero-tagline-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-brand-inline .logo-wordmark,
.hero-tagline {
  display: none;
}

.footer-logo-icon {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.35rem;
  margin-bottom: 0.85rem;
}

.footer-logo-wordmark {
  display: block;
  height: 2rem;
  width: auto;
  max-width: 12rem;
  object-fit: contain;
  margin: 0 0 0.65rem;
}

.footer-tagline {
  display: block;
  height: 1.5rem;
  width: auto;
  max-width: 14rem;
  object-fit: contain;
  margin: 0 0 1rem;
  opacity: 0.95;
}

.hero-copy h1 {
  color: var(--navy);
  max-width: 12ch;
  text-shadow: none;
  margin-bottom: 0.75rem;
}

.hero-copy .lede {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  max-width: 34ch;
  margin: 0 0 1.5rem;
}

.hero-copy .hero-ctas {
  justify-content: flex-start;
}

/* Force readable colors on light kid hero (overrides legacy .hero h1 white) */
.hero-kid,
.hero-kid .hero-copy,
.hero-kid .hero-copy h1,
.hero-kid h1 {
  color: #163a52 !important;
  text-shadow: none !important;
}

.hero-kid .hero-copy .lede,
.hero-kid .lede {
  color: #3d5f73 !important;
}

.hero-kid .eyebrow {
  color: #0e6fa0;
  background: rgba(126, 214, 223, 0.45);
}

.hero-frame,
.hero-coverflow {
  position: relative;
  justify-self: center;
  width: min(100%, 34rem);
}

.hero-coverflow {
  height: min(28rem, 70vw);
  perspective: 900px;
}

.coverflow-stage {
  position: absolute;
  inset: 0 0 2.5rem;
  transform-style: preserve-3d;
}

.cover-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(14.5rem, 58%);
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 40px rgba(14, 111, 160, 0.22);
  border: 3px solid white;
  transform-origin: center center;
  transition: transform 0.55s var(--ease), opacity 0.55s var(--ease), filter 0.55s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 1.1rem 0.9rem 0.95rem;
  background: linear-gradient(transparent, rgba(15, 47, 66, 0.88));
  color: white;
}

.cover-meta h3 {
  color: white;
  font-size: 1.05rem;
  margin: 0.35rem 0 0.15rem;
  line-height: 1.15;
}

.cover-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
}

.cover-tag {
  display: inline-flex;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
}

.tag-coral { background: var(--coral); }
.tag-aqua { background: #2bb3d9; }
.tag-sun { background: #e8b84a; color: var(--navy); }
.tag-ocean { background: var(--ocean); }
.tag-mint { background: #5ecf9a; color: var(--navy); }

.hero-coverflow .hero-nav {
  position: absolute;
  top: calc(50% - 1.25rem);
  z-index: 20;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--ocean-deep);
  font-size: 1.5rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 5px 0 rgba(126, 214, 223, 0.55);
  display: grid;
  place-items: center;
}

.hero-coverflow .hero-nav:hover {
  background: var(--sun);
}

.hero-coverflow .hero-nav-prev { left: 0; }
.hero-coverflow .hero-nav-next { right: 0; }

.coverflow-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.coverflow-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  background: rgba(14, 111, 160, 0.25);
  padding: 0;
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}

.coverflow-dots button.is-active {
  width: 1.25rem;
  background: var(--coral);
}

@media (min-width: 900px) {
  .hero-coverflow {
    width: min(100%, 38rem);
    height: 30rem;
  }
  .cover-card {
    width: 15.5rem;
  }
}

@media (max-width: 560px) {
  .hero-coverflow {
    height: 24rem;
  }
  .cover-card {
    width: min(12rem, 55%);
  }
  .cover-meta h3 {
    font-size: 0.95rem;
  }
}

/* Legacy single-frame carousel styles kept for safety */
.hero-frame-deco {
  position: absolute;
  inset: -0.85rem;
  border-radius: 2.25rem;
  background: linear-gradient(135deg, var(--aqua), var(--sun), var(--coral));
  transform: rotate(3deg);
  z-index: 0;
}

.hero-carousel {
  position: relative;
  z-index: 1;
  border-radius: 2rem;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 14px 0 rgba(14, 111, 160, 0.12);
  background: #fffdf9;
  aspect-ratio: 4 / 5;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--ocean-deep);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(126, 214, 223, 0.55);
  display: grid;
  place-items: center;
}

.hero-nav:hover {
  background: var(--sun);
}

.hero-nav-prev {
  left: 0.65rem;
}

.hero-nav-next {
  right: 0.65rem;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.hero-dots button {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  border: 0;
  background: rgba(14, 111, 160, 0.25);
  padding: 0;
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 1.35rem;
  background: var(--coral);
}

.hero-sticker {
  position: absolute;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: white;
  color: var(--navy);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.08);
  border: 3px solid var(--aqua);
}

.hero-sticker-1 {
  top: 1rem;
  left: -0.5rem;
  transform: rotate(-8deg);
  border-color: var(--sun);
  background: var(--sun);
}

.hero-sticker-2 {
  bottom: 1.5rem;
  right: -0.35rem;
  transform: rotate(6deg);
  border-color: var(--coral);
  background: #ffe4e4;
  color: #c45c5c;
}

.hero-wave {
  margin-top: 0;
  position: relative;
  z-index: 3;
}

@media (max-width: 899px) {
  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }
  .hero-brand-inline {
    justify-content: center;
  }
  .hero-brand-stack {
    align-items: center;
  }
  .hero-copy h1 {
    margin-inline: auto;
  }
  .hero-copy .lede {
    margin-inline: auto;
  }
  .hero-copy .hero-ctas {
    justify-content: center;
  }
  .hero-sticker-1 {
    left: 0.35rem;
  }
  .hero-sticker-2 {
    right: 0.35rem;
  }
}

/* Keep legacy full-bleed hero styles unused but harmless */
.hero:not(.hero-kid) {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  border-radius: 0 0 2.5rem 2.5rem;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 111, 160, 0.25) 0%,
    rgba(14, 111, 160, 0.15) 35%,
    rgba(14, 111, 160, 0.72) 100%
  );
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -2rem;
  border-radius: 50%;
  background: rgba(255, 213, 107, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation: rise linear infinite;
}

.bubble:nth-child(odd) {
  background: rgba(126, 214, 223, 0.4);
}

.bubble:nth-child(3n) {
  background: rgba(255, 138, 138, 0.35);
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-110vh) scale(1.25);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0 4.5rem;
  text-align: center;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-brand .logo-icon {
  width: 4.75rem;
  height: 4.75rem;
  box-shadow: 0 10px 0 rgba(126, 214, 223, 0.45);
}

.hero-brand .logo-wordmark {
  height: 2rem;
  width: auto;
  background: white;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(255, 213, 107, 0.55);
}

.hero:not(.hero-kid) h1 {
  color: var(--white);
  max-width: 14ch;
  margin-inline: auto;
  text-shadow: 0 6px 0 rgba(14, 111, 160, 0.35);
}

.hero:not(.hero-kid) .lede {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.12rem;
  font-weight: 700;
  max-width: 34ch;
  margin: 0.75rem auto 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.wave-divider {
  display: block;
  width: 100%;
  height: 4.5rem;
  margin-top: -2px;
  position: relative;
  z-index: 3;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Sections */
.section {
  padding: 4.25rem 0;
  position: relative;
}

.section-sand {
  background: var(--sand);
}

.section-sky {
  background: linear-gradient(180deg, var(--sky), #dff6ff);
}

.section-ocean {
  background: linear-gradient(145deg, var(--ocean-deep), #2bb3d9 55%, var(--aqua));
  color: var(--white);
  border-radius: 2.5rem;
  margin: 0 1rem;
  overflow: hidden;
}

.section-ocean p {
  color: rgba(255, 255, 255, 0.92);
}

.section-ocean h2 {
  color: white;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  background: rgba(126, 214, 223, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.section-ocean .eyebrow {
  color: var(--navy);
  background: var(--sun);
}

/* Mission strip */
.mission-strip {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 800px) {
  .mission-strip {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.mission-card,
.donate-box {
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.mission-card {
  background: white;
  box-shadow: var(--shadow-sm);
  border: 3px solid rgba(126, 214, 223, 0.45);
}

.mission-card::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--sun);
  opacity: 0.55;
}

.mission-card h2 {
  position: relative;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, var(--mint), var(--aqua));
  color: var(--navy);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  margin: 1rem 0;
  box-shadow: 0 4px 0 rgba(143, 236, 192, 0.6);
}

.donate-box {
  background: linear-gradient(145deg, #ff9a9a, #ffc4a8 50%, #ffd56b);
  color: var(--navy);
  box-shadow: 0 10px 0 rgba(232, 111, 111, 0.35);
}

.donate-box h3 {
  color: var(--navy);
  font-size: 1.65rem;
}

.donate-box p {
  color: rgba(31, 74, 99, 0.85);
  font-weight: 600;
}

.donate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

/* Collection / product grids */
.grid-collections {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .grid-collections {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 8px 0 rgba(126, 214, 223, 0.4);
  border: 3px solid white;
  background: #fffdf9;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}

.collection-card:hover img {
  transform: scale(1.04);
}

.collection-card .overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(14, 111, 160, 0.88));
  color: white;
}

.collection-card h3 {
  color: white;
  margin: 0 0 0.35rem;
}

.collection-card span {
  font-size: 0.85rem;
  font-weight: 800;
  opacity: 0.95;
}

.product-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .product-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 0 rgba(126, 214, 223, 0.28);
  border: 3px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(160deg, #fffdf9, var(--sky));
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s;
}

.product-media .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  object-fit: contain;
}

.product-card:hover .img-hover {
  opacity: 1;
}

.product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid white;
}

.pill-sale {
  background: var(--coral);
  color: white;
}
.pill-new {
  background: var(--sun);
  color: var(--navy);
}
.pill-oos {
  background: var(--navy);
  color: white;
}

.product-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 2;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s, transform 0.25s;
}

.product-card:hover .product-actions,
.product-card:focus-within .product-actions {
  opacity: 1;
  transform: none;
}

@media (hover: none) {
  .product-actions {
    opacity: 1;
    transform: none;
  }
}

.circle-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0;
  background: white;
  color: var(--ocean);
  box-shadow: 0 4px 0 rgba(126, 214, 223, 0.45);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.circle-btn:hover {
  background: var(--sun);
  color: var(--navy);
}

.product-body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-body h3 {
  font-size: 1.2rem;
  margin: 0;
}

.product-body h3 a:hover {
  color: var(--ocean);
}

.rating {
  color: #f0b429;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.25rem 0 0.75rem;
}

.price {
  font-weight: 800;
  color: var(--ocean-deep);
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.swatches {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.swatch {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--border);
  cursor: pointer;
}

.swatch.black {
  background: #222;
}
.swatch.white {
  background: #fff;
}

.support-note {
  font-size: 0.8rem;
  color: var(--ocean);
  font-weight: 800;
  margin: 0 0 0.75rem;
  background: rgba(126, 214, 223, 0.25);
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  width: fit-content;
}

/* Collection showcase — readable kid banner (no washed full-bleed overlay) */
.collection-showcase {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 3px solid rgba(126, 214, 223, 0.45);
  box-shadow: 0 10px 0 rgba(126, 214, 223, 0.28);
}

@media (min-width: 900px) {
  .collection-showcase {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 2.25rem;
    gap: 2.25rem;
  }
}

.collection-showcase-copy h2 {
  color: var(--navy);
  max-width: 14ch;
}

.collection-showcase-copy p {
  color: var(--muted);
  font-weight: 700;
  max-width: 34ch;
}

.collection-showcase-copy .eyebrow {
  background: rgba(255, 213, 107, 0.55);
  color: var(--navy);
}

.collection-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.collection-photo-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 1.15rem;
  border: 3px solid white;
  box-shadow: 0 6px 0 rgba(255, 213, 107, 0.35);
}

.collection-photo-grid img:nth-child(2),
.collection-photo-grid img:nth-child(5) {
  box-shadow: 0 6px 0 rgba(126, 214, 223, 0.4);
  transform: translateY(0.5rem);
}

.collection-photo-grid img:nth-child(3),
.collection-photo-grid img:nth-child(6) {
  box-shadow: 0 6px 0 rgba(255, 138, 138, 0.35);
}

@media (max-width: 560px) {
  .collection-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-photo-grid img:nth-child(5),
  .collection-photo-grid img:nth-child(6) {
    transform: none;
  }
}

/* Legacy parallax kept unused */
.parallax-banner {
  position: relative;
  min-height: 22rem;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  border-radius: 2.5rem;
  margin: 0 1rem;
}

/* Features */
.features {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

.about-tagline {
  display: block;
  height: 1.6rem;
  width: auto;
  max-width: 16rem;
  object-fit: contain;
  margin: 0.35rem 0 1rem;
  mix-blend-mode: multiply;
}

.mv-blocks {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .mv-blocks {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.mv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.65rem 1.45rem 1.75rem;
  border: 3px solid rgba(126, 214, 223, 0.5);
  box-shadow: 0 10px 0 rgba(126, 214, 223, 0.28);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s var(--ease);
}

.mv-card:hover {
  transform: translateY(-4px);
}

.mv-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ocean-deep);
  background: linear-gradient(145deg, rgba(126, 214, 223, 0.55), rgba(255, 213, 107, 0.45));
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 0 rgba(26, 143, 196, 0.12);
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0.25rem 0 0.85rem;
  color: var(--navy);
  line-height: 1.15;
}

.mv-card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.mv-card p:last-child {
  margin-bottom: 0;
}

.mv-card-thank {
  border-color: rgba(255, 138, 138, 0.5);
  box-shadow: 0 10px 0 rgba(255, 138, 138, 0.28);
  background: linear-gradient(180deg, #fff 0%, #fff6f4 100%);
}

.mv-card-thank .mv-icon {
  background: linear-gradient(145deg, rgba(255, 138, 138, 0.45), rgba(255, 213, 107, 0.5));
  color: #b84d4d;
}

.about-home-cta {
  text-align: center;
  margin-top: 2rem;
}

.about-home .section-head p {
  color: var(--muted);
  font-weight: 700;
}

@media (min-width: 640px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 0 rgba(255, 213, 107, 0.35);
  border: 3px solid rgba(255, 213, 107, 0.45);
  transition: transform 0.3s var(--ease);
}

.feature:nth-child(2n) {
  box-shadow: 0 8px 0 rgba(126, 214, 223, 0.4);
  border-color: rgba(126, 214, 223, 0.5);
}

.feature:nth-child(3n) {
  box-shadow: 0 8px 0 rgba(255, 138, 138, 0.35);
  border-color: rgba(255, 138, 138, 0.45);
}

.feature:hover {
  transform: translateY(-5px) rotate(1deg);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--aqua), var(--sky));
  color: var(--ocean-deep);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 0 rgba(126, 214, 223, 0.5);
}

.feature h3 {
  margin-bottom: 0.35rem;
}

.feature p {
  margin: 0;
  font-size: 0.92rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 0 rgba(201, 182, 255, 0.4);
  border: 3px solid rgba(201, 182, 255, 0.45);
  display: flex;
  flex-direction: column;
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
}

.testimonial-card .body {
  padding: 1.25rem;
}

.testimonial-card .stars {
  color: #f0b429;
  margin-bottom: 0.5rem;
}

.review-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-shot {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 3px solid rgba(126, 214, 223, 0.45);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
  box-shadow: 0 8px 0 rgba(126, 214, 223, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.review-shot:hover,
.review-shot:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 rgba(26, 143, 196, 0.28);
  outline: none;
}

.review-shot img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.review-hint {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 47, 66, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.review-lightbox .modal-panel {
  max-width: min(40rem, 94vw);
  padding: 0.75rem;
  background: #0f2f42;
}

.review-lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 1rem;
  background: #000;
}

.review-lightbox-cap {
  margin: 0.65rem 0.25rem 0.15rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.testimonial-card blockquote {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.3;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ocean);
}

/* Masonry gallery */
.masonry {
  columns: 2;
  column-gap: 0.85rem;
}

@media (min-width: 800px) {
  .masonry {
    columns: 4;
  }
}

.masonry figure {
  break-inside: avoid;
  margin: 0 0 0.85rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
}

.masonry img {
  width: 100%;
  transition: transform 0.5s var(--ease);
}

.masonry figure:hover img {
  transform: scale(1.05);
}

/* Newsletter */
.newsletter {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ocean), #3ec4e8 50%, var(--mint));
  color: white;
  padding: 2.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 0 rgba(14, 111, 160, 0.25);
}

.newsletter::before,
.newsletter::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter::before {
  width: 8rem;
  height: 8rem;
  top: -2rem;
  left: -2rem;
}

.newsletter::after {
  width: 6rem;
  height: 6rem;
  bottom: -1.5rem;
  right: -1rem;
  background: rgba(255, 213, 107, 0.35);
}

.newsletter h2 {
  color: white;
  position: relative;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 36ch;
  margin-inline: auto;
  font-weight: 700;
  position: relative;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
  max-width: 28rem;
  margin-inline: auto;
  position: relative;
}

.newsletter-form input {
  flex: 1 1 12rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  border: 3px solid white;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #163f57, #0f2f42);
  color: rgba(255, 255, 255, 0.88);
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
  border-radius: 2.5rem 2.5rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.site-footer h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: white;
  margin: 0 0 1rem;
}

.site-footer a {
  display: block;
  padding: 0.3rem 0;
  opacity: 0.88;
  font-weight: 700;
}

.site-footer a:hover {
  opacity: 1;
  color: var(--sun);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer a.footer-credit {
  display: inline;
  padding: 0;
  opacity: 0.9;
  font-weight: 700;
  color: var(--aqua-bright);
}

.site-footer a.footer-credit:hover {
  color: var(--sun);
  opacity: 1;
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pay-tag {
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
}

/* Page hero (inner) */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: linear-gradient(180deg, #dff6ff, var(--sand) 60%, transparent);
  text-align: center;
  border-radius: 0 0 2.5rem 2.5rem;
}

.page-hero.compact {
  padding-bottom: 1.5rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--ocean);
}

/* Shop layout */
.shop-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .shop-layout {
    grid-template-columns: 16rem 1fr;
    align-items: start;
  }
}

.filters {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  border: 3px solid rgba(126, 214, 223, 0.45);
  box-shadow: 0 8px 0 rgba(126, 214, 223, 0.25);
}

.filters h3 {
  margin-bottom: 1rem;
}

.filter-group {
  margin-bottom: 1.25rem;
}

.filter-group legend,
.filter-group label.title,
.filter-group .title {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--ocean-deep);
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  margin: 0.35rem 0;
  cursor: pointer;
  font-weight: 700;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.shop-toolbar select {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: white;
  font-weight: 700;
}

.filter-toggle {
  display: inline-flex;
}

@media (min-width: 900px) {
  .filter-toggle {
    display: none;
  }
  .filters.mobile-hidden {
    display: block;
  }
}

@media (max-width: 899px) {
  .filters {
    display: none;
    position: fixed;
    inset: auto 1rem 1rem;
    z-index: 90;
    max-height: 70vh;
    overflow: auto;
  }
  .filters.is-open {
    display: block;
  }
}

/* PDP */
.pdp {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .pdp {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #fffdf9, var(--sky));
  aspect-ratio: 1 / 1;
  border: 3px solid white;
  box-shadow: 0 10px 0 rgba(126, 214, 223, 0.3);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.4s;
}

.gallery-main.is-zoomed img {
  transform: scale(1.35);
  cursor: zoom-out;
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.gallery-thumbs button {
  border: 3px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  width: 4.5rem;
  height: 5.5rem;
  cursor: pointer;
  background: var(--sand);
}

.gallery-thumbs button.is-active {
  border-color: var(--sun);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-info .price-row {
  margin: 0.75rem 0;
}

.option-row {
  margin: 1.1rem 0;
}

.option-row > span {
  display: block;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.size-options,
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-options button,
.color-options button {
  min-width: 3rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: white;
  cursor: pointer;
  font-weight: 800;
}

.size-options button.is-active,
.color-options button.is-active {
  border-color: var(--ocean);
  background: var(--aqua);
  color: var(--navy);
}

.qty-row {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: white;
}

.qty-row button {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: var(--sky);
  cursor: pointer;
  font-weight: 800;
}

.qty-row input {
  width: 3rem;
  text-align: center;
  border: 0;
  font-weight: 800;
}

.pdp-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.accordion {
  border-top: 2px dashed var(--border);
  margin-top: 1.5rem;
}

.accordion details {
  border-bottom: 2px dashed var(--border);
  padding: 0.85rem 0;
}

.accordion summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  color: var(--ocean);
  font-size: 1.25rem;
}

.accordion details[open] summary::after {
  content: "–";
}

.accordion .content {
  padding-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Help / Donate */
.account-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .account-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.account-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 8px 0 rgba(143, 236, 192, 0.4);
  border: 3px solid rgba(143, 236, 192, 0.5);
}

.account-card:nth-child(2) {
  box-shadow: 0 8px 0 rgba(126, 214, 223, 0.45);
  border-color: rgba(126, 214, 223, 0.55);
}

.account-card:nth-child(3) {
  box-shadow: 0 8px 0 rgba(255, 213, 107, 0.45);
  border-color: rgba(255, 213, 107, 0.55);
}

.account-card .method {
  font-weight: 800;
  color: var(--ocean);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.account-card .number {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  word-break: break-all;
  margin: 0.25rem 0 0.35rem;
}

.account-card .name {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 700;
}

.story-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.story-grid img {
  border-radius: var(--radius);
  box-shadow: 0 10px 0 rgba(126, 214, 223, 0.35);
  border: 3px solid white;
}

.hope-card {
  background: linear-gradient(145deg, var(--sky), white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 3px dashed var(--aqua);
  text-align: center;
}

.hope-card .big {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--ocean-deep);
  margin: 0.5rem 0;
}

/* Contact form */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-card,
.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 3px solid rgba(126, 214, 223, 0.4);
  box-shadow: 0 8px 0 rgba(126, 214, 223, 0.25);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
  background: var(--sand);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(126, 214, 223, 0.55);
  box-shadow: 0 8px 0 rgba(126, 214, 223, 0.2);
  min-height: 14rem;
  background: var(--sky);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 16rem;
  border: 0;
}

@media (min-width: 800px) {
  .map-embed iframe {
    height: 18rem;
  }
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 4px;
  background: linear-gradient(var(--aqua), var(--sun), var(--coral));
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  padding: 0 0 1.75rem 1.25rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 0.35rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--sun);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--aqua);
}

/* Drawers / modal / toast */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
}

.drawer.is-open {
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 74, 99, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}

.drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(24rem, 94vw);
  height: 100%;
  background: linear-gradient(180deg, #fffdf9, white);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-bottom: 2px dashed var(--border);
}

.drawer-body {
  flex: 1;
  overflow: auto;
  padding: 1.25rem;
}

.drawer-foot {
  padding: 1rem 1.25rem;
  border-top: 2px dashed var(--border);
}

.cart-item {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: start;
}

.cart-item img {
  width: 4rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 0.85rem;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
}

.cart-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
  place-items: center;
  padding: 1rem;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 74, 99, 0.45);
}

.modal-panel {
  position: relative;
  background: white;
  border-radius: var(--radius);
  width: min(40rem, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 3px solid var(--aqua);
}

.checkout-panel {
  width: min(52rem, 100%);
}

.checkout-close {
  float: right;
}

.checkout-lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-weight: 700;
}

.checkout-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .checkout-layout {
    grid-template-columns: 1.2fr 0.9fr;
    align-items: start;
  }
}

.checkout-summary {
  background: var(--sky);
  border: 3px solid rgba(126, 214, 223, 0.45);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}

.checkout-summary h4 {
  font-family: var(--font-display);
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(26, 143, 196, 0.12);
  font-size: 0.92rem;
}

.checkout-line span {
  color: var(--muted);
  font-weight: 700;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.85rem 0 0.35rem;
  font-weight: 800;
  font-size: 1.05rem;
}

.checkout-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 700;
}

.toast-wrap {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--navy);
  color: white;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  animation: slideIn 0.3s var(--ease);
  font-weight: 800;
  font-size: 0.9rem;
  border: 2px solid var(--aqua);
}

@keyframes slideIn {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.back-top {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 90;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  border: 0;
  background: var(--sun);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 5px 0 #e8b84a;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  font-weight: 800;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 85;
  display: flex;
  gap: 0.5rem;
  padding: 0.45rem;
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  box-shadow: var(--shadow);
  border: 3px solid rgba(126, 214, 223, 0.5);
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

.prose {
  max-width: 42rem;
  margin-inline: auto;
}

.prose p {
  margin-bottom: 1.1rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.is-in {
  opacity: 1;
  transform: none;
}

.oos-banner {
  background: linear-gradient(90deg, var(--sand), var(--sky));
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 1rem 0;
  border: 2px dashed var(--aqua);
}

.size-guide-img {
  border-radius: var(--radius-sm);
  margin-top: 0.75rem;
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
}

/* Playful floaty shapes for kid sections */
.kid-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.kid-shapes span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}

.kid-shapes .s1 {
  width: 4rem;
  height: 4rem;
  background: var(--sun);
  top: 10%;
  left: 5%;
}
.kid-shapes .s2 {
  width: 3rem;
  height: 3rem;
  background: var(--coral);
  top: 20%;
  right: 8%;
}
.kid-shapes .s3 {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--mint);
  bottom: 15%;
  left: 12%;
}
