/** Shopify CDN: Minification failed

Line 40:0 All "@import" rules must come first

**/
/* =========================================================
   TINY CUDDLES — Custom theme overrides
   Nasal aspirator & baby care products
   ========================================================= */

:root {
  /* Paleta Tiny Cuddles */
  --tc-mint:        #9ed7cf;
  --tc-mint-strong: #6ec4b8;
  --tc-mint-deep:   #3aa395;
  --tc-cream:       #fdfaf6;
  --tc-cream-2:     #f6efe5;
  --tc-pink:        #f7d4d8;
  --tc-pink-strong: #e9a8b0;
  --tc-sky:         #cfe6f2;
  --tc-gold:        #c9a96a;
  --tc-navy:        #1f3a4a;
  --tc-ink:         #243b4a;
  --tc-soft-ink:    #4b5b66;

  /* Sombras y radios */
  --tc-shadow-sm: 0 4px 14px rgba(31, 58, 74, 0.06);
  --tc-shadow-md: 0 12px 40px rgba(31, 58, 74, 0.10);
  --tc-shadow-lg: 0 30px 80px rgba(31, 58, 74, 0.14);
  --tc-radius-sm: 14px;
  --tc-radius-md: 22px;
  --tc-radius-lg: 32px;

  /* Tipografía */
  --tc-font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --tc-font-body:    "Inter", "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Fuentes desde Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Body ---------- */
body.tiny-cuddles,
.tiny-cuddles {
  font-family: var(--tc-font-body);
  color: var(--tc-ink);
  background: var(--tc-cream);
}

.tc-display,
.tiny-cuddles h1, .tiny-cuddles h2 {
  font-family: var(--tc-font-display);
  color: var(--tc-navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

/* =========================================================
   HERO
   ========================================================= */
.tc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 600px at 80% 20%, rgba(158,215,207,0.35), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(247,212,216,0.30), transparent 60%),
    linear-gradient(180deg, #fdfaf6 0%, #f5ece1 100%);
  padding: clamp(40px, 8vw, 110px) 5vw clamp(60px, 10vw, 140px);
}

.tc-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .tc-hero__grid { grid-template-columns: 1fr; text-align: center; }
}

.tc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(110,196,184,0.35);
  color: var(--tc-mint-deep);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: tcFadeUp 0.8s ease both;
}

.tc-hero__eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tc-mint-strong);
  box-shadow: 0 0 0 4px rgba(110,196,184,0.25);
  animation: tcPulse 2s ease-in-out infinite;
}

.tc-hero__title {
  font-family: var(--tc-font-display);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 600;
  color: var(--tc-navy);
  margin: 18px 0 22px;
  animation: tcFadeUp 0.9s ease 0.05s both;
}

.tc-hero__title em {
  font-style: italic;
  color: var(--tc-mint-deep);
  position: relative;
}

.tc-hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'><path d='M0 4 Q 50 0 100 4 T 200 4' stroke='%236ec4b8' stroke-width='2' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
  opacity: 0.7;
}

.tc-hero__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--tc-soft-ink);
  max-width: 520px;
  margin: 0 0 30px;
  animation: tcFadeUp 0.9s ease 0.15s both;
}

@media (max-width: 860px) { .tc-hero__lead { margin-left: auto; margin-right: auto; } }

.tc-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  animation: tcFadeUp 0.9s ease 0.25s both;
}

@media (max-width: 860px) { .tc-hero__cta-row { justify-content: center; } }

.tc-btn {
  --bg: var(--tc-mint-deep);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  background: var(--bg);
  color: var(--fg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 30px rgba(58,163,149,0.30), inset 0 -2px 0 rgba(0,0,0,0.06);
}

.tc-btn::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(180px 80px at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.35), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
}

.tc-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(58,163,149,0.38); }
.tc-btn:hover::before { opacity: 1; }
.tc-btn:active { transform: translateY(0); }

.tc-btn--ghost {
  --bg: rgba(255,255,255,0.7);
  --fg: var(--tc-navy);
  border: 1px solid rgba(31,58,74,0.12);
  backdrop-filter: blur(8px);
  box-shadow: var(--tc-shadow-sm);
}
.tc-btn--ghost:hover { box-shadow: var(--tc-shadow-md); }

.tc-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--tc-soft-ink);
  animation: tcFadeUp 0.9s ease 0.35s both;
}
@media (max-width: 860px) { .tc-hero__trust { justify-content: center; } }

.tc-hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.tc-hero__trust svg { width: 16px; height: 16px; color: var(--tc-mint-deep); }

/* ----- Hero media (producto flotante) ----- */
.tc-hero__media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.tc-hero__stage {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.tc-hero__blob {
  position: absolute;
  inset: 8% 8% 8% 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(158,215,207,0.55) 50%, rgba(158,215,207,0) 75%);
  filter: blur(20px);
  animation: tcBlob 9s ease-in-out infinite;
  z-index: 1;
}

.tc-hero__halo {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(110,196,184,0.5);
  animation: tcSpin 30s linear infinite;
  z-index: 1;
}
.tc-hero__halo::after {
  content: "";
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--tc-mint-strong);
  box-shadow: 0 0 14px rgba(110,196,184,0.8);
}

.tc-hero__product {
  position: relative;
  z-index: 3;
  width: 78%;
  height: 100%;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 40px 50px rgba(31,58,74,0.18));
  animation: tcFloat 6s ease-in-out infinite;
  will-change: transform;
}

.tc-hero__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(110,196,184,0.18), transparent 30%);
  animation: tcSpin 18s linear infinite reverse;
  z-index: 1;
  filter: blur(2px);
}

.tc-hero__badge {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--tc-shadow-md);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  animation: tcFloat 5s ease-in-out infinite;
}
.tc-hero__badge--1 { top: 12%; left: -4%; animation-delay: 0s; }
.tc-hero__badge--2 { bottom: 18%; right: -2%; animation-delay: 1.5s; }
.tc-hero__badge strong { color: var(--tc-mint-deep); font-weight: 700; font-size: 18px; }
.tc-hero__badge small { display: block; color: var(--tc-soft-ink); font-size: 11px; }

/* burbujas flotantes */
.tc-bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.tc-bubble {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(158,215,207,0.25) 60%, transparent 75%);
  border: 1px solid rgba(255,255,255,0.6);
  animation: tcRise linear infinite;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.tc-trust-bar {
  background: #fff;
  padding: 28px 5vw;
  border-block: 1px solid rgba(31,58,74,0.06);
}
.tc-trust-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .tc-trust-bar__inner { grid-template-columns: repeat(2, 1fr); } }

.tc-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--tc-ink);
}
.tc-trust-bar__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--tc-mint);
  color: var(--tc-navy);
  border-radius: 50%;
  flex: 0 0 42px;
  transition: transform .3s ease;
}
.tc-trust-bar__item:hover .tc-trust-bar__icon { transform: scale(1.1) rotate(-8deg); }
.tc-trust-bar__title { font-weight: 600; display: block; }
.tc-trust-bar__sub { color: var(--tc-soft-ink); font-size: 12px; }

/* =========================================================
   SECTION HEAD
   ========================================================= */
.tc-section {
  padding: clamp(60px, 9vw, 120px) 5vw;
  position: relative;
}
.tc-section--cream { background: var(--tc-cream); }
.tc-section--white { background: #fff; }
.tc-section--mint  {
  background: linear-gradient(160deg, #e6f4f1 0%, #fbf3e9 100%);
}

.tc-section__inner { max-width: 1280px; margin: 0 auto; }

.tc-section__head { text-align: center; margin-bottom: 56px; }
.tc-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tc-mint-deep);
  font-weight: 600;
  margin-bottom: 12px;
}
.tc-section__title {
  font-family: var(--tc-font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  color: var(--tc-navy);
  margin: 0 0 14px;
  font-weight: 600;
  line-height: 1.08;
}
.tc-section__lead {
  color: var(--tc-soft-ink);
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
}

/* =========================================================
   SUCTION LEVELS (recreación del PNG)
   ========================================================= */
.tc-suction {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
}
@media (max-width: 880px) { .tc-suction { grid-template-columns: 1fr; } }

.tc-suction__levels { display: flex; flex-direction: column; gap: 18px; }

.tc-level {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(110,196,184,0.18);
  border-radius: var(--tc-radius-md);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 20px;
  align-items: center;
  box-shadow: var(--tc-shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}
.tc-level.is-visible { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease, box-shadow .35s ease; }
.tc-level:nth-child(2).is-visible { transition-delay: 0.15s; }
.tc-level:nth-child(3).is-visible { transition-delay: 0.30s; }

.tc-level:hover {
  transform: translateY(-4px);
  border-color: rgba(110,196,184,0.45);
  box-shadow: var(--tc-shadow-md);
}
.tc-level:hover .tc-level__wind path { animation-duration: 1.2s; }

.tc-level__label {
  font-family: var(--tc-font-display);
  font-size: 30px;
  color: var(--tc-navy);
  margin: 0 0 6px;
  font-weight: 600;
}
.tc-level__dots { display: flex; gap: 6px; margin-bottom: 10px; }
.tc-level__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--tc-mint-strong);
}
.tc-level__dot.is-on { background: var(--tc-mint-strong); }

.tc-level__desc { color: var(--tc-soft-ink); font-size: 14px; line-height: 1.5; margin: 0; }

.tc-level__wind { width: 120px; height: 60px; }
.tc-level__wind path { stroke: var(--tc-mint-strong); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 120; stroke-dashoffset: 0; animation: tcWind 2.4s ease-in-out infinite; }
.tc-level__wind path:nth-child(2) { animation-delay: 0.2s; }
.tc-level__wind path:nth-child(3) { animation-delay: 0.4s; }

.tc-suction__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 60%, rgba(158,215,207,0.30), transparent 65%),
    linear-gradient(180deg, #f6f9f8 0%, #fdfaf6 100%);
  border-radius: var(--tc-radius-lg);
  overflow: hidden;
}
.tc-suction__media::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(31,58,74,0.10), transparent 70%);
  filter: blur(20px);
}
.tc-suction__media img {
  position: relative;
  z-index: 2;
  width: 60%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(31,58,74,0.18));
  animation: tcFloat 7s ease-in-out infinite;
}

.tc-suction__ripples {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.tc-ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(110,196,184,0.35);
  animation: tcRipple 4s ease-out infinite;
}
.tc-ripple:nth-child(1) { width: 50%; height: 50%; animation-delay: 0s; }
.tc-ripple:nth-child(2) { width: 70%; height: 70%; animation-delay: 1s; }
.tc-ripple:nth-child(3) { width: 90%; height: 90%; animation-delay: 2s; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.tc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 980px) { .tc-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tc-steps { grid-template-columns: 1fr; } }

.tc-step {
  background: #fff;
  border-radius: var(--tc-radius-md);
  padding: 30px 26px;
  box-shadow: var(--tc-shadow-sm);
  border: 1px solid rgba(31,58,74,0.06);
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease;
  opacity: 0;
  transform: translateY(24px);
}
.tc-step.is-visible { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease, box-shadow .4s ease; }
.tc-step:nth-child(2).is-visible { transition-delay: 0.10s; }
.tc-step:nth-child(3).is-visible { transition-delay: 0.20s; }
.tc-step:nth-child(4).is-visible { transition-delay: 0.30s; }

.tc-step:hover { transform: translateY(-6px); box-shadow: var(--tc-shadow-md); }

.tc-step__num {
  font-family: var(--tc-font-display);
  font-size: 56px;
  color: var(--tc-mint);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 18px;
}
.tc-step__title { font-size: 19px; margin: 0 0 10px; color: var(--tc-navy); font-weight: 600; }
.tc-step__desc { color: var(--tc-soft-ink); font-size: 14px; line-height: 1.55; margin: 0; }

/* =========================================================
   BENEFITS GRID
   ========================================================= */
.tc-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .tc-benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .tc-benefits { grid-template-columns: 1fr; } }

.tc-benefit {
  background: linear-gradient(160deg, #ffffff 0%, #fbf6ee 100%);
  border-radius: var(--tc-radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(31,58,74,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
  opacity: 0;
  transform: translateY(20px);
}
.tc-benefit.is-visible { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease, box-shadow .35s ease; }
.tc-benefit:nth-child(2).is-visible { transition-delay: 0.10s; }
.tc-benefit:nth-child(3).is-visible { transition-delay: 0.20s; }
.tc-benefit:nth-child(4).is-visible { transition-delay: 0.05s; }
.tc-benefit:nth-child(5).is-visible { transition-delay: 0.15s; }
.tc-benefit:nth-child(6).is-visible { transition-delay: 0.25s; }
.tc-benefit:hover { transform: translateY(-4px); box-shadow: var(--tc-shadow-md); }

.tc-benefit__icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: grid; place-items: center;
  background: var(--tc-mint);
  color: var(--tc-navy);
  margin-bottom: 18px;
  transition: transform .4s ease, border-radius .4s ease;
}
.tc-benefit:hover .tc-benefit__icon { transform: scale(1.08) rotate(-6deg); border-radius: 50%; }
.tc-benefit__icon svg { width: 32px; height: 32px; }

.tc-benefit__title { font-size: 19px; color: var(--tc-navy); margin: 0 0 8px; font-weight: 600; }
.tc-benefit__desc  { font-size: 14px; color: var(--tc-soft-ink); line-height: 1.55; margin: 0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.tc-tests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .tc-tests { grid-template-columns: 1fr; } }

.tc-test {
  background: #fff;
  border-radius: var(--tc-radius-md);
  padding: 30px 28px;
  box-shadow: var(--tc-shadow-sm);
  border: 1px solid rgba(31,58,74,0.06);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.tc-test.is-visible { opacity: 1; transform: translateY(0); }
.tc-test:nth-child(2).is-visible { transition-delay: 0.12s; }
.tc-test:nth-child(3).is-visible { transition-delay: 0.24s; }

.tc-test__stars { color: #f0b53a; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.tc-test__text { color: var(--tc-ink); font-size: 15px; line-height: 1.6; margin: 0 0 22px; font-style: italic; }
.tc-test__author { display: flex; align-items: center; gap: 12px; }
.tc-test__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tc-pink) 0%, var(--tc-mint) 100%);
  display: grid; place-items: center;
  color: var(--tc-navy); font-weight: 700;
  font-family: var(--tc-font-display);
}
.tc-test__name { font-weight: 600; color: var(--tc-navy); font-size: 14px; }
.tc-test__role { color: var(--tc-soft-ink); font-size: 12px; }

/* =========================================================
   FAQ
   ========================================================= */
.tc-faq { max-width: 780px; margin: 0 auto; }
.tc-faq__item {
  border-bottom: 1px solid rgba(31,58,74,0.10);
  padding: 8px 0;
}
.tc-faq__q {
  width: 100%;
  background: none; border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--tc-font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--tc-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.tc-faq__q::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--tc-mint-deep);
  transition: transform .3s ease;
  line-height: 1;
}
.tc-faq__item.is-open .tc-faq__q::after { transform: rotate(45deg); }

.tc-faq__a {
  max-height: 0;
  overflow: hidden;
  color: var(--tc-soft-ink);
  font-size: 15px;
  line-height: 1.65;
  transition: max-height .45s ease, padding .45s ease;
  padding: 0 0 0 0;
}
.tc-faq__item.is-open .tc-faq__a { max-height: 360px; padding: 0 0 22px 0; }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.tc-newsletter {
  background:
    radial-gradient(circle at 20% 30%, rgba(247,212,216,0.50), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(158,215,207,0.50), transparent 55%),
    linear-gradient(180deg, #fbf3e9 0%, #f6efe5 100%);
  border-radius: var(--tc-radius-lg);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tc-newsletter__title {
  font-family: var(--tc-font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--tc-navy);
  margin: 0 0 12px;
  font-weight: 600;
}
.tc-newsletter__lead { color: var(--tc-soft-ink); max-width: 520px; margin: 0 auto 28px; font-size: 16px; }

.tc-newsletter__form {
  max-width: 480px; margin: 0 auto;
  display: flex; gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--tc-shadow-sm);
}
.tc-newsletter__form input {
  flex: 1;
  border: none; background: none;
  padding: 14px 20px;
  font-size: 15px; color: var(--tc-ink);
  outline: none;
  font-family: var(--tc-font-body);
}
.tc-newsletter__form button {
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  background: var(--tc-mint-deep);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background .3s ease, transform .25s ease;
  font-family: var(--tc-font-body);
}
.tc-newsletter__form button:hover { background: #2f8a7e; transform: translateY(-1px); }

/* =========================================================
   COLLECTIONS BAND
   ========================================================= */
.tc-collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .tc-collections { grid-template-columns: 1fr; } }

.tc-col-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--tc-radius-md);
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 28px;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(180deg, transparent 40%, rgba(31,58,74,0.7) 100%),
    linear-gradient(135deg, var(--tc-mint) 0%, var(--tc-mint-deep) 100%);
  transition: transform .4s ease;
}
.tc-col-card:nth-child(2) { background: linear-gradient(180deg, transparent 40%, rgba(31,58,74,0.7) 100%), linear-gradient(135deg, var(--tc-pink) 0%, var(--tc-pink-strong) 100%); }
.tc-col-card:nth-child(3) { background: linear-gradient(180deg, transparent 40%, rgba(31,58,74,0.7) 100%), linear-gradient(135deg, var(--tc-sky) 0%, #8ab8d6 100%); }

.tc-col-card:hover { transform: translateY(-6px); }
.tc-col-card__eyebrow { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }
.tc-col-card__title { font-family: var(--tc-font-display); font-size: 30px; margin: 6px 0 0; }

/* =========================================================
   ANIMACIONES KEYFRAMES
   ========================================================= */
@keyframes tcFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tcFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-14px) rotate(-1.2deg); }
}
@keyframes tcPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(110,196,184,0.5); }
  50%      { box-shadow: 0 0 0 10px rgba(110,196,184,0); }
}
@keyframes tcSpin {
  to { transform: rotate(360deg); }
}
@keyframes tcBlob {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33%      { transform: scale(1.08) translate(2%, -1%); }
  66%      { transform: scale(0.94) translate(-2%, 2%); }
}
@keyframes tcWind {
  0%   { stroke-dashoffset: 120; opacity: 0; }
  30%  { opacity: 1; }
  100% { stroke-dashoffset: -120; opacity: 0; }
}
@keyframes tcRipple {
  0%   { transform: scale(0.4); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes tcRise {
  0%   { transform: translate3d(0, 0, 0) scale(0.8); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.5; }
  100% { transform: translate3d(var(--tc-drift, 30px), -110vh, 0) scale(1.1); opacity: 0; }
}

/* Add to cart fly */
.tc-fly {
  position: fixed;
  z-index: 9999;
  width: 60px; height: 60px;
  border-radius: 50%;
  pointer-events: none;
  transition: transform .9s cubic-bezier(.22,.61,.36,1), opacity .9s ease;
  background-size: cover;
  background-position: center;
  box-shadow: var(--tc-shadow-md);
}

/* Cursor halo (desktop) */
@media (hover: hover) and (pointer: fine) {
  .tc-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1.5px solid rgba(58,163,149,0.6);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .2s ease, height .2s ease, border-color .2s ease;
    z-index: 99999;
    mix-blend-mode: multiply;
  }
  .tc-cursor.is-hover { width: 44px; height: 44px; border-color: rgba(58,163,149,0.9); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .tc-hero__product,
  .tc-hero__blob,
  .tc-hero__halo,
  .tc-hero__ring,
  .tc-hero__badge,
  .tc-suction__media img,
  .tc-bubble,
  .tc-ripple,
  .tc-level__wind path { animation: none !important; }
}

/* =========================================================
   HEADER LOGO — clean display, premium text fallback
   ========================================================= */
.header-logo {
  /* Ensure the logo never gets cropped or squished */
  height: auto !important;
  min-height: 36px;
  align-items: center;
  padding-inline: 4px;
  /* Restore proper edge margin — Horizon's original negative margin can clip the image */
  margin-inline: 0 !important;
}

.header-logo__image {
  object-fit: contain !important;
  max-height: 64px;
  width: auto !important;
  display: block;
}

/* Wordmark fallback (when no logo image is uploaded) — styled premium */
.header-logo:not(:has(img)) {
  font-family: var(--tc-font-display, "Playfair Display", Georgia, serif) !important;
  font-size: clamp(20px, 2.2vw, 26px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  color: var(--tc-navy, #1f3a4a);
  white-space: nowrap;
}

/* When the header is transparent (over hero), keep contrast */
header-component[transparent] .header-logo:not(:has(img)) {
  color: inherit;
}

/* =========================================================
   PRODUCT PAGE — premium polish
   ========================================================= */
.tc-product {
  background: linear-gradient(180deg, #fdfaf6 0%, #ffffff 100%);
  padding: clamp(28px, 5vw, 64px) 5vw clamp(48px, 7vw, 96px);
}

.tc-product__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
@media (max-width: 880px) {
  .tc-product__inner { grid-template-columns: 1fr; }
}

/* Gallery */
.tc-product__gallery {
  position: sticky;
  top: calc(var(--header-height, 80px) + 24px);
  display: grid;
  gap: 14px;
}
@media (max-width: 880px) { .tc-product__gallery { position: static; } }

.tc-product__main-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--tc-radius-lg, 32px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 60%, rgba(158,215,207,0.30), transparent 65%),
    linear-gradient(180deg, #f6f9f8 0%, #fdfaf6 100%);
  display: grid;
  place-items: center;
  box-shadow: var(--tc-shadow-md, 0 12px 40px rgba(31,58,74,0.10));
}

.tc-product__main-media img,
.tc-product__main-media video {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(31,58,74,0.18));
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.tc-product__main-media:hover img { transform: scale(1.04); }

.tc-product__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.tc-product__thumb {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 8px;
  transition: border-color .25s ease, transform .25s ease;
  box-shadow: var(--tc-shadow-sm, 0 4px 14px rgba(31,58,74,0.06));
}
.tc-product__thumb:hover { transform: translateY(-2px); }
.tc-product__thumb.is-active { border-color: var(--tc-mint-strong, #6ec4b8); }
.tc-product__thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Info column */
.tc-product__info { padding-top: 4px; }

.tc-product__breadcrumb {
  font-size: 13px;
  color: var(--tc-soft-ink, #4b5b66);
  margin-bottom: 14px;
}
.tc-product__breadcrumb a { color: inherit; text-decoration: none; }
.tc-product__breadcrumb a:hover { color: var(--tc-mint-deep, #3aa395); }

.tc-product__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(110,196,184,0.12);
  border: 1px solid rgba(110,196,184,0.30);
  color: var(--tc-mint-deep, #3aa395);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tc-product__eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tc-mint-strong, #6ec4b8);
  box-shadow: 0 0 0 4px rgba(110,196,184,0.25);
}

.tc-product__title {
  font-family: var(--tc-font-display, "Playfair Display", Georgia, serif);
  font-size: clamp(30px, 4vw, 48px);
  color: var(--tc-navy, #1f3a4a);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 14px;
}

.tc-product__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.tc-product__rating-stars { color: #f0b53a; font-size: 16px; letter-spacing: 2px; }
.tc-product__rating-count { color: var(--tc-soft-ink, #4b5b66); font-size: 13px; }

.tc-product__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.tc-product__price {
  font-family: var(--tc-font-display, "Playfair Display", Georgia, serif);
  font-size: 36px;
  color: var(--tc-navy, #1f3a4a);
  font-weight: 600;
}
.tc-product__compare {
  color: var(--tc-soft-ink, #4b5b66);
  font-size: 18px;
  text-decoration: line-through;
}
.tc-product__save {
  background: var(--tc-pink, #f7d4d8);
  color: #8a3540;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.tc-product__tax {
  color: var(--tc-soft-ink, #4b5b66);
  font-size: 13px;
  margin-bottom: 22px;
}

.tc-product__divider {
  height: 1px;
  background: rgba(31,58,74,0.10);
  margin: 24px 0;
  border: none;
}

.tc-product__short-desc {
  color: var(--tc-ink, #243b4a);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Bullets / quick benefits */
.tc-product__bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.tc-product__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--tc-ink, #243b4a);
  line-height: 1.45;
}
.tc-product__bullet-icon {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--tc-mint, #9ed7cf);
  display: grid;
  place-items: center;
  color: var(--tc-navy, #1f3a4a);
  margin-top: 1px;
}
.tc-product__bullet-icon svg { width: 16px; height: 16px; }

/* Variant pills */
.tc-product__option {
  margin-bottom: 22px;
}
.tc-product__option-label {
  display: block;
  font-size: 13px;
  color: var(--tc-soft-ink, #4b5b66);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.tc-product__option-label strong { color: var(--tc-navy, #1f3a4a); font-weight: 600; margin-left: 4px; }
.tc-product__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tc-product__option-value {
  border: 1.5px solid rgba(31,58,74,0.15);
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--tc-navy, #1f3a4a);
  cursor: pointer;
  transition: all .25s ease;
  font-family: inherit;
}
.tc-product__option-value:hover { border-color: var(--tc-mint-strong, #6ec4b8); }
.tc-product__option-value.is-selected {
  background: var(--tc-mint-deep, #3aa395);
  color: #fff;
  border-color: var(--tc-mint-deep, #3aa395);
}

/* Quantity selector */
.tc-product__qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(31,58,74,0.15);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}
.tc-product__qty button {
  background: none;
  border: none;
  width: 44px; height: 48px;
  font-size: 18px;
  color: var(--tc-navy, #1f3a4a);
  cursor: pointer;
  transition: background .2s ease;
}
.tc-product__qty button:hover { background: rgba(110,196,184,0.10); }
.tc-product__qty input {
  width: 50px;
  border: none;
  background: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--tc-navy, #1f3a4a);
}
.tc-product__qty input:focus { outline: none; }

/* Add to cart area */
.tc-product__atc-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 18px;
}
.tc-product__atc {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  background: var(--tc-mint-deep, #3aa395);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 14px 36px rgba(58,163,149,0.32), inset 0 -2px 0 rgba(0,0,0,0.08);
  font-family: inherit;
}
.tc-product__atc::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(180px 80px at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.30), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
}
.tc-product__atc:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(58,163,149,0.40); }
.tc-product__atc:hover::before { opacity: 1; }
.tc-product__atc[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

.tc-product__buynow {
  width: 100%;
  margin-top: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--tc-navy, #1f3a4a);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  font-family: inherit;
}
.tc-product__buynow:hover { background: #142a37; transform: translateY(-2px); }

/* Trust / shipping promises */
.tc-product__promises {
  display: grid;
  gap: 12px;
  margin: 18px 0 8px;
  padding: 18px 20px;
  background: rgba(158,215,207,0.10);
  border: 1px solid rgba(110,196,184,0.25);
  border-radius: 18px;
}
.tc-product__promise {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--tc-ink, #243b4a);
}
.tc-product__promise svg {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  color: var(--tc-mint-deep, #3aa395);
}
.tc-product__promise strong { color: var(--tc-navy, #1f3a4a); }

/* Payment icons */
.tc-product__payment {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--tc-soft-ink, #4b5b66);
  margin-top: 16px;
}
.tc-product__payment-badges {
  display: flex;
  gap: 6px;
  align-items: center;
}
.tc-pay-badge {
  background: #fff;
  border: 1px solid rgba(31,58,74,0.10);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--tc-navy, #1f3a4a);
  letter-spacing: 0.02em;
}

/* Description tabs */
.tc-product-tabs {
  margin-top: 56px;
  border-top: 1px solid rgba(31,58,74,0.10);
  padding-top: 28px;
}
.tc-product-tabs__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(31,58,74,0.10);
}
.tc-product-tabs__btn {
  background: none;
  border: none;
  padding: 14px 4px;
  margin-right: 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tc-soft-ink, #4b5b66);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  font-family: inherit;
}
.tc-product-tabs__btn.is-active,
.tc-product-tabs__btn:hover {
  color: var(--tc-navy, #1f3a4a);
  border-bottom-color: var(--tc-mint-deep, #3aa395);
}
.tc-product-tabs__panel { display: none; }
.tc-product-tabs__panel.is-active { display: block; animation: tcFadeUp .4s ease; }
.tc-product-tabs__panel { color: var(--tc-ink, #243b4a); font-size: 15px; line-height: 1.7; }
.tc-product-tabs__panel ul { padding-left: 1.2em; }
.tc-product-tabs__panel li { margin-bottom: 8px; }

/* Product benefits row (below add-to-cart, on its own section) */
.tc-product-benefits {
  margin-top: 64px;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 56px);
  background: linear-gradient(160deg, #e6f4f1 0%, #fbf3e9 100%);
  border-radius: var(--tc-radius-lg, 32px);
}
.tc-product-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}
@media (max-width: 880px) { .tc-product-benefits__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .tc-product-benefits__grid { grid-template-columns: 1fr; } }
.tc-product-benefits__item { text-align: center; }
.tc-product-benefits__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  color: var(--tc-mint-deep, #3aa395);
  box-shadow: var(--tc-shadow-sm, 0 4px 14px rgba(31,58,74,0.06));
}
.tc-product-benefits__icon svg { width: 30px; height: 30px; }
.tc-product-benefits__title { font-weight: 600; color: var(--tc-navy, #1f3a4a); margin: 0 0 6px; font-size: 16px; }
.tc-product-benefits__desc { color: var(--tc-soft-ink, #4b5b66); font-size: 13px; line-height: 1.5; margin: 0; }

/* Stock indicator */
.tc-product__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tc-mint-deep, #3aa395);
  font-weight: 500;
  margin-bottom: 14px;
}
.tc-product__stock::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tc-mint-strong, #6ec4b8);
  box-shadow: 0 0 0 4px rgba(110,196,184,0.25);
  animation: tcPulse 2s ease-in-out infinite;
}
/* ===========================================
   HEADER — Wordmark centrado "Tiny Cuddles"
   =========================================== */
header-component {
  position: relative;
}

header-component::after {
  content: "Tiny Cuddles";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--tc-font-display, "Playfair Display", Georgia, serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  color: var(--tc-navy, #1f3a4a);
  letter-spacing: -0.01em;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

/* Ocultarlo en móvil si choca con el menú */
@media (max-width: 990px) {
  header-component::after {
    display: none;
  }
}