:root {
  --pink-100: #F3EAE9; /* light background tint */
  --pink-200: #E6D9D7; /* light border */
  --pink-300: #B58E7C; /* gold/rose-gold accent */
  --pink-400: #A37983; /* intermediate mauve */
  --pink-500: #8C636B; /* dusty mauve primary */
  --rose-600: #4A2E33; /* very dark brown/red-brown */
  --purple-700: #4A2E33; /* reuse as deep text tone */
  --text: #4A2E33;      /* body text */
  --muted: #7A6065;     /* muted text */
  --bg: #F8F4F3;        /* page background */
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Poppins', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--bg); overflow-x: hidden; overscroll-behavior-y: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 100%; margin: 0 auto; padding: 0 15px; }
.promo-ticker { background: var(--pink-500); color: #fff; font-size: 14px; overflow: hidden; }
.promo-ticker .ticker-track { display: flex; gap: 48px; padding: 8px 0; animation: tickerScroll 25s linear infinite; white-space: nowrap; will-change: transform; }
@keyframes tickerScroll { 
  0% { transform: translateX(0); } 
  100% { transform: translateX(-50%); } 
}
@media (max-width: 640px) {
  .promo-ticker .ticker-track { 
    animation: tickerScrollMobile 12s linear infinite;
    gap: 60px;
    min-width: 200%;
  }
  .promo-ticker { font-size: 11px; }
}
@keyframes tickerScrollMobile { 
  from { transform: translateX(0); } 
  to { transform: translateX(-100%); } 
}
.frame {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.site-header { background: linear-gradient(90deg, #4A2E33, #8C636B); color: white; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 15px; }
.logo { text-decoration: none; position: relative; display: inline-flex; align-items: center; }
.logo-img { height: 40px; width: auto; display: block; background: transparent; }
.header-spacer { width: 50px; }
@media (max-width: 640px) {
  .site-header .header-inner { padding: 10px 15px 12px !important; }
}
.logo .logo-text { display: inline-flex; align-items: center; position: relative; background-image: linear-gradient(90deg, var(--pink-300), #fff, var(--pink-300)); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% auto; animation: logoShimmer 5s linear infinite; text-shadow: 0 2px 10px rgba(0,0,0,0.15); }
/* Liquid VELORA text effect reused inline */
.velora-text { color: var(--pink-500); font-weight: 800; text-shadow: none; animation: none; }
/* Apply same shine to the registered mark when it immediately follows VELORA in text */
.velora-text + .reg { color: var(--pink-500); font-weight: 800; text-shadow: none; animation: none; }
/* Ensure ticker version stays visible on mauve background */
.promo-ticker .velora-text,
.promo-ticker .velora-text + .reg {
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
@keyframes veloraShimmer { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
@keyframes logoShimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.logo .logo-text::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: radial-gradient(ellipse at center, rgba(181,142,124,0.7) 0%, rgba(181,142,124,0) 70%); filter: blur(1px); }
.logo .logo-text .veri { letter-spacing: 0.5px; }
.logo .logo-text .her { letter-spacing: 0.5px; margin-left: -1px; }
.logo .logo-text .split { width: 2px; margin: 0 1px; display: inline-block; background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0)); transform: skewX(8deg); border-radius: 1px; opacity: 0.6; }
/* floating tiny hearts */
.logo .logo-text::after, .logo .logo-text::before { content: "❤"; position: absolute; color: var(--pink-300); font-size: 10px; opacity: 0; }
.logo .logo-text::after { right: -10px; top: -6px; }
.logo .logo-text::before { right: -2px; top: -14px; }
@keyframes heartBurst { 0%, 60% { opacity: 1; } 61%, 100% { opacity: 1; } }
@keyframes logoPulse {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
  50% { opacity: 0.85; filter: drop-shadow(0 0 6px rgba(255,255,255,0.6)); }
}
.nav a { color: white; text-decoration: none; margin-left: 16px; }
.cart-link {
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cart-link:hover,
.cart-link:focus-visible {
  transform: translateY(-1px);
}
.cart-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.cart-count {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.cart-count.is-empty {
  opacity: 0;
  width: 0;
  padding: 0;
  overflow: hidden;
}

.footer-scroll-top {
  margin: 24px auto 0;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--rose-600), var(--pink-500));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(140, 99, 107, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-scroll-top:hover,
.footer-scroll-top:focus-visible {
  box-shadow: 0 16px 30px rgba(140, 99, 107, 0.45);
}

.perk-widget {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: min(320px, calc(100vw - 32px));
  z-index: 1200;
  padding-top: 10px;
  transition: transform 0.3s ease;
}
.perk-widget.is-tucked {
  transform: translateX(calc(100% - 42px));
}
.perk-widget.is-tucked .perk-toggle {
  width: auto;
  padding: 10px 12px;
}
.perk-widget.is-tucked .perk-toggle__label small {
  display: none;
}
.perk-widget.is-tucked .perk-toggle__label strong {
  font-size: 14px;
}
.perk-dismiss {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(74, 46, 51, 0.85);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(0,0,0,0.25);
}
.perk-dismiss:hover,
.perk-dismiss:focus-visible {
  background: rgba(74, 46, 51, 1);
}
.perk-toggle {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: radial-gradient(circle at 0% 50%, rgba(255,255,255,0.35), rgba(255,255,255,0) 40%), linear-gradient(120deg, #F2B6C4, #C08497, #8C5F72);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(140, 99, 107, 0.4);
  font-size: 14px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.perk-toggle__sparkle {
  font-size: 18px;
  display: inline-block;
  animation: sparkleTwist 2.2s linear infinite;
}
.perk-toggle__label {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.perk-toggle__label strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}
.perk-toggle__label small {
  font-size: 11px;
  opacity: 0.85;
}
.perk-toggle:hover,
.perk-toggle:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 30px rgba(140, 99, 107, 0.45);
}
.perk-panel {
  width: 100%;
  background: #fff;
  border-radius: 22px;
  padding: 18px 18px 14px;
  box-shadow: 0 20px 45px rgba(74, 46, 51, 0.25);
  border: 1px solid rgba(140,99,107,0.2);
  position: relative;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  background-image: radial-gradient(circle at top right, rgba(242,182,196,0.25), transparent 60%);
}
.perk-widget.is-open .perk-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.perk-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 20px;
  color: var(--rose-600);
  cursor: pointer;
}
.perk-panel__eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--pink-400);
  margin: 0 0 6px;
}
.perk-panel h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--rose-600);
}
.perk-panel__copy {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}
.perk-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.perk-form label {
  font-size: 12px;
  font-weight: 600;
  color: var(--rose-600);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.perk-form input {
  border: 1px solid var(--pink-200);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
}
.perk-form input:focus {
  outline: 2px solid rgba(242,182,196,0.8);
  border-color: transparent;
}
.perk-submit {
  width: 100%;
  font-size: 14px;
  padding: 10px 14px;
}
.perk-error {
  color: #c0392b;
  font-size: 12px;
  margin: -4px 0 4px;
  min-height: 16px;
}
.perk-success {
  background: rgba(242,182,196,0.2);
  border: 1px solid rgba(242,182,196,0.7);
  border-radius: 14px;
  padding: 12px;
  color: var(--rose-600);
  font-size: 13px;
}
.perk-success small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.perk-panel__fineprint {
  font-size: 10px;
  color: var(--muted);
  margin: 8px 0 0;
}
.perk-widget.is-claimed .perk-toggle {
  background: linear-gradient(120deg, #d4a5c6, #a56f89);
}
.perk-widget.is-claimed .perk-toggle__label small {
  opacity: 1;
}
@keyframes sparkleTwist {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 640px) {
  .perk-widget {
    width: min(300px, calc(100vw - 40px));
    right: 12px;
    left: auto;
    bottom: 14px;
    align-items: flex-end;
  }
  .perk-widget.is-tucked {
    transform: translateX(calc(100% - 36px));
  }
  .perk-toggle {
    width: 100%;
  }
  .perk-widget.is-tucked .perk-toggle {
    width: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-scroll-top,
  .perk-toggle,
  .perk-panel {
    transition: none;
  }
}

.site-footer { 
  background: url('../../images/footer-velorame.png') center center/cover no-repeat; 
  margin-top: 48px; 
  text-align: center; 
  position: relative;
  min-height: 420px;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 245, 247, 0.65) 0%, rgba(255, 245, 247, 0.45) 60%, rgba(255, 245, 247, 0.55) 100%);
  pointer-events: none;
}
.site-footer .container { padding: 32px 16px 40px; color: var(--muted); font-size: 14px; display: flex; flex-direction: column; align-items: center; gap: 24px; position: relative; z-index: 1; }
.footer-logo { text-align: center; margin-bottom: 10px; }
.footer-logo-img { height: 50px; width: auto; display: inline-block; transition: opacity 0.3s ease; background: transparent; }
.footer-logo a:hover .footer-logo-img { opacity: 0.8; }
.as-seen-footer { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.as-seen-footer .social-logos { justify-content: center; }
.footer-contact { margin-bottom: 24px; padding-bottom: 20px; text-align: center; }
.footer-contact h3 { font-size: 18px; margin: 0 0 12px 0; color: var(--text); font-weight: 700; }
.footer-contact p { margin: 8px 0; color: var(--text); }
.footer-contact a { color: var(--pink-500); text-decoration: none; transition: color .2s ease; }
.footer-contact a:hover { color: var(--rose-600); text-decoration: underline; }
.site-footer .disclaimer { margin-top: 16px; text-align: center; }
.footer-links-legal {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 600;
}
.footer-links-legal a {
  color: var(--rose-600);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 6px 12px rgba(74,46,51,0.08);
}
.footer-links-legal a:hover,
.footer-links-legal a:focus-visible {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

/* Internal pages */
.page-hero {
  padding: 60px 16px 40px;
  text-align: center;
  width: 100vw;
  margin: 0 calc(-50vw + 50%);
}
.page-hero .container {
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
}
.page-hero h1 {
  margin: 0 0 12px;
  font-size: 32px;
}
.page-hero p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
}
.page-hero--contact {
  background: linear-gradient(135deg, rgba(255, 245, 247, 0.9), rgba(230, 217, 215, 0.6));
  border-bottom: 1px solid rgba(140, 99, 107, 0.12);
}
.page-content {
  padding: 40px 0 60px;
}

/* Contact page */
.contact-page .contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.contact-info {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 243, 0.85));
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(74, 46, 51, 0.12);
  border: 1px solid rgba(140, 99, 107, 0.14);
}
.contact-info h2 {
  margin-top: 0;
  margin-bottom: 12px;
}
.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(250, 244, 244, 0.9));
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(74, 46, 51, 0.14);
  border: 1px solid rgba(140, 99, 107, 0.16);
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.contact-form::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(243,170,190,0.22), rgba(243,170,190,0));
  transform: rotate(12deg);
  pointer-events: none;
}
.contact-form::before {
  content: "";
  position: absolute;
  bottom: -18%;
  left: -8%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255,223,228,0.26), rgba(255,223,228,0));
  pointer-events: none;
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid rgba(140, 99, 107, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  background: #fdfbfb;
  transition: border-color .2s ease, box-shadow .2s ease, transform .1s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink-500);
  box-shadow: 0 8px 18px rgba(140, 99, 107, 0.18);
  transform: translateY(-1px);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.contact-form .checkbox input {
  width: 18px;
  height: 18px;
}
.contact-form .captcha-row {
  display: flex;
  flex-wrap: wrap;
}
.contact-form .form-status {
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
}
.form-status.success {
  background: rgba(66, 185, 131, 0.12);
  color: #1b8058;
  border: 1px solid rgba(66, 185, 131, 0.35);
}
.form-status.error {
  background: rgba(244, 63, 94, 0.1);
  color: #c53030;
  border: 1px solid rgba(244, 63, 94, 0.35);
}

/* Knowledgebase Pages */
.page-hero--kb {
  background: linear-gradient(135deg, rgba(248, 200, 200, 0.5) 0%, rgba(230, 217, 215, 0.4) 50%, rgba(248, 244, 243, 0.8) 100%);
  padding: 80px 16px 60px;
}
.page-hero--kb h1 {
  font-size: 42px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--rose-600), var(--pink-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero--kb p {
  font-size: 18px;
  max-width: 680px;
}

.kb-content {
  padding: 60px 0 80px;
}
.kb-content .container {
  max-width: 1100px;
}
.kb-section-title {
  font-size: 28px;
  margin-bottom: 32px;
  text-align: center;
  color: var(--rose-600);
}
.kb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .kb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 500px) {
  .kb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.kb-card {
  background: linear-gradient(135deg, #fff, rgba(248, 244, 243, 0.9));
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(74, 46, 51, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.kb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(74, 46, 51, 0.14);
}
.kb-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
}
.kb-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.kb-card:hover .kb-card-image img {
  transform: scale(1.05);
}
.kb-card-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.kb-card-content h3 {
  font-size: 15px;
  margin: 0 0 8px;
  color: var(--rose-600);
  line-height: 1.3;
}
.kb-card-content p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  margin: 0 0 10px;
}
.kb-card-link {
  font-weight: 600;
  color: var(--pink-500);
  font-size: 12px;
}
@media (max-width: 500px) {
  .kb-card-content {
    padding: 12px;
  }
  .kb-card-content h3 {
    font-size: 13px;
  }
  .kb-card-content p {
    font-size: 11px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.kb-cta {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-600));
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(74, 46, 51, 0.2);
}
.kb-cta h2 {
  margin: 0 0 12px;
  font-size: 28px;
  color: #fff;
}
.kb-cta p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}
.kb-cta p strong,
.kb-cta p b {
  color: #fff;
  font-weight: 700;
}
.kb-cta .btn.primary {
  background: #fff;
  color: var(--rose-600);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: none;
}
.kb-cta .btn.primary:hover {
  background: var(--pink-100);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Knowledgebase Article Page */
.kb-article {
  width: 100%;
}
.kb-article-hero {
  background: linear-gradient(135deg, rgba(248, 200, 200, 0.4) 0%, rgba(230, 217, 215, 0.3) 50%, rgba(248, 244, 243, 0.8) 100%);
  padding: 60px 0 50px;
  margin-bottom: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.kb-article-hero .container {
  max-width: 900px;
}
/* Styled Hero for Articles */
.kb-article-hero--styled {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 0%, rgba(248, 244, 243, 0.6) 30%, rgba(248, 200, 200, 0.25) 70%, rgba(230, 217, 215, 0.4) 100%);
}
.kb-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(248, 200, 200, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(230, 217, 215, 0.5) 0%, transparent 50%);
  pointer-events: none;
}
.kb-article-hero--styled::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.8) 100%);
  pointer-events: none;
}
.kb-article-hero--styled .container {
  position: relative;
  z-index: 1;
}
.kb-hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.kb-hero-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-600));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(140, 99, 107, 0.25);
}
.kb-article-hero--styled h1 {
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--rose-600);
  font-weight: 600;
}
.kb-article-hero--styled .kb-article-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 30px;
}
.kb-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.kb-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.kb-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--rose-600);
}
.kb-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
}
.kb-stat-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}
.kb-stat-link:hover {
  transform: translateY(-2px);
}
.kb-stat-link:hover .kb-stat-num {
  color: var(--rose-700);
}
.kb-stat-link:hover .kb-stat-label {
  color: var(--rose-600);
}
.kb-hero-author {
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray-600);
}
.kb-hero-author strong {
  color: var(--rose-600);
  font-weight: 600;
}
@media (max-width: 640px) {
  .kb-article-hero--styled {
    padding: 60px 0 45px;
  }
  .kb-article-hero--styled h1 {
    font-size: 28px;
  }
  .kb-article-hero--styled .kb-article-intro {
    font-size: 16px;
  }
  .kb-hero-stats {
    gap: 24px;
  }
  .kb-stat-num {
    font-size: 18px;
  }
  .kb-stat-label {
    font-size: 11px;
  }
}
.kb-article-body {
  padding: 50px 0 60px;
}
.kb-article-body .container {
  max-width: 900px;
}
.kb-breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.kb-breadcrumb a {
  color: var(--pink-500);
  text-decoration: none;
}
.kb-breadcrumb a:hover {
  text-decoration: underline;
}
.kb-breadcrumb span {
  margin: 0 8px;
}
.kb-article-hero h1 {
  font-size: 36px;
  line-height: 1.25;
  margin: 0 0 20px;
  color: var(--rose-600);
}
.kb-article-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.kb-article-intro a {
  color: var(--pink-500);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--pink-300);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.kb-article-intro a:hover {
  color: var(--rose-600);
  border-color: var(--rose-600);
}
.kb-article-content {
  padding-bottom: 60px;
}
.kb-article-content h2 {
  font-size: 26px;
  margin: 48px 0 18px;
  color: var(--rose-600);
}
.kb-article-content h3 {
  font-size: 20px;
  margin: 32px 0 14px;
  color: var(--pink-500);
}
.kb-article-content p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px;
  color: var(--text);
}
.kb-figure {
  margin: 30px 0;
  background: linear-gradient(135deg, rgba(248, 200, 200, 0.2), rgba(248, 244, 243, 0.8));
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(74, 46, 51, 0.08);
}
.kb-figure img {
  width: 100%;
  height: auto;
}
.kb-figure figcaption {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
}
.kb-figure--right {
  float: right;
  width: 45%;
  margin: 10px 0 20px 30px;
}
.kb-figure--left {
  float: left;
  width: 45%;
  margin: 10px 30px 20px 0;
}
.kb-figure--center {
  max-width: 600px;
  margin: 40px auto;
  clear: both;
}
@media (max-width: 768px) {
  .kb-figure--right,
  .kb-figure--left {
    float: none;
    width: 100%;
    margin: 25px 0;
  }
}

.kb-testimonials {
  clear: both;
  margin: 50px 0;
  display: grid;
  gap: 24px;
}
.kb-testimonial {
  background: linear-gradient(135deg, #fff, rgba(248, 244, 243, 0.95));
  border-left: 4px solid var(--pink-500);
  padding: 24px 28px;
  margin: 0;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 6px 20px rgba(74, 46, 51, 0.08);
}
.kb-testimonial p {
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 14px;
}
.kb-testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--pink-500);
  font-size: 14px;
}

.kb-faq {
  clear: both;
  margin: 50px 0;
}
.kb-faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 243, 0.9));
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(74, 46, 51, 0.06);
}
.kb-faq-item h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--rose-600);
}
.kb-faq-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

/* Inline CTAs in articles */
.kb-inline-cta {
  clear: both;
  background: linear-gradient(135deg, rgba(248, 200, 200, 0.3), rgba(230, 217, 215, 0.2));
  padding: 20px 24px;
  border-radius: 14px;
  margin: 30px 0;
  text-align: center;
  border: 1px solid rgba(140, 99, 107, 0.15);
}
.kb-inline-cta p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.kb-inline-cta strong {
  color: var(--rose-600);
}
.kb-inline-cta--highlight {
  background: linear-gradient(135deg, var(--pink-500), var(--rose-600));
  border: none;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(74, 46, 51, 0.15);
}
.kb-inline-cta--highlight h3 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 20px;
}
.kb-inline-cta--highlight p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  display: block;
}
.kb-inline-cta--highlight .btn {
  background: #fff;
  color: var(--rose-600);
}
.kb-inline-cta--highlight .btn:hover {
  background: var(--pink-100);
}
.btn--sm {
  font-size: 14px;
  padding: 10px 20px;
}
@media (max-width: 640px) {
  .kb-inline-cta {
    padding: 16px 18px;
  }
  .kb-inline-cta p {
    flex-direction: column;
    gap: 12px;
  }
  .kb-inline-cta--highlight {
    padding: 24px 20px;
  }
}

.kb-cta-box {
  clear: both;
  background: linear-gradient(145deg, #5a3a40 0%, var(--rose-600) 50%, #3d2528 100%);
  color: #fff;
  padding: 55px 45px;
  border-radius: 28px;
  text-align: center;
  margin: 60px 0 40px;
  box-shadow: 0 20px 50px rgba(74, 46, 51, 0.25);
  position: relative;
  overflow: hidden;
}
.kb-cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.kb-cta-box h2 {
  margin: 0 0 18px;
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.kb-cta-box p {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.kb-cta-box .btn {
  background: linear-gradient(135deg, #fff 0%, #f8f4f3 100%);
  color: var(--rose-600);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}
.kb-cta-box .btn:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}
.kb-cta-sub {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  position: relative;
}
.btn--lg {
  font-size: 18px;
  padding: 18px 48px;
}

/* Related Articles Section */
.kb-related-articles {
  background: linear-gradient(180deg, #f8f4f3 0%, #fff 100%);
  padding: 70px 0;
  margin-top: 40px;
}
.kb-related-articles h2 {
  text-align: center;
  font-size: 32px;
  color: var(--rose-600);
  margin: 0 0 12px;
}
.kb-related-intro {
  text-align: center;
  color: var(--gray-600);
  font-size: 17px;
  margin: 0 0 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.kb-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.kb-related-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(74, 46, 51, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.kb-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(74, 46, 51, 0.15);
}
.kb-related-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f4f3 0%, #fff 100%);
}
.kb-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.kb-related-card:hover .kb-related-image img {
  transform: scale(1.05);
}
.kb-related-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.kb-related-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0 0 10px;
  line-height: 1.4;
}
.kb-related-content p {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.kb-related-cta {
  text-align: center;
}
.kb-related-cta .btn.secondary {
  background: transparent;
  border: 2px solid var(--rose-600);
  color: var(--rose-600);
  padding: 14px 36px;
  font-weight: 600;
}
.kb-related-cta .btn.secondary:hover {
  background: var(--rose-600);
  color: #fff;
}
@media (max-width: 1024px) {
  .kb-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .kb-related-articles {
    padding: 50px 0;
  }
  .kb-related-articles h2 {
    font-size: 26px;
  }
  .kb-related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .kb-related-card {
    flex-direction: row;
  }
  .kb-related-image {
    width: 120px;
    min-width: 120px;
    aspect-ratio: 1;
  }
  .kb-related-content {
    padding: 16px;
  }
  .kb-related-content h3 {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .page-hero--kb h1 {
    font-size: 28px;
  }
  .kb-article-hero h1 {
    font-size: 26px;
  }
  .kb-article-content h2 {
    font-size: 22px;
  }
  .kb-cta-box {
    padding: 36px 24px;
  }
  .kb-cta-box h2 {
    font-size: 24px;
  }
}


/* Slide-out cart drawer */
.cart-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.35); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; z-index: 999; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: 360px; max-width: 90vw; height: 100vh; background: #fff; box-shadow: -8px 0 24px rgba(0,0,0,.15); z-index: 1000; transition: right .3s ease; display: flex; flex-direction: column; }
.cart-drawer.open { right: 0; }
.cart-drawer-header { padding: 16px; border-bottom: 1px solid var(--pink-200); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-summary { background: #fff; position: sticky; top: 0; z-index: 1; }
.cart-drawer-body { padding: 16px; overflow: auto; flex: 1; }
.cart-drawer-footer { padding: 16px; border-top: 1px solid var(--pink-200); }
.cart-drawer .item { display: grid; grid-template-columns: 64px 1fr; gap: 12px; align-items: start; margin-bottom: 12px; }
.cart-drawer .item img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.cart-drawer .qty { width: 64px; }
.cart-drawer-pricing { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.cart-summary-label { display: block; font-size: 14px; color: var(--pink-500); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.cart-price-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cart-item-name { font-weight: 600; margin-bottom: 4px; }
.cart-item-pricing { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.cart-price--original { text-decoration: line-through; color: #9da1a5; font-size: 15px; }
.cart-price--final { color: var(--pink-500); font-weight: 600; font-size: 16px; }
.cart-discount-pill { display: inline-flex; align-items: center; background: var(--pink-100); color: var(--pink-500); border: 1px solid var(--pink-300); border-radius: 999px; font-size: 12px; font-weight: 600; padding: 2px 10px; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.qty-controls { display: flex; align-items: center; gap: 6px; }
.qty-btn { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--pink-300); background: #fff; color: var(--rose-600); font-weight: 700; line-height: 26px; text-align: center; cursor: pointer; }
.qty-btn:active { transform: scale(0.98); }
.cart-remove {
  background: none;
  border: none;
  color: var(--pink-500);
  font-size: 13px;
  padding: 4px 0;
  cursor: pointer;
  text-decoration: underline;
}
.cart-remove:hover,
.cart-remove:focus-visible {
  color: var(--rose-600);
}
.is-cart-open .cart-drawer-overlay { opacity: 1; visibility: visible; }

.hero-visual {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  background: linear-gradient(180deg, #f8c8c8 0%, #f8f4f3 100%);
  margin-top: 0;
  height: calc(100vh - 140px);
  max-height: 800px;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(248,244,243,0) 0%, var(--bg) 100%);
  pointer-events: none;
}

/* Video Showcase Section */
.video-showcase {
  padding: 40px 0;
  background: var(--bg);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.video-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  aspect-ratio: 9 / 16;
}
.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.1);
  pointer-events: none;
  z-index: 1;
}

/* Video Overlay Controls */
.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 100%);
  z-index: 5;
  border-radius: 0 0 16px 16px;
}

.video-sound-btn,
.video-pause-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.video-sound-btn:hover,
.video-pause-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.05);
}
.video-sound-btn:active,
.video-pause-btn:active {
  transform: scale(0.95);
}
.video-sound-btn svg,
.video-pause-btn svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

/* Sound button states */
.video-sound-btn .icon-unmuted { display: none; }
.video-sound-btn .icon-muted { display: block; }
.video-item.is-unmuted .video-sound-btn .icon-unmuted { display: block; }
.video-item.is-unmuted .video-sound-btn .icon-muted { display: none; }

/* Pause button states */
.video-pause-btn .icon-play { display: none; }
.video-pause-btn .icon-pause { display: block; }
.video-item.is-paused .video-pause-btn .icon-play { display: block; }
.video-item.is-paused .video-pause-btn .icon-pause { display: none; }

/* Remove is-playing class behavior - all videos auto-play */
.video-item.is-paused video {
  filter: brightness(0.7);
}

@media (max-width: 640px) {
  .video-overlay {
    padding: 10px;
  }
  .video-sound-btn,
  .video-pause-btn {
    width: 36px;
    height: 36px;
  }
  .video-sound-btn svg,
  .video-pause-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .video-showcase { padding: 30px 0; }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 14px;
  }
  .video-item {
    border-radius: 12px;
  }
  .video-showcase { padding: 24px 0; }
}
.hero {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding-top: 60px;
  margin-top: 0;
  position: relative;
  z-index: 2;
}
.hero > .hero-text,
.hero > .hero-media { flex: 1 1 0; }
.live-viewers { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 12px; width: fit-content; }
.live-viewers .fire-icon { font-size: 16px; animation: flicker 1.5s ease-in-out infinite; }
.live-viewers .viewer-count { font-weight: 700; color: var(--rose-600); font-size: 14px; }
.live-viewers .viewer-text { color: var(--text); }
@keyframes flicker { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.hero h1 { font-size: 40px; margin: 0 0 8px 0; letter-spacing: 0.5px; }
.hero .subtitle { font-size: 18px; }
.hero .subtitle { color: var(--muted); margin-top: -8px; }
.bullets { list-style: none; padding-left: 0; margin: 0; color: var(--text); }
.bullets li {
  margin: 10px 0; /* Adjusted margin for spacing between bordered items */
  position: relative;
  padding: 12px 16px 12px 40px; /* Increased padding to accommodate checkmark and text */
  border: 1px solid var(--pink-200); /* Added border */
  border-radius: 10px; /* Rounded corners for the border */
  background: #fff; /* White background for the text block */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Subtle shadow for depth */
  text-align: left; /* Ensure text inside is left-aligned */
  margin-left: auto;
  margin-right: auto;
  max-width: 600px; /* Limit width for centered look */
}
.bullets li::before { 
  content: "✓"; 
  position: absolute; 
  left: 14px; /* Adjusted left position to be closer to text */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Adjust for vertical centering */
  width: 20px; 
  height: 20px; 
  line-height: 20px; 
  text-align: center; 
  border-radius: 50%; 
  background: var(--pink-100); 
  color: var(--pink-500); 
  font-weight: 700; 
  box-shadow: 0 2px 6px rgba(255,92,138,0.25); 
  font-size: 12px; 
}
.price-row { display: flex; align-items: center; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.pricing-info { display: flex; flex-direction: column; gap: 4px; }
.price-line { display: flex; align-items: baseline; gap: 8px; }
.price { font-size: 24px; font-weight: 700; color: var(--purple-700); }
.price.discounted { color: var(--rose-600); }
.price-label { font-size: 13px; color: var(--muted); }
.add-form { display: flex; align-items: center; gap: 8px; width: 100%; }
.add-form input[type="number"] { width: 72px; padding: 8px; border: 1px solid var(--pink-300); border-radius: 8px; background: white; }

.btn { display: inline-block; padding: 14px 22px; border-radius: 999px; text-decoration: none; font-weight: 700; border: 2px solid transparent; cursor: pointer; letter-spacing: .3px; }
.btn.primary { 
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--pink-400) 50%, var(--pink-500) 100%);
  background-size: 200% 200%;
  color: white; 
  box-shadow: 0 6px 14px rgba(140,99,107,.35); 
  transform: translateY(0); 
  transition: transform .1s ease, box-shadow .2s ease; 
  position: relative;
  overflow: hidden;
  animation: liquidGlare 3s ease-in-out infinite;
}
.btn.primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 60%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: glareSwipe 4s ease-in-out infinite;
}
@keyframes liquidGlare {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes glareSwipe {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}
.btn.primary:hover { 
  background: linear-gradient(135deg, var(--rose-600) 0%, var(--pink-500) 50%, var(--rose-600) 100%);
  background-size: 200% 200%;
  box-shadow: 0 8px 18px rgba(140,99,107,.45); 
  transform: translateY(-1px);
  animation: liquidGlare 2s ease-in-out infinite;
}
.btn.primary:active { transform: translateY(0); box-shadow: 0 4px 10px rgba(140,99,107,.3); }
.btn.outline { background: transparent; color: var(--pink-500); border-color: var(--pink-500); }
.btn.outline:hover { background: var(--pink-100); }
.btn.small { padding: 8px 12px; font-size: 14px; }
.btn.link { background: transparent; border: none; color: var(--pink-500); padding: 0; }

.trust { margin: 14px auto 0; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.stars { color: var(--pink-300); letter-spacing: 2px; }
.trust .stars { color: #FFC107; }
.trust-link { color: var(--muted); text-decoration: none; font-weight: 600; transition: color .2s ease; }
.trust-link:hover { color: var(--pink-500); }
.testimonial .stars { color: #FFC107; }

.offer-timer { margin-top: 8px; display: flex; align-items: center; gap: 10px; }
.offer-timer .label { color: var(--rose-600); font-weight: 600; }
.offer-timer .countdown { font-variant-numeric: tabular-nums; background: var(--pink-100); padding: 6px 10px; border-radius: 8px; border: 1px solid var(--pink-200); }

.hero-media .gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-media figure { margin: 0; border: none; border-radius: 18px; overflow: hidden; background: white; box-shadow: 0 18px 34px rgba(0,0,0,0.08); aspect-ratio: 1 / 1; }
.hero-media figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .thumbs { display: flex; gap: 10px; margin-top: 12px; }
.hero-media .thumb { border: none; border-radius: 10px; padding: 0; overflow: hidden; background: #fff; cursor: pointer; box-shadow: 0 8px 16px rgba(0,0,0,0.06); width: 70px; height: 70px; flex-shrink: 0; }
.hero-media .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.product-tagline {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 16px 0 24px;
  font-weight: 500;
}
.product-vision {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 620px;
}
.product-vision:last-of-type {
  margin-bottom: 24px;
}
.subscription-plans {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}
.plan-card {
  background: rgba(230, 217, 215, 0.35);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
}
.plan-card:hover {
  background: rgba(230, 217, 215, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(140,99,107,0.12);
}
.plan-card.is-selected {
  border-color: var(--pink-500);
  background: rgba(230, 217, 215, 0.6);
}
.plan-card--value {
  position: relative;
  overflow: hidden;
  border-style: dotted;
  border-color: #fda085;
  background: rgba(230, 217, 215, 0.45);
  box-shadow: none;
}
.plan-card--value::after {
  content: none;
}
.plan-card--value.is-selected {
  border-style: dotted;
  border-color: #fda085;
  background: linear-gradient(135deg, rgba(253, 160, 133, 0.18), rgba(255, 255, 255, 0.4));
  box-shadow: 0 6px 14px rgba(74,46,51,0.14);
}
.plan-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex: 1;
}
.plan-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--rose-600);
  margin-top: 2px;
  position: relative;
  flex-shrink: 0;
}
.plan-card.is-selected .plan-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--rose-600);
}
.plan-info h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--rose-600);
}
.plan-info {
  flex: 1;
}
.plan-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.plan-info p {
  margin: 2px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.plan-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  justify-content: flex-end;
  min-width: 130px;
}
.plan-price {
  color: var(--rose-600);
  font-size: 20px;
}
.plan-list {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 14px;
}
.plan-badge {
  background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}
.plan-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}
.plan-tag--popular {
  background: var(--pink-500);
  color: #fff;
  box-shadow: 0 6px 14px rgba(140,99,107,0.25);
}
.plan-tag--value {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  color: #4a2e33;
  box-shadow: 0 6px 14px rgba(253, 160, 133, 0.3);
}
.plan-supply {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 400;
}
.subscription-cta {
  width: 100%;
  font-size: 18px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #059669 100%) !important;
  background-size: 200% 200% !important;
  box-shadow: 0 6px 14px rgba(5, 150, 105, 0.35) !important;
}
.subscription-cta:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 50%, #047857 100%) !important;
  box-shadow: 0 8px 18px rgba(5, 150, 105, 0.45) !important;
}
.onetime-link {
  background: transparent;
  border: none;
  color: #341f97;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: underline;
  width: 100%;
  padding: 0;
  margin-bottom: 16px;
}

.about { margin-top: 32px; }

.testimonials { margin-top: 24px; }
.testimonial-row { display: flex; gap: 16px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.testimonial-row::-webkit-scrollbar { height: 8px; }
.testimonial-row::-webkit-scrollbar-thumb { background: var(--pink-200); border-radius: 999px; }
.testimonial { background: white; border: 1px solid var(--pink-200); border-radius: 12px; padding: 16px; box-shadow: 0 6px 18px rgba(140,99,107, 0.12); min-width: 280px; scroll-snap-align: start; }
.testimonial .author { color: var(--muted); font-size: 14px; }
.marketing { margin-top: 24px; border-top: 1px dashed var(--pink-200); padding-top: 16px; text-align: center; }
.marketing h2 { margin-top: 0; text-align: center; }
.marketing p { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.marketing ul { max-width: 820px; margin-left: auto; margin-right: auto; }

/* Infographic Section */
.infographic-section {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(248, 244, 243, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
.infographic-section .container {
  max-width: 1000px;
}
.infographic-section h2 {
  font-size: 30px;
  color: var(--rose-600);
  margin: 0 0 16px;
  font-weight: 600;
}
.infographic-lead {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 30px;
}
.infographic-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.infographic-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 640px) {
  .infographic-section {
    padding: 40px 0;
  }
  .infographic-section h2 {
    font-size: 24px;
  }
  .infographic-lead {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

.notify { position: fixed; left: 16px; bottom: 16px; background: #fff; border: 1px solid var(--pink-200); box-shadow: 0 10px 20px rgba(0,0,0,0.07); border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; z-index: 9998; animation: slideIn .4s ease; }
.notify .dot { width: 10px; height: 10px; background: var(--rose-600); border-radius: 50%; }
.notify .txt { font-size: 14px; }
@keyframes slideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* click hearts particles */
.heart-particle { position: fixed; pointer-events: none; color: #ffffff; text-shadow: 0 1px 2px rgba(0,0,0,0.25); z-index: 1400; animation: heartUp 1.1s ease-out forwards; will-change: transform, opacity; }
@keyframes heartUp {
  0% { transform: translate(0, 0) scale(0.7) rotate(0deg); opacity: 0.95; }
  100% { transform: translate(var(--dx, 0px), -90px) scale(1.3) rotate(20deg); opacity: 0; }
}

.cart-page h1 { margin-top: 16px; }
.cart-table { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--pink-200); border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.cart-table th, .cart-table td { padding: 12px; border-bottom: 1px solid var(--pink-200); text-align: left; }
.cart-table th { background: var(--pink-100); }
.cart-table td.prod { display: flex; gap: 12px; }
.cart-summary { margin-top: 16px; padding: 16px; background: #fff; border: 1px solid var(--pink-200); border-radius: 12px; }
.cart-summary .actions { margin-top: 12px; display: flex; gap: 10px; }

.checkout-status { text-align: center; padding: 40px 0; }

.muted { color: var(--muted); }
.sr-only { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.moisture {
  margin-top: 48px;
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(243,234,233,0.85) 100%);
  border-top: 1px dashed var(--pink-200);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}
.moisture-inner {
  display: flex;
  align-items: stretch;
  gap: 40px;
}
.moisture-copy {
  flex: 1.6;
}
.moisture-copy h2 {
  margin: 0 0 16px;
  font-size: 32px;
  color: var(--rose-600);
}
.moisture-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}
.moisture-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.moisture-list li {
  background: #fff;
  border: 1px solid var(--pink-200);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 28px rgba(181,142,124,0.18);
  font-weight: 500;
  color: var(--rose-600);
}
.moisture-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--pink-200);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 32px rgba(181,142,124,0.2);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.moisture-card h3 {
  margin: 0;
  color: var(--rose-600);
  font-size: 22px;
}
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.snapshot-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  border-radius: 16px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(243,234,233,0.65) 0%, rgba(255,255,255,0.96) 100%);
  border: 1px solid rgba(181,142,124,0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  color: var(--muted);
  line-height: 1.65;
}
.snapshot-card strong {
  color: var(--pink-500);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.as-seen {
  padding: 48px 0;
  background: #fff;
}
.as-seen-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.as-seen-badge {
  width: 150px;
  height: 150px;
  border-radius: 30px;
  background: linear-gradient(135deg, #fde2ff 0%, #f7b6d7 45%, #f3a1c9 100%);
  color: var(--rose-600);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 20px 34px rgba(243,161,201,0.35);
  border: 1px solid rgba(255,255,255,0.65);
  position: relative;
  overflow: hidden;
}
.as-seen-badge::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.55);
  pointer-events: none;
}
.as-seen-badge .badge-top {
  font-size: 15px;
  letter-spacing: 0.18em;
}
.as-seen-badge .badge-bottom {
  font-size: 26px;
  letter-spacing: 0.12em;
}
.social-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #2c2c2c;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.social-icon svg {
  width: 100%;
  height: 100%;
}
.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.7;
}

.faq {
  padding: 56px 0 64px;
  background: url('../../images/q-and-a-velora.png') center center/cover no-repeat;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 1;
}
.faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, 
      transparent 0%, 
      transparent calc(100% - 180px), 
      rgba(248, 244, 243, 0.2) calc(100% - 120px), 
      rgba(248, 244, 243, 0.5) calc(100% - 80px), 
      rgba(248, 244, 243, 0.85) calc(100% - 40px),
      rgb(248, 244, 243) 100%);
  pointer-events: none;
  z-index: 2;
}
.faq > .container {
  position: relative;
  z-index: 3;
}
.faq h2 {
  text-align: center;
  margin: 0 0 8px;
  color: var(--rose-600);
}
.faq-intro {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 16px;
}
.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--pink-200);
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(181,142,124,0.16);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--rose-600);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question:focus-visible {
  outline: 3px solid rgba(102,126,234,0.35);
  outline-offset: 2px;
}
.faq-icon {
  font-size: 18px;
  margin-left: 16px;
  transition: transform 0.2s ease;
}
.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.65;
}
.faq-item:not(.is-open) .faq-answer {
  display: none;
}
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

/* SEO Intro Section */
.seo-intro {
  padding: 40px 0 32px;
  background: var(--bg);
  text-align: center;
}
.seo-intro h1 {
  font-size: 32px;
  color: var(--rose-600);
  margin: 0 0 16px;
  font-weight: 700;
}
.seo-intro .seo-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
}
.seo-intro .seo-lead strong {
  color: var(--rose-600);
}

@media (max-width: 640px) {
  .seo-intro { padding: 28px 0 24px; }
  .seo-intro h1 { font-size: 24px; }
  .seo-intro .seo-lead { font-size: 15px; }
}

/* Home Page Diagram */
.home-diagram {
  padding: 70px 0;
  background: linear-gradient(180deg, rgba(248, 244, 243, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  position: relative;
}
.home-diagram::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140, 99, 107, 0.15), transparent);
}
.home-diagram .container {
  max-width: 1100px;
}
.home-diagram-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}
.home-diagram-content {
  text-align: left;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-600));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.home-diagram h2 {
  font-size: 32px;
  color: var(--rose-600);
  margin: 0 0 16px;
  font-weight: 600;
  line-height: 1.2;
}
.diagram-lead {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 28px;
}
.diagram-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.diagram-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(140, 99, 107, 0.1);
  box-shadow: 0 4px 15px rgba(74, 46, 51, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.diagram-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 46, 51, 0.1);
}
.feature-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(248, 200, 200, 0.4), rgba(230, 217, 215, 0.3));
  border-radius: 12px;
}
.feature-text strong {
  display: block;
  color: var(--rose-600);
  font-size: 15px;
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}
.home-diagram-visual {
  text-align: center;
}
.home-diagram-wrap {
  position: relative;
}
.home-diagram img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.diagram-caption {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .home-diagram-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home-diagram-content {
    text-align: center;
  }
  .diagram-features {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .home-diagram {
    padding: 50px 0;
  }
  .home-diagram h2 {
    font-size: 24px;
  }
  .diagram-lead {
    font-size: 15px;
  }
  .diagram-feature {
    padding: 14px 16px;
    gap: 12px;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
    border-radius: 10px;
  }
  .feature-text strong {
    font-size: 14px;
  }
  .feature-text p {
    font-size: 13px;
  }
  .diagram-caption {
    font-size: 12px;
    margin-top: 12px;
  }
}

.product-demo {
  padding: 56px 0 48px;
}
.product-demo__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-demo__media {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-demo__badge {
  align-self: flex-start;
  background: linear-gradient(135deg, #f8a5c2 0%, #d980fa 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(217,128,250,0.25);
  text-transform: uppercase;
  font-size: 13px;
}
.product-demo__figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--pink-200);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 28px 44px rgba(140,99,107,0.16);
}
.product-demo__figure img {
  width: 100%;
  border-radius: 18px;
}
.product-demo__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--pink-200);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(181,142,124,0.16);
}
.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--pink-100);
  border-radius: 50%;
  font-weight: 700;
  color: var(--pink-500);
  margin-bottom: 6px;
}
.pillar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-600);
  display: block;
}

.product-demo__card {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--pink-200);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 34px 60px rgba(140,99,107,0.22);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.product-demo__rating {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.product-demo__rating span {
  font-weight: 500;
  margin-left: 6px;
}
.product-demo__title {
  margin: 0;
  font-size: 38px;
  color: var(--rose-600);
  line-height: 1.2;
}
.product-demo__subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: -6px 0 8px;
}
.product-demo__plans {
  display: grid;
  gap: 16px;
}
.product-demo__plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(204, 180, 192, 0.25);
  border-radius: 22px;
  padding: 18px 22px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.product-demo__plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(140,99,107,0.18);
}
.product-demo__plan.is-selected {
  border-color: var(--pink-500);
  background: rgba(204, 180, 192, 0.45);
}
.plan-left {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
}
.plan-left h3 {
  margin: 0;
  font-size: 18px;
  color: var(--rose-600);
}
.plan-left p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.plan-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--rose-600);
  margin-top: 4px;
  position: relative;
}
.product-demo__plan.is-selected .plan-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--rose-600);
}
.plan-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.plan-price {
  color: var(--rose-600);
  font-size: 20px;
}
.plan-list {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 14px;
}
.plan-pill {
  background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-demo__cta {
  font-size: 18px;
  width: 100%;
}
.product-demo__link {
  background: transparent;
  border: none;
  color: #341f97;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: underline;
}
.product-demo__benefits h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--rose-600);
}
.product-demo__benefits ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: 14px;
}
.product-demo__footnote {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-demo__scientific {
  padding: 40px 0 60px;
  border-top: 1px dashed var(--pink-200);
}
.product-demo__scientific h2 {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 32px;
  color: var(--rose-600);
}
.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
}
.science-item {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--pink-200);
  box-shadow: 0 16px 30px rgba(181,142,124,0.16);
  padding: 24px 18px;
  text-align: center;
  font-weight: 600;
  color: var(--rose-600);
}
.science-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-500);
  font-size: 18px;
  margin-bottom: 10px;
}

.product-demo h2 {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.product-demo p {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1200px) {
  .snapshot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { gap: 48px; padding-top: 50px; }
}

/* Mobile product image - hidden on desktop */
.hero-media-mobile {
  display: none;
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 40px;
  }
  .hero-media { width: 100%; max-width: 400px; margin: 0 auto; }
  .hero-text { width: 100%; }
}

@media (max-width: 900px) {
  .hero { padding: 36px 0 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .product-demo__grid { grid-template-columns: 1fr; }
  .product-demo__media { position: static; }
  .moisture-inner { flex-direction: column; gap: 24px; }
  .moisture-card { order: -1; }
  .as-seen-inner { justify-content: center; gap: 24px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .frame { border-radius: 12px; padding-left: 14px; padding-right: 14px; margin: 10px auto 0; }
  .hero-visual {
    margin-top: -12px; /* Reset to original for mobile */
    height: 70vh;
    max-height: 550px;
  }
  .hero-visual img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .hero { padding: 28px 0 0; }
  
  /* Hide desktop hero-media, show mobile version */
  .hero-media { display: none; }
  .hero-media-mobile {
    display: block;
    width: 100%;
    margin: 24px 0;
  }
  .hero-media-mobile figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    aspect-ratio: 1 / 1;
  }
  .hero-media-mobile figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .thumbs-mobile {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .thumbs-mobile .thumb {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .thumbs-mobile .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-media { max-width: 320px; }
  .hero-media figure {
    border-radius: 14px;
  }
  .hero h1 { font-size: 26px; }
  .hero .subtitle { font-size: 16px; }
  .add-form { flex-wrap: wrap; gap: 10px; }
  .btn { width: auto; }
  .product-demo__card { padding: 28px 24px; gap: 18px; }
  .product-demo__title { font-size: 30px; }
  .product-demo__plan { flex-direction: column; align-items: flex-start; gap: 14px; }
  .plan-right { width: 100%; justify-content: space-between; }
  .moisture { padding: 36px 0; }
  .moisture-copy h2 { font-size: 26px; }
  .moisture-card { padding: 24px; }
  .snapshot-grid { grid-template-columns: 1fr; gap: 14px; }
  .snapshot-card { padding: 16px 18px; }
  .as-seen-badge { width: 130px; height: 130px; border-radius: 22px; }
  .faq { padding: 48px 0; }
  .faq-question { padding: 16px 18px; }
}

@media (max-width: 480px) {
  .hero { padding: 24px 0 0; }
  .hero h1 { font-size: 24px; }
  .hero-media { max-width: 280px; }
}

/* Full-width premium CTA */
.btn.primary.cta { width: 100%; text-align: center; font-size: 18px; padding: 16px 24px; box-shadow: 0 10px 24px rgba(140,99,107,.35); }
.btn.primary.cta:hover { box-shadow: 0 14px 28px rgba(140,99,107,.45); }

/* Desktop header proportion tweaks */
@media (min-width: 1024px) {
  .header-inner { padding: 8px 18px; }
  .logo { font-size: 24px; }
  .nav a { margin-left: 18px; font-size: 14px; }
}
.seo-keywords {
  background: url('../../images/mid-section-velora.png') center center/cover no-repeat;
  border-radius: 0;
  padding: 48px 16px;
  margin: 0;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}
.seo-keywords::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, 
      rgba(248, 244, 243, 1) 0%, 
      rgba(248, 244, 243, 0.6) 8%, 
      rgba(255, 255, 255, 0.5) 50%, 
      rgba(248, 244, 243, 0.6) 92%, 
      rgba(248, 244, 243, 1) 100%);
  pointer-events: none;
  z-index: 0;
}
.seo-keywords > .container,
.seo-keywords > .seo-grid {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .seo-keywords {
    background-size: cover;
    background-position: center center;
    min-height: auto;
    padding: 40px 16px;
  }
}
.seo-section-title {
  text-align: center;
  font-size: 28px;
  color: var(--text);
  margin: 0 0 32px;
  font-weight: 700;
}
.seo-keywords .seo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.seo-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(140, 99, 107, 0.12);
  padding: 18px 18px 16px;
  box-shadow: 0 10px 18px rgba(74, 46, 51, 0.06);
  position: relative;
}
.seo-card::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 16px;
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-300), var(--pink-500));
}
.seo-card h3 {
  margin: 8px 0 8px;
  padding-left: 0;
  font-size: 18px;
}
.seo-card p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}
