/* ============================================
   Variation 1 — Sunny Meadow (production rebuild)
   ============================================ */

.theme-sunny {
  --sky: #FFF4D6;
  --sky-2: #FFE9A8;
  --meadow: #A6D17D;
  --meadow-deep: #83AC5E;
  --sun: #FDCB46;
  --sun-deep: #E5A823;
  --river: #91BEF8;
  --river-deep: #6A9EDB;
  --night: #2A3A56;
  --night-2: #1F2A3F;
  --coral: #FA6255;
  --coral-deep: #C73F30;
  --cream: #FFF9E6;
  --ink: #2D2620;
  --ink-soft: #5C4F44;
  --noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");

  background: var(--sky);
  color: var(--ink);
  font-family: 'Delius', system-ui, sans-serif;
  font-weight: 400;
}

/* === Typography === */
.theme-sunny .section-title,
.theme-sunny .hero-title { font-family: 'Fredoka', system-ui, sans-serif; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.theme-sunny .hero-title span:nth-child(4n+1) { color: var(--sun-deep); }
.theme-sunny .hero-title span:nth-child(4n+2) { color: var(--coral); }
.theme-sunny .hero-title span:nth-child(4n+3) { color: var(--river-deep); }
.theme-sunny .hero-title span:nth-child(4n+4) { color: var(--meadow-deep); }
.theme-sunny .section-title span { color: var(--coral); position: relative; }
.theme-sunny .section-title span::after {
  content: '';
  position: absolute; left: -4px; right: -4px; bottom: 4px; height: 0.45em;
  background: rgba(253,203,70,0.45); border-radius: 999px;
  z-index: -1;
}
.theme-sunny .hero-sub,
.theme-sunny .about-lead { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; max-width: 42ch; }

.theme-sunny .eyebrow {
  display: inline-block; font-family: 'Caveat Brush', cursive;
  color: var(--coral); font-size: 1.4rem; line-height: 1;
  margin-bottom: 0.5rem;
  transform: rotate(-2deg);
}

/* === Buttons === */
.theme-sunny .btn {
  font-family: 'Fredoka', system-ui, sans-serif; font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
}
.theme-sunny .btn-primary {
  background: linear-gradient(180deg, #FF7A6E 0%, var(--coral) 100%);
  color: white;
  border-radius: 999px;
  box-shadow: 0 6px 0 var(--coral-deep), 0 12px 24px rgba(250,98,85,0.3);
}
.theme-sunny .btn-primary:hover { transform: translateY(3px); box-shadow: 0 3px 0 var(--coral-deep), 0 6px 14px rgba(250,98,85,0.35); }
.theme-sunny .btn-secondary {
  background: linear-gradient(180deg, #FFE07A 0%, var(--sun) 100%);
  color: var(--ink);
  border-radius: 999px;
  box-shadow: 0 6px 0 var(--sun-deep), 0 12px 24px rgba(253,203,70,0.3);
}
.theme-sunny .btn-secondary:hover { transform: translateY(3px); box-shadow: 0 3px 0 var(--sun-deep), 0 6px 14px rgba(253,203,70,0.35); }
.theme-sunny .btn-ghost {
  background: white; color: var(--ink);
  border-radius: 999px;
  box-shadow: 0 6px 0 var(--meadow-deep), 0 12px 24px rgba(166,209,125,0.25);
}
.theme-sunny .btn-ghost:hover { transform: translateY(3px); box-shadow: 0 3px 0 var(--meadow-deep), 0 6px 14px rgba(166,209,125,0.3); }

/* === Header (fixed transparent, opaque on scroll) === */
.theme-sunny .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.theme-sunny .site-header.scrolled {
  background: rgba(255,244,214,0.92);
  backdrop-filter: blur(10px);
}
.theme-sunny .site-nav a { color: var(--ink); font-weight: 700; position: relative; padding: 0.25rem 0.5rem; }
.theme-sunny .site-nav a::after {
  content: ''; position: absolute; left: 50%; right: 50%; bottom: -2px; height: 3px; border-radius: 999px;
  background: var(--coral); transition: left 0.2s ease, right 0.2s ease;
}
.theme-sunny .site-nav a:hover::after { left: 0.5rem; right: 0.5rem; }
.theme-sunny .icon-btn { color: var(--ink); }
.theme-sunny .icon-btn:hover { color: var(--coral); }

/* === Mobile menu toggle (hamburger) === */
.theme-sunny .menu-toggle {
  display: grid;
  align-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 9px 7px;
  background: transparent;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  color: var(--ink);
}
.theme-sunny .menu-toggle:hover { color: var(--coral); }
.theme-sunny .menu-toggle-bar {
  display: block;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.2s ease;
  transform-origin: center;
}
.theme-sunny .site-header.menu-open .menu-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.theme-sunny .site-header.menu-open .menu-toggle-bar:nth-child(2) { opacity: 0; }
.theme-sunny .site-header.menu-open .menu-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 768px) {
  .theme-sunny .menu-toggle { display: none; }
}

/* === Mobile slide-down nav drawer === */
@media (max-width: 767px) {
  .theme-sunny .site-nav {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
    border-radius: 0 0 24px 24px;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    z-index: 100;
  }
  .theme-sunny .site-header.menu-open .site-nav {
    max-height: 70vh;
    padding: 0.5rem 1.5rem 1.25rem;
  }
  .theme-sunny .site-nav a {
    display: block;
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid rgba(45,38,32,0.08);
    font-size: 1.1rem;
  }
  .theme-sunny .site-nav a:last-child { border-bottom: none; }
  .theme-sunny .site-nav a::after { display: none; }
}

/* === Section base === */
.theme-sunny main > section,
.theme-sunny .site-footer { position: relative; }
.theme-sunny main > section > .container,
.theme-sunny main > section > [class$="-inner"] { position: relative; z-index: 2; }

/* === Shape dividers at BOTTOM of sections === */
/* Each section ends with a shape colored in the NEXT section's color, */
/* rising up from the section's bottom edge — creates seamless color blend */
.theme-sunny .divider-bottom {
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 90px;
  z-index: 2;
  pointer-events: none;
}
.theme-sunny .divider-shape {
  width: 100%; height: 100%;
  display: block;
  filter: drop-shadow(0 -4px 6px rgba(0,0,0,0.04));
}
.theme-sunny .divider-deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.12));
}

/* === Lorry driving across the yellow divider hill === */
.theme-sunny .divider-lorry {
  position: absolute;
  left: -150px;
  bottom: 30px;
  width: 140px;
  height: 70px;
  z-index: 3;
  pointer-events: none;
  animation: lorry-drive 16s linear infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

@keyframes lorry-drive {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100vw + 150px)); }
}

/* Decoration positions — sit on top of each divider's shape contour */
.theme-sunny .hero .divider-tree {
  width: 54px; height: 80px;
  top: -36px; left: 70%;
}
.theme-sunny .products .divider-boat {
  width: 70px; height: 60px;
  top: -18px; left: -80px;
  animation: divider-sail 14s linear infinite;
}
.theme-sunny .tips .divider-cloud-mini {
  width: 100px; height: 50px;
  top: -22px; right: 14%;
  animation: divider-cloud-drift 30s linear infinite;
}
.theme-sunny .feedback .divider-kite {
  width: 46px; height: 82px;
  top: -42px; left: 72%;
  animation: divider-kite-fly 8s ease-in-out infinite;
  transform-origin: top center;
}
.theme-sunny .social .divider-tree-2 {
  width: 50px; height: 76px;
  top: -38px; left: 16%;
}
.theme-sunny .events .divider-spark-1,
.theme-sunny .events .divider-spark-2 {
  width: 22px; height: 22px;
  animation: divider-twinkle 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px currentColor);
}
.theme-sunny .events .divider-spark-1 { top: 18px; left: 28%; }
.theme-sunny .events .divider-spark-2 { top: 8px; right: 22%; animation-delay: 1.2s; }

/* Divider animations */
@keyframes divider-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes divider-sway {
  0%, 100% { transform: rotate(-30deg); }
  50% { transform: rotate(-10deg); }
}
@keyframes divider-bird-fly {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-60px, -8px); }
  100% { transform: translate(0, 0); }
}
@keyframes divider-cloud-drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(30px); }
  100% { transform: translateX(0); }
}
@keyframes divider-sail {
  0%   { transform: translateX(0)                    translateY(0)    rotate(-1deg); }
  12%  { transform: translateX(calc(12vw + 80px))    translateY(-5px) rotate(2deg); }
  28%  { transform: translateX(calc(28vw + 80px))    translateY(3px)  rotate(-1.5deg); }
  44%  { transform: translateX(calc(44vw + 80px))    translateY(-8px) rotate(0.5deg); }
  58%  { transform: translateX(calc(58vw + 80px))    translateY(2px)  rotate(2.5deg); }
  74%  { transform: translateX(calc(74vw + 80px))    translateY(-4px) rotate(-2deg); }
  86%  { transform: translateX(calc(86vw + 80px))    translateY(5px)  rotate(1deg); }
  100% { transform: translateX(calc(100vw + 80px))   translateY(0)    rotate(-1deg); }
}
@keyframes divider-kite-fly {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-14px); }
}
@keyframes divider-twinkle {
  0%, 100% { transform: scale(0.7); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ====== HERO ====== */
.theme-sunny .hero {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(253,203,70,0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--sky) 0%, var(--sky-2) 100%);
  padding-top: 8rem !important;
  padding-bottom: 7rem !important;
  min-height: auto;
}
.theme-sunny .hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--noise); pointer-events: none; opacity: 0.6;
}
.theme-sunny .hero-bg { overflow: hidden; z-index: 1; }
.theme-sunny .hero-inner { position: relative; z-index: 2; padding-top: 1rem; }

.theme-sunny .hero-sun {
  position: absolute; top: 30px; right: 4%;
  width: 130px; height: 130px;
  animation: sun-rotate 30s linear infinite;
}
.theme-sunny .hero-cloud {
  position: absolute; width: 140px; height: 70px;
  filter: drop-shadow(0 8px 14px rgba(60,60,80,0.07));
}
.theme-sunny .hero-cloud-1 { top: 80px; left: -160px; animation: cloud-drift 28s linear infinite; }
.theme-sunny .hero-cloud-2 { top: 40px; left: -160px; animation: cloud-drift 35s linear infinite 12s; transform: scale(0.7); }
.theme-sunny .hero-cloud-3 { top: 200px; left: -160px; animation: cloud-drift 42s linear infinite 30s; transform: scale(1.1); }
.theme-sunny .hero-balloon {
  position: absolute; top: 20px; left: -80px;
  width: 60px; height: 84px;
  animation: balloon-drift 22s linear infinite;
  filter: drop-shadow(0 10px 16px rgba(250,98,85,0.25));
}

.theme-sunny .hero-stats {
  display: flex; gap: 1.5rem; margin-top: 1.75rem;
  padding-top: 1.5rem; border-top: 1px dashed rgba(45,38,32,0.18);
  flex-wrap: wrap;
}
.theme-sunny .hero-stats li { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.2; }
.theme-sunny .hero-stats strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 1.4rem; color: var(--coral); font-weight: 700; }

.theme-sunny .cloud-frame {
  position: relative; max-width: 480px; margin-inline: auto; padding: 0;
  filter: drop-shadow(0 20px 40px rgba(60,60,80,0.15));
}
.theme-sunny .cloud-frame-shape { width: 100%; height: auto; }
.theme-sunny .cloud-frame-spark { position: absolute; width: 28px; height: 28px; animation: sparkle 3s ease-in-out infinite; }
.theme-sunny .spark-1 { top: 8%; right: 18%; animation-delay: 0s; }
.theme-sunny .spark-2 { bottom: 18%; left: 8%; animation-delay: 1s; }
.theme-sunny .spark-3 { top: 45%; left: 80%; animation-delay: 2s; }

@keyframes sun-rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes cloud-drift { from { transform: translateX(0); } to { transform: translateX(110vw); } }
@keyframes balloon-drift {
  0%   { transform: translate(0, 0) rotate(-4deg); }
  50%  { transform: translate(50vw, -30px) rotate(4deg); }
  100% { transform: translate(110vw, 0) rotate(-4deg); }
}
@keyframes sway {
  0%, 100% { transform: rotate(var(--r, -25deg)); }
  50% { transform: rotate(calc(var(--r, -25deg) * -0.4)); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes sparkle {
  0%, 100% { transform: scale(0.6); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}
@keyframes product-sway-a {
  0%   { transform: translateX(0) rotate(0deg); }
  18%  { transform: translateX(8px) rotate(1.2deg); }
  36%  { transform: translateX(-5px) rotate(-0.8deg); }
  54%  { transform: translateX(12px) rotate(0.4deg); }
  72%  { transform: translateX(-9px) rotate(-1.1deg); }
  88%  { transform: translateX(3px) rotate(0.6deg); }
  100% { transform: translateX(0) rotate(0deg); }
}
@keyframes product-sway-b {
  0%   { transform: translateX(0) rotate(0deg); }
  22%  { transform: translateX(-7px) rotate(-1deg); }
  40%  { transform: translateX(11px) rotate(0.7deg); }
  58%  { transform: translateX(-3px) rotate(-0.5deg); }
  76%  { transform: translateX(-10px) rotate(-1.3deg); }
  88%  { transform: translateX(5px) rotate(0.9deg); }
  100% { transform: translateX(0) rotate(0deg); }
}
@keyframes product-sway-c {
  0%   { transform: translateX(0) rotate(0deg); }
  14%  { transform: translateX(-4px) rotate(-0.6deg); }
  32%  { transform: translateX(10px) rotate(1.5deg); }
  48%  { transform: translateX(-7px) rotate(-1deg); }
  66%  { transform: translateX(2px) rotate(0.2deg); }
  82%  { transform: translateX(-11px) rotate(-1.4deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

/* ====== ABOUT ====== */
/* Linear-gradient mask layered above the radials holds pure bg-color for the first 90px
   (matching the divider's SVG height) so the divider's solid curve-fill above seams
   perfectly into the section. It then fades over 150px to reveal the radial glow below. */
.theme-sunny .about {
  background-color: var(--meadow);
  background-image:
    linear-gradient(180deg, var(--meadow) 0%, var(--meadow) 90px, transparent 240px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.18) 0%, transparent 35%),
    radial-gradient(circle at 15% 70%, rgba(255,255,255,0.12) 0%, transparent 30%);
  color: var(--ink);
  padding-top: 5rem;
  padding-bottom: 9rem;
}
.theme-sunny .about::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--noise); pointer-events: none; opacity: 0.5;
}
.theme-sunny .about-inner { text-align: center; max-width: 760px; }

.theme-sunny .about .eyebrow { color: var(--coral); }
.theme-sunny .about .section-title { color: var(--night); }
.theme-sunny .about .section-title span::after { background: var(--sun); opacity: 0.7; }
.theme-sunny .about-lead { margin-left: auto; margin-right: auto; color: var(--ink); font-size: 1.15rem; max-width: 56ch; }

.theme-sunny .badge-row { margin-top: 2rem; }
.theme-sunny .badge {
  background: white; color: var(--ink); border-radius: 999px;
  padding: 0.5rem 1.1rem 0.5rem 0.5rem;
  display: inline-flex; align-items: center; gap: 0.55rem;
  box-shadow: 0 3px 0 rgba(0,0,0,0.06), 0 8px 18px rgba(0,0,0,0.08);
  font-weight: 700; font-size: 0.95rem;
}
.theme-sunny .badge-ico {
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 0.85rem; font-weight: 700;
}
.theme-sunny .link-arrow { color: var(--coral); font-weight: 700; }
.theme-sunny .link-arrow:hover { color: var(--coral-deep); }

/* ====== PRODUCTS ====== */
.theme-sunny .products {
  background-color: var(--sun);
  background-image:
    linear-gradient(180deg, var(--sun) 0%, var(--sun) 90px, transparent 240px),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.3) 0%, transparent 35%);
  padding-top: 5rem;
  padding-bottom: 9rem;
}
.theme-sunny .products::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--noise); pointer-events: none; opacity: 0.4;
}
.theme-sunny .products .eyebrow { color: var(--coral); }
.theme-sunny .products .section-title { color: var(--ink); text-align: center; }
.theme-sunny .products .section-title span::after { background: rgba(255,255,255,0.6); }
.theme-sunny .products > .container > .eyebrow { display: block; text-align: center; }

.theme-sunny .products-deco { position: absolute; opacity: 0.7; }
.theme-sunny .products-deco-cloud { width: 160px; height: 80px; top: 18%; right: 2%; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.05)); }

.theme-sunny .product-grid { margin-top: 2.5rem; }
.theme-sunny .product-card {
  background: var(--cream);
  border-radius: 28px;
  position: relative;
  padding: 2.5rem 1.5rem 2rem;
  box-shadow:
    0 4px 0 rgba(0,0,0,0.06),
    0 12px 28px rgba(60,60,80,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}
.theme-sunny .product-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0.06), 0 18px 36px rgba(60,60,80,0.18);
}
.theme-sunny .product-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--sun-deep);
  box-shadow: inset 0 2px 0 rgba(0,0,0,0.18);
}
.theme-sunny .product-tag {
  display: inline-block;
  background: var(--coral); color: white;
  font-family: 'Fredoka', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  transform: rotate(-2deg);
  box-shadow: 0 3px 0 var(--coral-deep);
  margin-bottom: 0.75rem;
}
.theme-sunny .product-card:nth-child(2) .product-tag { background: var(--meadow-deep); box-shadow: 0 3px 0 #6E9450; }
.theme-sunny .product-card:nth-child(3) .product-tag { background: var(--river-deep); box-shadow: 0 3px 0 #4E7CB5; }

.theme-sunny .product-img { width: 170px; height: 170px; object-fit: contain; margin: 0.5rem auto 1rem; filter: drop-shadow(0 12px 18px rgba(60,60,80,0.18)); }
.theme-sunny .product-name { font-family: 'Fredoka', sans-serif; font-size: 1.7rem; color: var(--ink); margin-bottom: 0.4rem; }
.theme-sunny .product-benefit { color: var(--ink-soft); font-size: 0.95rem; max-width: 24ch; margin: 0 auto 1.25rem; }

/* ====== TIPS ====== */
.theme-sunny .tips {
  background-color: var(--cream);
  background-image:
    linear-gradient(180deg, var(--cream) 0%, var(--cream) 90px, transparent 240px),
    radial-gradient(circle at 10% 30%, rgba(253,203,70,0.10) 0%, transparent 40%);
  padding-top: 5rem;
  padding-bottom: 9rem;
}
.theme-sunny .tips::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--noise); pointer-events: none; opacity: 0.4;
}
.theme-sunny .tips .eyebrow { color: var(--coral); display: block; text-align: center; }
.theme-sunny .tips .section-title { color: var(--ink); }

.theme-sunny .tip-grid { margin-top: 2.5rem; }
.theme-sunny .tip-card {
  background: white;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 4px 0 rgba(0,0,0,0.04), 0 12px 28px rgba(60,60,80,0.1);
  overflow: hidden;
  transition: transform 0.25s ease;
}
.theme-sunny .tip-card:hover { transform: translateY(-4px); }
.theme-sunny .tip-img { border-radius: 0; position: relative; }
.theme-sunny .tip-img-1 { background: linear-gradient(135deg, var(--river) 0%, var(--coral) 100%); }
.theme-sunny .tip-img-2 { background: linear-gradient(135deg, var(--meadow) 0%, var(--sun) 100%); }
.theme-sunny .tip-img-3 { background: linear-gradient(135deg, var(--coral) 0%, var(--sun) 100%); }
.theme-sunny .tip-card > h3,
.theme-sunny .tip-card > p,
.theme-sunny .tip-card > .tip-tag,
.theme-sunny .tip-card > .link-arrow { padding-left: 1.5rem; padding-right: 1.5rem; }
.theme-sunny .tip-tag {
  display: inline-block; margin-top: 1.25rem;
  font-family: 'Fredoka', sans-serif; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--coral); font-weight: 700;
}
.theme-sunny .tip-card h3 { font-family: 'Fredoka', sans-serif; font-size: 1.25rem; margin-top: 0.4rem; color: var(--ink); }
.theme-sunny .tip-card p { color: var(--ink-soft); margin-top: 0.4rem; font-size: 0.95rem; }
.theme-sunny .tip-card .link-arrow { display: inline-block; margin-top: 0.75rem; padding-bottom: 1.5rem; }

/* ====== FEEDBACK ====== */
.theme-sunny .feedback {
  background-color: var(--river);
  background-image:
    linear-gradient(180deg, var(--river) 0%, var(--river) 90px, transparent 240px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.15) 0%, transparent 35%);
  padding-top: 5rem;
  padding-bottom: 9rem;
}
.theme-sunny .feedback::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--noise); pointer-events: none; opacity: 0.35;
}
.theme-sunny .feedback .eyebrow { color: var(--sun); display: block; text-align: center; }
.theme-sunny .feedback .section-title { color: white; text-align: center; }
.theme-sunny .feedback .section-title span { color: var(--sun); }
.theme-sunny .feedback .section-title span::after { background: rgba(253,203,70,0.5); }
.theme-sunny .feedback-deco { position: absolute; opacity: 0.7; pointer-events: none; }
.theme-sunny .feedback-deco-cloud-1 { width: 140px; height: 70px; top: 22%; left: -30px; }
.theme-sunny .feedback-deco-cloud-2 { width: 180px; height: 90px; bottom: 12%; right: -40px; opacity: 0.5; }

.theme-sunny .testimonial {
  background: white;
  border-radius: 28px;
  padding: 1.75rem 1.5rem;
  text-align: left;
  box-shadow: 0 4px 0 rgba(0,0,0,0.06), 0 14px 28px rgba(0,0,0,0.12);
  position: relative;
  transform: rotate(-1deg);
}
.theme-sunny .testimonial:nth-child(2n) { transform: rotate(1deg); }
.theme-sunny .testimonial:nth-child(3n) { transform: rotate(-0.5deg); }
.theme-sunny .testimonial .quote-mark { position: absolute; top: 14px; right: 18px; width: 40px; height: 36px; }
.theme-sunny .testimonial .stars { color: var(--sun-deep); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 0.6rem; line-height: 1; }
.theme-sunny .testimonial p { color: var(--ink); font-size: 1rem; line-height: 1.5; margin-bottom: 1rem; }
.theme-sunny .testimonial .who { display: flex; align-items: center; gap: 0.75rem; border-top: 1px dashed rgba(45,38,32,0.12); padding-top: 0.9rem; }
.theme-sunny .testimonial .who img { width: 44px; height: 44px; border-radius: 50%; margin: 0; object-fit: cover; }
.theme-sunny .testimonial cite { display: block; font-style: normal; font-weight: 700; color: var(--ink); font-size: 0.95rem; line-height: 1.1; }
.theme-sunny .testimonial small { color: var(--ink-soft); font-size: 0.82rem; }

.theme-sunny .slider-arrow {
  background: white; color: var(--coral);
  box-shadow: 0 4px 0 rgba(0,0,0,0.1), 0 8px 18px rgba(0,0,0,0.08);
  border: none;
}
.theme-sunny .slider-arrow:hover { transform: translateY(calc(-50% + 2px)); background: var(--coral); color: white; }
.theme-sunny .slider-dots button { background: rgba(255,255,255,0.4); border: none; }
.theme-sunny .slider-dots button.active { background: white; transform: scale(1.2); }

/* ====== SOCIAL ====== */
.theme-sunny .social {
  background-color: #B5D2F7;
  background-image:
    linear-gradient(180deg, #B5D2F7 0%, #B5D2F7 90px, transparent 240px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.18) 0%, transparent 40%);
  padding-top: 5rem;
  padding-bottom: 9rem;
}
.theme-sunny .social::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--noise); pointer-events: none; opacity: 0.35;
}
.theme-sunny .social .eyebrow { display: block; text-align: center; color: white; background: var(--coral); border-radius: 999px; padding: 0.25rem 0.85rem; transform: rotate(-2deg); font-family: 'Fredoka', sans-serif; font-size: 1rem; }
.theme-sunny .social > .container > .eyebrow { width: max-content; margin-inline: auto; }
.theme-sunny .social .section-title { color: var(--night); text-align: center; }
.theme-sunny .social .section-title span::after { background: rgba(253,203,70,0.55); }
.theme-sunny .social-sub { text-align: center; color: var(--night-2); margin-bottom: 2rem; }
.theme-sunny .social-tile {
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  border: 3px solid white;
  box-shadow: 0 6px 16px rgba(60,60,80,0.15);
  position: relative;
  overflow: hidden;
}
.theme-sunny .social-tile::after {
  content: '🎬'; position: absolute; top: 8px; right: 8px;
  font-size: 0.9rem; opacity: 0.5;
}
.theme-sunny .social-tile-1 { background: linear-gradient(135deg, var(--sun), var(--coral)); }
.theme-sunny .social-tile-2 { background: linear-gradient(135deg, var(--river), var(--meadow)); }
.theme-sunny .social-tile-3 { background: linear-gradient(135deg, var(--coral), var(--river)); }
.theme-sunny .social-tile-4 { background: linear-gradient(135deg, var(--meadow), var(--sun)); }
.theme-sunny .social-tile-5 { background: linear-gradient(135deg, var(--sun), var(--river)); }
.theme-sunny .social-tile-6 { background: linear-gradient(135deg, var(--coral), var(--meadow)); }
.theme-sunny .social-tile-7 { background: linear-gradient(135deg, var(--river), var(--sun)); }
.theme-sunny .social-tile-8 { background: linear-gradient(135deg, var(--meadow), var(--coral)); }

/* ====== EVENTS ====== */
.theme-sunny .events {
  background-color: var(--cream);
  padding-top: 5rem;
  padding-bottom: 9rem;
}
.theme-sunny .events::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--noise); pointer-events: none; opacity: 0.4;
}
.theme-sunny .events .eyebrow { color: var(--coral); display: block; text-align: center; }
.theme-sunny .events .section-title { color: var(--ink); text-align: center; }
.theme-sunny .event-grid { margin-top: 2.5rem; }
.theme-sunny .event-card {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 4px 0 rgba(0,0,0,0.05), 0 14px 30px rgba(60,60,80,0.12);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease;
}
.theme-sunny .event-card:hover { transform: translateY(-4px); }
.theme-sunny .event-img { height: 220px; overflow: hidden; }
.theme-sunny .event-img img { width: 100%; height: 100%; object-fit: cover; }
.theme-sunny .event-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.theme-sunny .event-tag {
  align-self: flex-start;
  background: var(--meadow); color: white;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  font-family: 'Fredoka', sans-serif; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
}
.theme-sunny .event-card h3 { font-family: 'Fredoka', sans-serif; font-size: 1.35rem; color: var(--ink); }
.theme-sunny .event-card p { color: var(--ink-soft); }

/* ====== FOOTER ====== */
.theme-sunny .site-footer {
  background: var(--sun);
  color: var(--ink);
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

/* Footer top divider — yellow wave rising up out of the footer into the content
   above, matching the section shape dividers. Sits in the previous section's
   bottom padding (>=90px on every page template). */
.theme-sunny .site-footer .divider-top {
  position: absolute; left: 0; right: 0;
  bottom: 100%; margin-bottom: -1px;
  height: 90px;
  z-index: 2;
  pointer-events: none;
}
.theme-sunny .site-footer .divider-top .divider-shape {
  width: 100%; height: 100%;
  display: block;
  filter: drop-shadow(0 -4px 6px rgba(0,0,0,0.04));
}
.theme-sunny .site-footer .divider-cloud-mini {
  width: 90px; height: 45px;
  top: 16px; left: 12%;
  animation: divider-cloud-drift 30s linear infinite;
}
.theme-sunny .site-footer a:hover { color: var(--coral); }
.theme-sunny .footer-brand img { width: auto; height: 56px; }
.theme-sunny .footer-brand p { color: var(--ink); }
.theme-sunny .footer-col h4 { font-family: 'Fredoka', sans-serif; color: var(--coral); margin-bottom: 0.85rem; font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.theme-sunny .footer-col a { color: var(--ink); font-weight: 600; }
.theme-sunny .footer-col p { color: var(--ink); }
.theme-sunny .ssm { color: rgba(45,38,32,0.65); font-size: 0.82rem; margin-top: 0.5rem; }

/* Sticker-blob social icons — each platform gets its own asymmetric blob shape,
   theme color, and a slight tilt so the row reads like hand-pasted stickers.
   .site-footer prefix is required to beat .footer-col a (color: ink) and
   .site-footer a:hover (color: coral) which would otherwise win on specificity. */
.theme-sunny .social-icons { display: flex; gap: 0.7rem; padding-top: 0.25rem; }
.theme-sunny .site-footer .soc {
  display: grid;
  place-items: center;
  padding: 0;
  width: 44px; height: 44px;
  border: none;
  color: white;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.3),
    0 4px 0 rgba(0,0,0,0.08),
    0 8px 16px rgba(60,60,80,0.15);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              filter 0.2s ease;
}
.theme-sunny .site-footer .soc:nth-child(1) {
  background: var(--coral);
  border-radius: 60% 40% 35% 65% / 55% 45% 60% 40%;
  transform: rotate(-6deg);
}
.theme-sunny .site-footer .soc:nth-child(2) {
  background: var(--meadow);
  border-radius: 45% 55% 65% 35% / 40% 60% 45% 55%;
  transform: rotate(5deg);
}
.theme-sunny .site-footer .soc:nth-child(3) {
  background: var(--river);
  border-radius: 55% 45% 50% 50% / 60% 40% 55% 45%;
  transform: rotate(-3deg);
}
.theme-sunny .site-footer .soc:hover {
  color: white;
  transform: rotate(0deg) scale(1.12);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.4),
    0 6px 0 rgba(0,0,0,0.1),
    0 12px 22px rgba(60,60,80,0.22);
  filter: brightness(1.08);
}
@media (prefers-reduced-motion: reduce) {
  .theme-sunny .site-footer .soc:nth-child(1):hover { transform: rotate(-6deg); }
  .theme-sunny .site-footer .soc:nth-child(2):hover { transform: rotate(5deg); }
  .theme-sunny .site-footer .soc:nth-child(3):hover { transform: rotate(-3deg); }
}

.theme-sunny .mini-newsletter input { background: rgba(255,255,255,0.55); border: 1px solid rgba(45,38,32,0.18); color: var(--ink); }
.theme-sunny .mini-newsletter input::placeholder { color: rgba(45,38,32,0.5); }
.theme-sunny .footer-bottom { border-top: 1px solid rgba(45,38,32,0.18); padding-top: 1.25rem; margin-top: 2rem; color: rgba(45,38,32,0.6); }
.theme-sunny .footer-bottom small { display: block; margin-top: 0.35rem; }
.theme-sunny .footer-bottom small:first-child { margin-top: 0; }
.theme-sunny .footer-bottom .managed-by a { color: inherit; text-decoration: underline; }
.theme-sunny .footer-bottom .managed-by a:hover { color: var(--ink); }

/* ====== POPUP ====== */
.theme-sunny .popup-card {
  background: var(--cream);
  border-radius: 26px;
  padding: 2.5rem 1.75rem 2rem;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  animation: popup-rise 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.theme-sunny .popup-card::before {
  content: ''; position: absolute; inset: 8px;
  border: 2px dashed rgba(250,98,85,0.4); border-radius: 20px;
  pointer-events: none;
}
.theme-sunny .popup-deco {
  position: absolute; top: -36px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 76px;
  filter: drop-shadow(0 6px 12px rgba(250,98,85,0.4));
}
.theme-sunny .popup-close { background: var(--coral); color: white; box-shadow: 0 3px 0 var(--coral-deep); }
.theme-sunny .popup h3 { font-family: 'Fredoka', sans-serif; color: var(--ink); font-size: 1.6rem; margin-top: 1rem; }
.theme-sunny .popup h3 span { color: var(--coral); }
.theme-sunny .popup p { color: var(--ink-soft); margin-top: 0.5rem; font-size: 0.95rem; }
.theme-sunny .popup-form input { background: white; border: 1px solid rgba(45,38,32,0.15); }
.theme-sunny .popup-fine { display: block; margin-top: 0.85rem; color: var(--ink-soft); font-size: 0.78rem; }

@keyframes popup-rise {
  0% { transform: translateY(30px) scale(0.96); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* ============================================
   V2 — Award-style motion overrides
   ============================================ */

/* Smooth-scroll the whole document */
.theme-v2 { scroll-behavior: smooth; }
html:has(.theme-v2) { scroll-behavior: smooth; }

/* === Scroll progress bar at top === */
.theme-v2 .scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 200;
  background: rgba(45,38,32,0.06);
  pointer-events: none;
}
.theme-v2 .scroll-progress-bar {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--sun), var(--meadow), var(--river));
  transition: width 0.05s linear;
  will-change: width;
}

/* === Bigger, bolder hero typography (award style) === */
.theme-v2 .hero-title { font-size: clamp(3rem, 8vw, 6rem); letter-spacing: -0.025em; line-height: 0.98; }
.theme-v2 .hero-sub { font-size: 1.25rem; max-width: 44ch; }
.theme-v2 .section-title { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; line-height: 1; }
.theme-v2 .eyebrow { font-size: 1.55rem; }

/* === Hero visual — much bigger === */
@media (min-width: 768px) {
  .theme-v2 .hero-inner { grid-template-columns: 1fr 1.35fr; gap: 4rem; align-items: center; }
}
.theme-v2 .cloud-frame {
  max-width: none;
  width: 100%;
  filter: drop-shadow(0 28px 56px rgba(60,60,80,0.18));
}
.theme-v2 .cloud-frame-shape { transform: scale(1.08); transform-origin: center; }
.theme-v2 .cloud-frame-spark { width: 36px; height: 36px; }

/* === Word-by-word reveal animation === */
.theme-v2 [data-anim="word-reveal"] span {
  display: inline-block;
  transform: translateY(110%) rotate(2deg);
  opacity: 0;
  transition: transform 1.05s cubic-bezier(0.2, 0.7, 0.1, 1), opacity 0.6s ease;
  will-change: transform, opacity;
}
.theme-v2 [data-anim="word-reveal"].in-view span { transform: translateY(0) rotate(0); opacity: 1; }
.theme-v2 [data-anim="word-reveal"] span:nth-child(1) { transition-delay: 0s; }
.theme-v2 [data-anim="word-reveal"] span:nth-child(2) { transition-delay: 0.08s; }
.theme-v2 [data-anim="word-reveal"] span:nth-child(3) { transition-delay: 0.16s; }
.theme-v2 [data-anim="word-reveal"] span:nth-child(4) { transition-delay: 0.24s; }
.theme-v2 [data-anim="word-reveal"] span:nth-child(5) { transition-delay: 0.32s; }
.theme-v2 [data-anim="word-reveal"] span:nth-child(6) { transition-delay: 0.40s; }

/* === Simple reveal-up (with optional delay via data-anim-delay handled in JS) === */
.theme-v2 [data-anim="reveal-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.1, 1);
  will-change: transform, opacity;
}
.theme-v2 [data-anim="reveal-up"].in-view { opacity: 1; transform: none; }

/* === Pop-in (scale + fade with a gentle overshoot) — for the hero visual === */
.theme-v2 [data-anim="pop-in"] {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: opacity 1s ease, transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}
.theme-v2 [data-anim="pop-in"].in-view { opacity: 1; transform: none; }

/* === Stagger children up === */
.theme-v2 [data-anim="stagger-up"] > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.1, 1);
}
.theme-v2 [data-anim="stagger-up"].in-view > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-up"].in-view > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-up"].in-view > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-up"].in-view > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-up"].in-view > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-up"].in-view > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-up"].in-view > *:nth-child(7) { transition-delay: 0.6s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-up"].in-view > *:nth-child(8) { transition-delay: 0.7s; opacity: 1; transform: none; }

/* === Stagger children scale-in === */
.theme-v2 [data-anim="stagger-scale"] > * {
  opacity: 0;
  transform: translateY(30px) scale(0.92);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.7, 0.1, 1);
}
.theme-v2 [data-anim="stagger-scale"].in-view > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-scale"].in-view > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-scale"].in-view > *:nth-child(3) { transition-delay: 0.24s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-scale"].in-view > *:nth-child(4) { transition-delay: 0.36s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-scale"].in-view > *:nth-child(5) { transition-delay: 0.10s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-scale"].in-view > *:nth-child(6) { transition-delay: 0.20s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-scale"].in-view > *:nth-child(7) { transition-delay: 0.30s; opacity: 1; transform: none; }
.theme-v2 [data-anim="stagger-scale"].in-view > *:nth-child(8) { transition-delay: 0.40s; opacity: 1; transform: none; }

/* === Parallax (transform applied by JS via translate3d) === */
.theme-v2 [data-parallax] {
  will-change: transform;
  transition: transform 0.15s linear;
}

/* === Refined card lift on hover (more premium) === */
.theme-v2 .product-card {
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.1, 1),
              box-shadow 0.45s cubic-bezier(0.2, 0.7, 0.1, 1);
  animation: product-sway-a 7s ease-in-out infinite;
}
.theme-v2 .product-card:nth-child(2) { animation-name: product-sway-b; animation-duration: 8.3s; }
.theme-v2 .product-card:nth-child(3) { animation-name: product-sway-c; animation-duration: 6.7s; }
.theme-v2 .product-card:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 0 8px 0 rgba(0,0,0,0.06), 0 28px 50px rgba(60,60,80,0.22);
  animation-play-state: paused;
}
.theme-v2 .product-img { transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.1, 1); }
.theme-v2 .product-card:hover .product-img { transform: translateY(-6px) rotate(2deg) scale(1.06); }

.theme-v2 .tip-card { transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.1, 1), box-shadow 0.45s ease; }
.theme-v2 .tip-card:hover { transform: translateY(-8px); box-shadow: 0 8px 0 rgba(0,0,0,0.04), 0 22px 40px rgba(60,60,80,0.18); }

.theme-v2 .event-card:hover { transform: translateY(-6px) scale(1.01); }

/* === Social tile — stronger hover === */
.theme-v2 .social-tile { transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.1, 1), box-shadow 0.4s ease; }
.theme-v2 .social-tile:hover { transform: scale(1.05) rotate(-1deg); box-shadow: 0 12px 28px rgba(60,60,80,0.25); }

/* === Social tile — photo zoom + reveal overlay === */
.theme-v2 .social-photo {
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.1, 1);
  will-change: transform;
}
.theme-v2 .social-tile:hover .social-photo { transform: scale(1.12); }

/* dark gradient that fades in over the photo */
.theme-v2 .social-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(20,20,45,0) 40%, rgba(20,20,45,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.theme-v2 .social-tile:hover::before { opacity: 1; }

/* centered play badge — overrides the static 🎬 corner mark for v2 */
.theme-v2 .social-tile::after {
  content: '▶';
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%) scale(0.7);
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--night);
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(20,20,45,0.3);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1.35);
  pointer-events: none;
}
.theme-v2 .social-tile:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* === Marquee feedback (replace slider with infinite scroll) === */
.theme-v2 .feedback .slider { overflow: hidden; }
.theme-v2 .feedback .slider-track {
  animation: marquee 50s linear infinite;
  width: max-content;
  overflow: visible;
  gap: 1.5rem;
  padding: 1rem 0;
}
.theme-v2 .feedback .slider:hover .slider-track { animation-play-state: paused; }
.theme-v2 .feedback .slider-arrow,
.theme-v2 .feedback .slider-dots { display: none; }
.theme-v2 .feedback .testimonial { flex: 0 0 360px; box-shadow: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === CTA buttons — slick award hover === */
.theme-v2 .btn { position: relative; overflow: hidden; }
.theme-v2 .btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.18);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.1, 1);
  pointer-events: none;
}
.theme-v2 .btn:hover::before { transform: translateX(100%); }

/* === Hero stat numbers — bigger, bolder === */
.theme-v2 .hero-stats strong {
  font-size: 1.85rem;
  background: linear-gradient(180deg, var(--coral), var(--sun-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* === Header — make it minimal & sticky-fade === */
.theme-v2 .site-header { padding: 0.25rem 0; }
.theme-v2 .header-inner { padding: 0.85rem 0; }

/* === Reduced motion fallback === */
@media (prefers-reduced-motion: reduce) {
  .theme-v2 [data-anim] { opacity: 1 !important; transform: none !important; }
  .theme-v2 [data-anim] * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .theme-v2 [data-parallax] { transform: none !important; }
  .theme-v2 .feedback .slider-track { animation: none !important; }
}
