/* ZuZuPal homepage — playful layout, white canvas + mint accents */

.playful-home {
  --zz-ink: #004743;
  --zz-ink-deep: #003530;
  --zz-mint: #80dad0;
  --zz-mint-soft: #e8f8f6;
  --zz-coral: #e85a4f;
  --zz-coral-hover: #d4483e;
  --zz-radius: 22px;
  --zz-radius-sm: 14px;
  --zz-pill: 999px;
  --font-display: "Fredoka", "Nunito", system-ui, sans-serif;
  background: #fff;
  color: var(--zz-ink);
  font-family: var(--sans);
}

.playful-home img { display: block; max-width: 100%; height: auto; }
.playful-home a { color: inherit; text-decoration: none; }
.playful-home main { overflow-x: clip; padding-bottom: 0; background: #fff; }

/* ---------- announce (JuJuBit carousel format) ---------- */
.playful-home .announce-bar.zz-announce,
.playful-home .zz-announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #4dc7bf 0%, #80dad0 55%, #a8e8e0 100%);
  color: #fff;
  overflow: hidden;
  height: 40px;
  padding: 0 12px;
  font: 700 13px/1 var(--sans);
  letter-spacing: 0.02em;
}
.playful-home .announce-track { display: none; }
.zz-announce-btn {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0.9;
}
.zz-announce-btn:hover { opacity: 1; background: rgba(255,255,255,0.15); }
.zz-announce-btn svg { width: 16px; height: 16px; }
.zz-announce-viewport {
  position: relative;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(720px, 78vw);
  height: 40px;
  overflow: hidden;
  text-align: center;
}
.zz-announce-msg {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
  color: #fff;
  font: 700 13px/1.2 var(--sans);
}
.zz-announce-msg.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ---------- header (JuJuBit format: logo left · links · actions+CTA) ---------- */
.playful-home .site-header.site-header--kanva,
.playful-home .site-header.site-header--zz,
.playful-home .site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  left: auto;
  right: auto;
  width: 100%;
  max-width: none;
  height: 70px;
  margin: 0;
  padding: 0 clamp(16px, 3.5vw, 36px);
  transform: none !important;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 0;
  border-radius: 0 !important;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 71, 67, 0.08);
  backdrop-filter: none;
}
.playful-home .site-header > .wordmark {
  order: 1;
  flex: 0 0 auto;
  justify-self: start;
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.playful-home .site-header > .wordmark img {
  height: 40px;
  width: auto;
  filter: none;
}
.playful-home .site-header > .site-nav {
  order: 2;
  position: static;
  display: flex;
  flex: 1 1 auto;
  gap: clamp(14px, 2vw, 28px);
  justify-content: center;
  justify-self: center;
  font: 800 13px/1 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zz-ink);
}
.playful-home .site-header > .site-nav a {
  padding: 8px 2px;
  white-space: nowrap;
}
.playful-home .site-header > .site-nav a:hover,
.playful-home .site-header > .site-nav a[aria-current="page"] {
  color: #2a9d94;
}
.playful-home .site-header > .site-actions {
  order: 3;
  flex: 0 0 auto;
  justify-self: end;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.playful-home .kv-header-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--zz-pill);
  color: var(--zz-ink);
}
.playful-home .nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.playful-home .nav-toggle span { background: var(--zz-ink); }

.zz-nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--zz-pill);
  background: #f3f3f3;
  color: var(--zz-ink);
  font: 700 13px/1 var(--sans);
  white-space: nowrap;
  transition: background 0.15s ease;
}
.zz-nav-login:hover { background: #e8e8e8; }

.zz-nav-create {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--zz-pill);
  background: var(--zz-mint);
  color: var(--zz-ink);
  font: 800 13px/1 var(--sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 0 rgba(0, 71, 67, 0.08);
  transition: transform 0.15s ease, background 0.15s ease;
}
.zz-nav-create:hover {
  background: #6bcfc4;
  transform: translateY(-1px);
  color: var(--zz-ink);
}
.zz-nav-create span { font-size: 12px; }

.playful-home .cart-badge {
  background: var(--zz-mint);
  color: var(--zz-ink);
  border: 2px solid #fff;
}

/* Hide locale on very tight mobile; keep login+cart+menu+create */
@media (max-width: 899px) {
  .playful-home .site-header { height: 62px; gap: 10px; padding: 0 12px; }
  .playful-home .site-header > .site-nav { display: none; }
  .playful-home .site-header > .wordmark img { height: 32px; }
  .playful-home .zz-nav-locale { display: none; }
  .zz-nav-login {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }
  .zz-nav-create {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }
  .playful-home .kv-header-icon,
  .playful-home .nav-toggle {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 420px) {
  .zz-nav-login { display: none; }
}

/* ---------- shared ---------- */
.zz-wrap {
  width: min(1180px, calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}
.zz-display {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--zz-ink);
}
.zz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 52px;
  padding: 0 1.6rem;
  border-radius: var(--zz-pill);
  font: 800 15px/1 var(--sans);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.zz-btn:hover { transform: translateY(-2px); }
.zz-btn--coral {
  background: var(--zz-coral);
  color: #fff;
}
.zz-btn--coral:hover { background: var(--zz-coral-hover); }
.zz-btn--ink {
  background: var(--zz-ink);
  color: #fff;
}
.zz-btn--ink:hover { background: var(--zz-ink-deep); }
.zz-btn--ghost {
  background: #fff;
  color: var(--zz-ink);
  border-color: var(--zz-ink);
}
.zz-btn--ghost:hover { background: var(--zz-ink); color: #fff; }
.zz-wave { display: none; }

/* ---------- hero (white) ---------- */
.zz-hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: clamp(40px, 7vw, 88px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(0, 71, 67, 0.06);
}
.zz-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.zz-hero-copy { max-width: 520px; }
.zz-hero-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: var(--zz-pill);
  background: var(--zz-mint-soft);
  font: 800 12px/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zz-ink);
}
.zz-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
}
.zz-hero-lede {
  margin: 0 0 28px;
  font: 600 1.05rem/1.45 var(--sans);
  color: rgba(0, 71, 67, 0.78);
  max-width: 38ch;
}
.zz-hero-media {
  position: relative;
  min-height: clamp(280px, 42vw, 460px);
  background: var(--zz-mint-soft);
  border-radius: clamp(28px, 4vw, 48px);
  display: grid;
  place-items: center;
  padding: 20px;
}
.zz-hero-media > img:first-of-type {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 53, 48, 0.12));
}
.zz-hero-badge {
  position: absolute;
  top: 8%;
  left: 4%;
  z-index: 2;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--zz-ink);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font: 800 13px/1.15 var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 53, 48, 0.2);
  animation: zz-bob 3.2s ease-in-out infinite;
}
@keyframes zz-bob {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-8px) rotate(-6deg); }
}
.zz-hero-float {
  position: absolute;
  right: 4%;
  bottom: 6%;
  z-index: 2;
  width: min(38%, 180px);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 53, 48, 0.14);
  animation: zz-float 4s ease-in-out infinite;
}
@keyframes zz-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 899px) {
  .zz-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .zz-hero-copy { max-width: none; margin-inline: auto; }
  .zz-hero-lede { margin-inline: auto; }
  .zz-hero-media { min-height: 260px; order: -1; }
  .zz-hero-badge { width: 70px; height: 70px; font-size: 11px; }
}

/* ---------- product starters ---------- */
.zz-starters {
  background: #fff;
  padding: clamp(48px, 7vw, 88px) 0 clamp(28px, 4vw, 40px);
}
.zz-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(24px, 4vw, 36px);
}
.zz-section-head h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
}
.zz-section-head p {
  margin: 8px 0 0;
  font: 600 1rem/1.4 var(--sans);
  color: rgba(0, 71, 67, 0.7);
  max-width: 42ch;
}
.zz-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.zz-card {
  background: #fff;
  border: 1px solid rgba(0, 71, 67, 0.08);
  border-radius: var(--zz-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.zz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 71, 67, 0.08);
}
.zz-card-media,
.zz-card-media--yellow,
.zz-card-media--lavender,
.zz-card-media--peach {
  aspect-ratio: 1;
  background: var(--zz-mint-soft);
  display: grid;
  place-items: center;
  padding: 18px;
}
.zz-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.zz-card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.zz-card-body h3 {
  margin: 0;
  font: 750 1.05rem/1.25 var(--font-display);
  color: var(--zz-ink);
}
.zz-stars {
  color: #f0b429;
  letter-spacing: 1px;
  font-size: 13px;
}
.zz-price {
  font: 800 1rem/1 var(--sans);
  color: var(--zz-ink);
}
.zz-card .zz-btn {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  font-size: 13px;
}

@media (max-width: 999px) {
  .zz-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .zz-product-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}

/* ---------- trust strip ---------- */
.zz-trust {
  padding: 28px 0 48px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 71, 67, 0.06);
}
.zz-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.zz-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font: 750 12px/1.3 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zz-ink);
}
.zz-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--zz-mint-soft);
  border: 0;
  display: grid;
  place-items: center;
  color: var(--zz-ink);
}
.zz-trust-icon svg { width: 22px; height: 22px; }

@media (max-width: 699px) {
  .zz-trust-row { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* ---------- collections ---------- */
.zz-collections {
  position: relative;
  background: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
}
.zz-collections .zz-section-head h2,
.zz-collections .zz-section-head p { color: var(--zz-ink); }
.zz-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.5vw, 24px);
}
.zz-tile {
  position: relative;
  border-radius: clamp(24px, 3vw, 36px);
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  isolation: isolate;
  transition: transform 0.25s ease;
  background: var(--zz-mint-soft);
}
.zz-tile:hover { transform: scale(1.02); }
.zz-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.zz-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 53, 48, 0.7) 100%);
}
.zz-tile--mint,
.zz-tile--coral,
.zz-tile--ink { background: var(--zz-mint-soft); }
.zz-tile h3 {
  margin: 0 0 6px;
  font: 700 1.45rem/1.1 var(--font-display);
}
.zz-tile span {
  font: 700 13px/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

@media (max-width: 799px) {
  .zz-tile-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ---------- bundles ---------- */
.zz-bundles {
  background: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
  color: var(--zz-ink);
  border-top: 1px solid rgba(0, 71, 67, 0.06);
  border-bottom: 1px solid rgba(0, 71, 67, 0.06);
}
.zz-bundles .zz-section-head h2,
.zz-bundles .zz-section-head p { color: var(--zz-ink); }
.zz-bundles .zz-section-head p { color: rgba(0, 71, 67, 0.7); }
.zz-bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.zz-bundle,
.zz-bundle--yellow,
.zz-bundle--pink,
.zz-bundle--orange,
.zz-bundle--sky {
  border-radius: clamp(22px, 3vw, 32px);
  padding: 18px 16px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  transition: transform 0.22s ease;
  background: var(--zz-mint-soft);
  color: var(--zz-ink);
  border: 1px solid rgba(0, 71, 67, 0.06);
}
.zz-bundle:hover { transform: translateY(-6px); }
.zz-bundle img {
  width: 100%;
  flex: 1;
  object-fit: contain;
  max-height: 160px;
}
.zz-bundle h3 {
  margin: 0;
  font: 750 1.15rem/1.15 var(--font-display);
}
.zz-bundle .zz-btn {
  background: var(--zz-ink);
  color: #fff;
  min-height: 42px;
  font-size: 12px;
}

@media (max-width: 999px) {
  .zz-bundle-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- UGC ---------- */
.zz-ugc {
  background: #fff;
  padding: clamp(56px, 8vw, 100px) 0;
}
.zz-ugc .zz-section-head {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.zz-ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.zz-review {
  background: #fff;
  border: 1px solid rgba(0, 71, 67, 0.08);
  border-radius: var(--zz-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.zz-review-photo {
  aspect-ratio: 4 / 3;
  background: var(--zz-mint-soft);
  overflow: hidden;
}
.zz-review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zz-review-body { padding: 18px 18px 20px; }
.zz-review-body .zz-stars { margin-bottom: 8px; display: block; }
.zz-review-body p {
  margin: 0 0 10px;
  font: 600 0.98rem/1.45 var(--sans);
  color: var(--zz-ink);
}
.zz-review-body cite {
  font: 750 13px/1 var(--sans);
  color: rgba(0, 71, 67, 0.55);
  font-style: normal;
}

@media (max-width: 799px) {
  .zz-ugc-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ---------- how it works ---------- */
.zz-how {
  background: #fff;
  padding: clamp(56px, 8vw, 100px) 0;
  border-top: 1px solid rgba(0, 71, 67, 0.06);
}
.zz-how-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.zz-how-media {
  border-radius: clamp(28px, 4vw, 44px);
  overflow: hidden;
  background: var(--zz-mint-soft);
  aspect-ratio: 1 / 1.05;
}
.zz-how-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zz-how-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0 32px;
  list-style: none;
}
.zz-how-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
.zz-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--zz-mint);
  color: var(--zz-ink);
  display: grid;
  place-items: center;
  font: 800 1.05rem/1 var(--font-display);
}
.zz-how-steps strong {
  display: block;
  margin-bottom: 4px;
  font: 750 1.1rem/1.2 var(--font-display);
}
.zz-how-steps span {
  font: 600 0.95rem/1.4 var(--sans);
  color: rgba(0, 71, 67, 0.72);
}

@media (max-width: 899px) {
  .zz-how-inner { grid-template-columns: 1fr; }
}

/* ---------- shop moments ---------- */
.zz-moments {
  background: #fff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 8vw, 100px);
  border-top: 1px solid rgba(0, 71, 67, 0.06);
}
.zz-moments .zz-section-head {
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.zz-moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 18px);
}
.zz-moment {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.zz-moment-media {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--zz-mint-soft);
  border: 4px solid var(--zz-mint);
  box-shadow: none;
}
.zz-moment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zz-moment h3 {
  margin: 0;
  font: 750 1.15rem/1.1 var(--font-display);
  color: var(--zz-ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.zz-moment .zz-btn {
  min-height: 42px;
  font-size: 12px;
  padding-inline: 1.2rem;
}

@media (max-width: 799px) {
  .zz-moments-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- footer #80DAD0 ---------- */
.playful-home .footer.footer--kanva,
.playful-home .footer {
  position: relative;
  background: #80dad0;
  color: var(--zz-ink);
  margin-top: 0;
  padding: 0;
  overflow: hidden;
}
.playful-home .footer-bg { display: none; }
.playful-home .footer-inner {
  position: relative;
  width: min(1180px, calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  padding: clamp(48px, 7vw, 80px) 0 28px;
}
.playful-home .footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.playful-home .footer-headline {
  font: 700 clamp(1.6rem, 3vw, 2.2rem)/1.15 var(--font-display);
  color: var(--zz-ink);
  margin: 0 0 10px;
}
.playful-home .footer-tagline {
  color: rgba(0, 71, 67, 0.75);
  font: 600 0.98rem/1.45 var(--sans);
  margin: 0 0 22px;
}
.zz-newsletter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.zz-newsletter input {
  flex: 1;
  min-width: 180px;
  min-height: 48px;
  border-radius: var(--zz-pill);
  border: 2px solid rgba(0, 71, 67, 0.18);
  background: #fff;
  color: var(--zz-ink);
  padding: 0 18px;
  font: 600 15px/1 var(--sans);
}
.zz-newsletter input::placeholder { color: rgba(0, 71, 67, 0.45); }
.zz-newsletter .zz-btn {
  background: var(--zz-ink);
  color: #fff;
  border: 0;
}
.playful-home .footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.playful-home .footer-label {
  display: block;
  margin-bottom: 12px;
  font: 800 12px/1 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zz-ink-deep);
}
.playful-home .footer-col a {
  display: block;
  margin-bottom: 10px;
  font: 600 15px/1.3 var(--sans);
  color: rgba(0, 71, 67, 0.85);
}
.playful-home .footer-col a:hover { color: var(--zz-ink-deep); }
.playful-home .footer-base {
  border-top: 1px solid rgba(0, 71, 67, 0.15);
  padding-top: 28px;
}
.playful-home .footer-brand-bar {
  text-align: center;
  margin-bottom: 18px;
}
.playful-home .footer-logo img {
  width: min(72vw, 420px);
  height: auto;
  margin-inline: auto;
  opacity: 1;
  filter: none;
  border-radius: 16px;
}
.zz-footer-mega {
  font: 800 clamp(3.2rem, 14vw, 9rem)/0.9 var(--font-display);
  letter-spacing: -0.04em;
  text-align: center;
  color: rgba(0, 71, 67, 0.18);
  margin: 8px 0 20px;
  user-select: none;
  pointer-events: none;
}
.playful-home .footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font: 600 13px/1.4 var(--sans);
  color: rgba(0, 71, 67, 0.65);
}
.playful-home .footer-legal {
  display: flex;
  gap: 16px;
}
.playful-home .footer-legal a { color: rgba(0, 71, 67, 0.75); }
.playful-home .footer-legal a:hover { color: var(--zz-ink); }

@media (max-width: 799px) {
  .playful-home .footer-top { grid-template-columns: 1fr; }
  .playful-home .footer-nav { grid-template-columns: 1fr 1fr; }
}

/* Site-wide footer tint when using shared footer markup */
.footer {
  background: #80dad0 !important;
}

/* ---------- promo popup ---------- */
.zz-popup[hidden] { display: none !important; }
.zz-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 30, 28, 0.45);
  backdrop-filter: blur(4px);
}
.zz-popup-card {
  position: relative;
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 30, 28, 0.28);
  animation: zz-pop-in 0.45s cubic-bezier(0.2, 0.9, 0.25, 1);
}
@keyframes zz-pop-in {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.zz-popup-copy {
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.zz-popup-logo {
  height: 28px;
  width: auto;
  margin-bottom: 22px;
}
.zz-popup-copy h2 {
  margin: 0 0 12px;
  font: 700 clamp(1.7rem, 3.5vw, 2.35rem)/1.12 var(--font-display);
  color: var(--zz-ink);
}
.zz-popup-copy p {
  margin: 0 0 22px;
  font: 600 1rem/1.4 var(--sans);
  color: rgba(0, 71, 67, 0.78);
}
.zz-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zz-popup-actions .zz-btn {
  width: 100%;
  border-radius: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
}
.zz-popup-note {
  margin: 14px 0 0;
  font: 600 12px/1.3 var(--sans);
  color: rgba(0, 71, 67, 0.45);
}
.zz-popup-art {
  position: relative;
  background: var(--zz-mint);
  min-height: 280px;
  display: grid;
  place-items: end center;
  overflow: hidden;
}
.zz-popup-art img {
  position: relative;
  width: 115%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.zz-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--zz-ink);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 699px) {
  .zz-popup-card { grid-template-columns: 1fr; }
  .zz-popup-art { min-height: 200px; order: -1; }
}

.playful-home .dev-banner[hidden],
.playful-home .dev-show-chip[hidden],
.playful-home .dev-edit-toggle[hidden] { display: none !important; }
