/* Collagen UAE — Pink + White beauty theme */
:root {
  --pink: #ff4fa3;
  --pink-soft: #ff7eb6;
  --pink-pale: #ffe6f2;
  --pink-light: #fff0f7;
  --pink-deep: #e91e8c;
  --white: #ffffff;
  --text: #3a2a32;
  --text-muted: #7a5a68;
  --shadow: 0 10px 40px rgba(255, 79, 163, 0.15);
  --shadow-lg: 0 20px 60px rgba(255, 79, 163, 0.22);
  --radius: 20px;
  --radius-sm: 12px;
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
  --max: 1140px;
  --header-h: 72px;
  --sticky-h: 64px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: calc(var(--sticky-h) + 12px);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-deep); text-decoration: none; transition: color .25s, transform .25s; }
a:hover { color: var(--pink); }
ul { list-style: none; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Top bar */
.topbar {
  background: linear-gradient(90deg, var(--pink), var(--pink-soft));
  color: var(--white);
  text-align: center;
  font-size: .85rem;
  font-weight: 500;
  padding: .55rem 1rem;
}
.topbar a { color: var(--white); text-decoration: underline; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pink-pale);
  box-shadow: 0 2px 20px rgba(255,79,163,.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.logo {
  display: flex; align-items: center; gap: .6rem;
  position: relative;
}
.logo img { height: 48px; width: auto; }
.logo-shimmer::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none; border-radius: 8px;
}
@keyframes shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}
.nav-links {
  display: none; gap: .35rem; align-items: center; flex-wrap: nowrap;
}
.nav-links a {
  color: var(--text); font-size: .9rem; font-weight: 500;
  padding: .45rem .7rem; border-radius: 999px;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--pink-pale); color: var(--pink-deep);
}
.nav-cta {
  display: none;
  background: var(--pink); color: var(--white) !important;
  padding: .55rem 1.1rem !important; border-radius: 999px;
  font-weight: 600 !important; box-shadow: 0 6px 20px rgba(255,79,163,.35);
}
.nav-cta:hover { transform: scale(1.05); background: var(--pink-deep) !important; }
.menu-btn {
  background: var(--pink-pale); border: none; border-radius: 12px;
  width: 44px; height: 44px; cursor: pointer;
  display: grid; place-items: center; gap: 5px;
}
.menu-btn span {
  display: block; width: 20px; height: 2.5px; background: var(--pink);
  border-radius: 2px; transition: .3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-nav {
  display: none; flex-direction: column; gap: .35rem;
  padding: .5rem 0 1.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text); font-weight: 500; padding: .75rem 1rem;
  border-radius: var(--radius-sm); background: var(--pink-light);
}
.mobile-nav a:hover { background: var(--pink-pale); }

@media (min-width: 960px) {
  .nav-links, .nav-cta { display: flex; }
  .menu-btn { display: none; }
  .mobile-nav { display: none !important; }
  .logo img { height: 54px; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s;
  text-align: center; font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: var(--white); box-shadow: 0 8px 28px rgba(255,79,163,.4);
  animation: pulse-soft 2.8s ease-in-out infinite;
}
.btn-primary:hover { transform: scale(1.05); color: var(--white); }
.btn-outline {
  background: var(--white); color: var(--pink-deep);
  border: 2px solid var(--pink); box-shadow: var(--shadow);
}
.btn-outline:hover { background: var(--pink-pale); transform: scale(1.04); color: var(--pink-deep); }
.btn-whatsapp {
  background: #25D366; color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { transform: scale(1.05); color: var(--white); filter: brightness(1.05); }
.btn-call {
  background: var(--white); color: var(--pink-deep);
  border: 2px solid var(--pink-soft);
}
@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 8px 28px rgba(255,79,163,.35); }
  50% { box-shadow: 0 8px 36px rgba(255,79,163,.55); }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--pink-pale) 0%, var(--white) 55%, var(--pink-light) 100%);
  padding: 2.5rem 0 3.5rem; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,126,182,.45), transparent 70%);
  top: -80px; right: -60px; animation: float-glow 6s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,79,163,.25), transparent 70%);
  bottom: 40px; left: -40px; animation: float-glow 7s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes float-glow {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.08); }
}
.hero-grid {
  display: grid; gap: 2rem; align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--white); color: var(--pink-deep);
  padding: .4rem .9rem; border-radius: 999px; font-size: .8rem; font-weight: 600;
  box-shadow: var(--shadow); margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(1.85rem, 5vw, 3.1rem);
  line-height: 1.15; color: var(--text); margin-bottom: 1rem;
}
.hero h1 span { color: var(--pink-deep); }
.hero-lead {
  font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.5rem; max-width: 36rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; font-size: .88rem; color: var(--text-muted);
}
.hero-trust strong { color: var(--pink-deep); }
.hero-visual {
  position: relative; display: grid; place-items: center;
}
.hero-visual img.hero-model {
  width: min(100%, 420px); border-radius: 28px;
  box-shadow: var(--shadow-lg);
  animation: float-y 5s ease-in-out infinite;
  object-fit: cover; aspect-ratio: 3/4;
}
.hero-float-product {
  position: absolute; bottom: 8%; left: 0;
  width: min(38%, 160px); border-radius: 16px;
  background: var(--white); padding: .5rem;
  box-shadow: var(--shadow-lg);
  animation: float-y 4.2s ease-in-out infinite reverse;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt { background: linear-gradient(180deg, var(--pink-light), var(--white)); }
.section-pink { background: var(--pink-pale); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head .eyebrow {
  display: inline-block; color: var(--pink-deep); font-weight: 600;
  font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: .75rem; color: var(--text);
}
.section-head p { color: var(--text-muted); }

/* Cards */
.cards {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .cards-2, .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
  border: 1px solid var(--pink-pale);
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-soft));
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1rem;
}
.card h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--text); }
.card p { color: var(--text-muted); font-size: .95rem; }

/* Product highlight */
.product-split {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 800px) { .product-split { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.product-gallery {
  display: grid; gap: .75rem;
  grid-template-columns: 1fr 1fr;
}
.product-gallery .main {
  grid-column: 1 / -1;
  border-radius: var(--radius); overflow: hidden;
  background: var(--pink-light); box-shadow: var(--shadow);
}
.product-gallery .main img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 1rem; }
.product-gallery .thumb {
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--white); border: 2px solid var(--pink-pale);
  cursor: pointer; transition: border-color .25s, transform .25s;
}
.product-gallery .thumb:hover, .product-gallery .thumb.active {
  border-color: var(--pink); transform: scale(1.03);
}
.product-gallery .thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.5rem; }
.pill {
  background: var(--pink-pale); color: var(--pink-deep);
  padding: .35rem .85rem; border-radius: 999px; font-size: .8rem; font-weight: 600;
}
.price-box {
  background: var(--pink-light); border: 1px dashed var(--pink-soft);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 1.25rem;
}
.price-box strong { color: var(--pink-deep); font-size: 1.15rem; }

/* COD banner */
.cod-banner {
  background: linear-gradient(120deg, var(--pink), var(--pink-deep));
  color: var(--white); border-radius: var(--radius);
  padding: 2rem; display: grid; gap: 1.5rem; align-items: center;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
@media (min-width: 720px) { .cod-banner { grid-template-columns: 1.2fr .8fr; padding: 2.5rem; } }
.cod-banner h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .75rem; color: var(--white); }
.cod-banner p { opacity: .95; margin-bottom: 1rem; }
.cod-banner img {
  border-radius: var(--radius-sm); width: 100%;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.cod-banner .btn-outline {
  border-color: var(--white); color: var(--pink-deep); background: var(--white);
}

/* Steps */
.steps { counter-reset: step; }
.step-card { position: relative; padding-top: 1rem; }
.step-card::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -8px; left: 1.25rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pink); color: var(--white);
  display: grid; place-items: center; font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 14px rgba(255,79,163,.4);
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: .75rem; }
.faq-item {
  background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid var(--pink-pale); overflow: hidden;
  box-shadow: 0 4px 16px rgba(255,79,163,.08);
}
.faq-item summary {
  padding: 1.1rem 1.25rem; cursor: pointer; font-weight: 600;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--pink); font-size: 1.4rem; font-weight: 400; line-height: 1;
  transition: transform .3s;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-body {
  padding: 0 1.25rem 1.15rem; color: var(--text-muted); font-size: .95rem;
}

/* Forms */
.form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--pink-pale); max-width: 520px; margin: 0 auto;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .85rem 1rem; border-radius: var(--radius-sm);
  border: 2px solid var(--pink-pale); font-family: inherit; font-size: 1rem;
  background: var(--pink-light); color: var(--text); transition: border-color .25s, background .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--pink); background: var(--white);
}
.form-hint { font-size: .8rem; color: var(--text-muted); margin-top: .35rem; }

/* Page hero (inner) */
.page-hero {
  background: linear-gradient(160deg, var(--pink-pale), var(--white) 70%);
  padding: 2.75rem 0 2rem; text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: .75rem;
}
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem;
  font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--pink-deep); }

/* Local city pages */
.city-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.city-chip {
  background: var(--white); border: 1px solid var(--pink-pale);
  border-radius: var(--radius-sm); padding: 1rem; text-align: center;
  font-weight: 600; color: var(--pink-deep); box-shadow: var(--shadow);
  transition: transform .3s;
}
.city-chip:hover { transform: translateY(-4px); color: var(--pink-deep); }

/* Sticky mobile bar */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
  padding: .65rem .85rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--pink-pale);
  box-shadow: 0 -8px 30px rgba(255,79,163,.15);
}
.sticky-cta .btn { padding: .75rem .5rem; font-size: .9rem; width: 100%; animation: none; }
@media (min-width: 960px) {
  .sticky-cta { max-width: 420px; left: auto; right: 1.25rem; bottom: 1.25rem; border-radius: 999px; padding: .5rem; border: 1px solid var(--pink-pale); }
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--pink-light), var(--pink-pale));
  padding: 3rem 0 2rem; margin-top: 1rem;
  border-top: 1px solid var(--pink-soft);
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand img { height: 56px; width: auto; margin-bottom: .75rem; }
.footer-brand p { color: var(--text-muted); font-size: .9rem; }
.footer-col h4 { color: var(--pink-deep); margin-bottom: .75rem; font-size: 1rem; }
.footer-col a {
  display: block; color: var(--text-muted); padding: .3rem 0; font-size: .92rem;
}
.footer-col a:hover { color: var(--pink-deep); }
.disclaimer {
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid var(--pink-soft);
  font-size: .78rem; color: var(--text-muted); text-align: center; line-height: 1.5;
}
.footer-copy {
  text-align: center; margin-top: 1rem; font-size: .85rem; color: var(--text-muted);
}

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-left { transform: translateX(-32px); }
.reveal-left.visible { transform: translateX(0); }
.reveal-right { transform: translateX(32px); }
.reveal-right.visible { transform: translateX(0); }
.reveal-scale { transform: scale(.94); }
.reveal-scale.visible { transform: scale(1); }

/* Content prose */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin: 1.75rem 0 .75rem; color: var(--text); }
.prose h3 { font-size: 1.15rem; margin: 1.4rem 0 .5rem; color: var(--pink-deep); }
.prose p, .prose li { color: var(--text-muted); margin-bottom: .85rem; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.prose ol { list-style: decimal; padding-left: 1.25rem; margin-bottom: 1rem; }
.prose ol li, .prose ul li { margin-bottom: .5rem; }
.prose strong { color: var(--text); }

/* Contact cards */
.contact-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { text-align: center; }
.contact-card .card-icon { margin-inline: auto; }

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.flex-center { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}


/* ========== AI-style continuous animations ========== */

/* Floating gradient blobs in hero */
.hero-blobs {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(40px); opacity: .55;
  will-change: transform;
}
.blob-1 {
  width: 380px; height: 380px; top: -10%; right: -5%;
  background: radial-gradient(circle, rgba(255,126,182,.7), rgba(255,79,163,.15) 70%, transparent);
  animation: blob-drift-1 12s ease-in-out infinite;
}
.blob-2 {
  width: 280px; height: 280px; bottom: 5%; left: -8%;
  background: radial-gradient(circle, rgba(255,79,163,.45), rgba(255,230,242,.2) 65%, transparent);
  animation: blob-drift-2 14s ease-in-out infinite;
}
.blob-3 {
  width: 220px; height: 220px; top: 40%; left: 35%;
  background: radial-gradient(circle, rgba(255,143,184,.4), transparent 70%);
  animation: blob-drift-3 10s ease-in-out infinite;
}
@keyframes blob-drift-1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-30px, 25px) scale(1.1); }
  66% { transform: translate(20px, -20px) scale(.95); }
}
@keyframes blob-drift-2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(35px, -30px) scale(1.12); }
}
@keyframes blob-drift-3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(40px, 20px) scale(1.15); }
  70% { transform: translate(-25px, -15px) scale(.9); }
}

/* Soft particle / sparkle dots */
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.hero-particles span {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.85);
  box-shadow: 0 0 10px rgba(255,79,163,.6), 0 0 2px rgba(255,255,255,.9);
  animation: sparkle 4.5s ease-in-out infinite;
}
.hero-particles span:nth-child(1) { top: 12%; left: 8%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 22%; left: 72%; animation-delay: .6s; width: 4px; height: 4px; }
.hero-particles span:nth-child(3) { top: 48%; left: 18%; animation-delay: 1.2s; }
.hero-particles span:nth-child(4) { top: 65%; left: 88%; animation-delay: 1.8s; width: 5px; height: 5px; }
.hero-particles span:nth-child(5) { top: 78%; left: 42%; animation-delay: 2.4s; }
.hero-particles span:nth-child(6) { top: 35%; left: 55%; animation-delay: .9s; width: 3px; height: 3px; }
.hero-particles span:nth-child(7) { top: 8%; left: 45%; animation-delay: 2s; width: 4px; height: 4px; }
.hero-particles span:nth-child(8) { top: 88%; left: 15%; animation-delay: 3s; }
@keyframes sparkle {
  0%, 100% { opacity: .15; transform: translateY(0) scale(.7); }
  50% { opacity: 1; transform: translateY(-12px) scale(1.2); }
}

/* Glow pulse on product / hero images */
.glow-pulse {
  animation: float-y 5s ease-in-out infinite, glow-ring 3.2s ease-in-out infinite;
}
.hero-float-product.glow-pulse {
  animation: float-y 4.2s ease-in-out infinite reverse, glow-ring 2.8s ease-in-out infinite;
}
@keyframes glow-ring {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(255,79,163,.25); }
  50% { box-shadow: var(--shadow-lg), 0 0 28px 6px rgba(255,79,163,.35); }
}

/* CTA / logo shimmer overlay */
.btn-shimmer {
  position: relative; overflow: hidden;
}
.btn-shimmer::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.45) 50%, transparent 65%);
  background-size: 220% 100%;
  animation: shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}
.nav-cta {
  position: relative; overflow: hidden;
}
.nav-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.4) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 3.2s ease-in-out infinite;
  pointer-events: none; border-radius: 999px;
}

/* Sticky WhatsApp soft bounce / pulse */
.sticky-cta .wa-pulse,
.wa-pulse {
  animation: wa-bounce 2.4s ease-in-out infinite !important;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
  40% { transform: translateY(-4px) scale(1.03); box-shadow: 0 12px 32px rgba(37,211,102,.5); }
  60% { transform: translateY(-1px) scale(1.01); }
}

/* Ingredient / gallery auto-cycle highlight */
.ingredient-card, .product-gallery .thumb {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.ingredient-card.is-highlight,
.card.is-highlight {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--pink);
  border-color: var(--pink);
  background: linear-gradient(180deg, #fff, var(--pink-light));
}
.product-gallery .thumb.is-highlight,
.product-gallery .thumb.active {
  border-color: var(--pink);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255,79,163,.3);
}

/* Trust pills marquee */
.trust-marquee {
  margin-top: 1.25rem; overflow: hidden; max-width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trust-marquee-track {
  display: flex; gap: .6rem; width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero on-load stagger */
.hero-stagger > * {
  opacity: 0; transform: translateY(18px);
  animation: hero-in .7s ease forwards;
}
.hero-stagger > *:nth-child(1) { animation-delay: .05s; }
.hero-stagger > *:nth-child(2) { animation-delay: .18s; }
.hero-stagger > *:nth-child(3) { animation-delay: .32s; }
.hero-stagger > *:nth-child(4) { animation-delay: .46s; }
.hero-stagger > *:nth-child(5) { animation-delay: .58s; }
.hero-stagger > *:nth-child(6) { animation-delay: .7s; }
@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}
/* Once reveal also runs, keep visible */
.hero-stagger.reveal.visible > * { opacity: 1; transform: none; animation: none; }

/* Guide section helpers */
.cards-5 {
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .cards-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .cards-5 { grid-template-columns: repeat(5, 1fr); }
}
.rounded-media {
  border-radius: var(--radius); width: 100%;
  box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 1;
  background: var(--pink-light);
}
.float-glow-wrap { position: relative; }
.howto-steps {
  list-style: none; counter-reset: howto; display: grid; gap: .85rem; padding: 0;
}
.howto-steps li {
  counter-increment: howto;
  position: relative;
  padding: 1rem 1rem 1rem 3.4rem;
  background: var(--white);
  border: 1px solid var(--pink-pale);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  color: var(--text-muted);
}
.howto-steps li::before {
  content: counter(howto);
  position: absolute; left: .85rem; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff; font-weight: 700; font-size: .9rem;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(255,79,163,.4);
  animation: pulse-soft 2.8s ease-in-out infinite;
}
.howto-steps li strong { color: var(--text); }
.caution-note {
  max-width: 820px; margin-inline: auto;
  background: #fff8fb; border: 1px solid var(--pink-soft);
  border-left: 4px solid var(--pink-deep);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.35rem;
  color: var(--text-muted); font-size: .95rem;
  box-shadow: var(--shadow);
}
.caution-note strong { color: var(--pink-deep); }
.card-list {
  list-style: disc; padding-left: 1.15rem; margin: .35rem 0 0;
  color: var(--text-muted); font-size: .95rem;
}
.card-list li { margin-bottom: .4rem; }

/* Gallery main image gentle float */
.product-gallery .main img {
  animation: float-y 6s ease-in-out infinite;
}

/* Reduced motion — keep layout, stop continuous motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob, .hero-particles span, .glow-pulse, .hero-model, .hero-float-product,
  .btn-primary, .btn-shimmer::after, .logo-shimmer::after, .nav-cta::after,
  .wa-pulse, .trust-marquee-track, .product-gallery .main img,
  .howto-steps li::before {
    animation: none !important;
  }
  .hero-stagger > * {
    opacity: 1; transform: none; animation: none;
  }
  .reveal {
    opacity: 1; transform: none; transition: none;
  }
}


/* Single product image gallery — keep tidy */
.product-gallery .thumb:only-of-type,
.product-gallery .thumb:last-child:first-of-type {
  /* still show one active thumb under main for consistency */
}
.hero-float-product { display: none !important; }
.hero-visual .hero-model {
  max-width: min(100%, 480px);
  margin-inline: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}


/* single-product gallery */
.product-gallery .main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--pink-light);
}
.product-gallery .main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.product-gallery .thumb { display: none; }

/* WP a11y */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #fff;
  clip: auto !important;
  clip-path: none;
  color: var(--pink-deep);
  display: block;
  font-size: .875rem;
  height: auto;
  left: 8px;
  line-height: normal;
  padding: 12px 16px;
  text-decoration: none;
  top: 8px;
  width: auto;
  z-index: 100000;
}
