﻿:root {
  --bg: #fffdfd;
  --bg-soft: #f7f3fb;
  --surface: #ffffff;
  --surface-soft: #f9f6fc;
  --text: #2c2338;
  --text-soft: #6f667e;
  --primary: #7a57a8;
  --primary-soft: #ede6f7;
  --secondary: #b28dd9;
  --border: #e8deef;
  --gold: #c8a762;
  --shadow-sm: 0 8px 22px rgba(77, 52, 110, 0.08);
  --shadow-md: 0 14px 30px rgba(77, 52, 110, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Inter, sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 { font-family: "Plus Jakarta Sans", "Manrope", sans-serif; margin: 0; letter-spacing: -0.01em; }

.container { width: min(1160px, 92vw); margin-inline: auto; }
.section { padding: 60px 0; }

.age-banner {
  position: sticky;
  top: 0;
  z-index: 2000;
  text-align: center;
  padding: 8px 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #fff;
  background: #6f4b9a;
}

.site-header {
  position: sticky;
  top: 30px;
  z-index: 1900;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header-row { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.brand { font-size: clamp(22px, 5.8vw, 34px); font-weight: 800; }
.brand span { color: var(--primary); }

.main-nav .menu { margin: 0; padding: 0; list-style: none; display: none; gap: 16px; }
.main-nav .menu a { color: var(--text-soft); font-size: 14px; font-weight: 600; }
.main-nav .menu a:hover { color: var(--primary); }

.header-cart {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.cnw-cart-count {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(84vh, 680px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f1fb 100%);
}
.hero-content { position: relative; text-align: center; max-width: 780px; margin: 0 auto; }
.kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-soft);
}
.hero h1 { font-size: clamp(34px, 11vw, 62px); line-height: 1.08; margin-bottom: 12px; }
.subtitle { margin: 0 auto 22px; max-width: 680px; font-size: clamp(15px, 4.4vw, 20px); color: var(--text-soft); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(122, 87, 168, 0.25);
}
.btn-secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--primary);
}

.announce-bar { border-block: 1px solid var(--border); background: #fff; overflow: hidden; }
.marquee-track {
  display: inline-flex;
  min-width: 200%;
  gap: 28px;
  padding: 12px 0;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  animation: marquee 24s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.section-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(26px, 8vw, 42px); }
.section-head a { color: var(--primary); font-size: 13px; font-weight: 700; }

.product-scroller, .combo-row, .testimonial-track {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.product-scroller { grid-auto-columns: 72%; }
.combo-row { grid-auto-columns: 84%; }
.testimonial-track { grid-auto-columns: 82%; }

.product-card, .combo-card, .testimonial { scroll-snap-align: start; }

.product-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
}

.img-wrap { display: block; border-radius: 12px; overflow: hidden; background: var(--surface-soft); }
.img-wrap img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .25s ease; }
.product-card:hover .img-wrap img { transform: scale(1.04); }

.product-card h3 { margin: 10px 0 4px; font-size: 15px; line-height: 1.4; }
.product-card h3 a:hover { color: var(--primary); }
.rating { min-height: 18px; font-size: 12px; color: var(--gold); }
.price { margin: 7px 0 10px; color: var(--text); font-weight: 800; font-size: 16px; }
.card-actions .btn { width: 100%; min-height: 42px; font-size: 13px; }

.combo-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 12px;
  box-shadow: var(--shadow-sm);
}
.combo-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 12px; margin-bottom: 10px; }
.tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
}
.combo-card h3 { font-size: 19px; margin-bottom: 4px; }
.combo-card p { margin: 0 0 8px; color: var(--text-soft); }
.combo-card .price { font-size: 20px; color: var(--text); }

.offer-grid { display: grid; gap: 12px; }
.offer-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f8f4fc);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.offer-card h3 { margin: 0 0 8px; font-size: 21px; }
.offer-card p { margin: 0 0 10px; color: var(--text-soft); }
.timer { color: var(--primary); font-weight: 800; margin-bottom: 10px; }

.testimonial {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.testimonial img { width: 54px; height: 54px; border-radius: 999px; object-fit: cover; margin-bottom: 8px; }
.testimonial h4 { margin: 0 0 6px; font-size: 16px; }
.testimonial p { margin: 0 0 8px; color: var(--text-soft); font-size: 14px; }

.insta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.insta-grid article { position: relative; border-radius: 12px; overflow: hidden; }
.insta-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.insta-grid button {
  position: absolute;
  left: 8px;
  bottom: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--primary);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
}

.newsletter {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(150deg, #fff, #f8f3fc);
  padding: 24px 16px;
  text-align: center;
}
.newsletter h2 { margin: 0 0 8px; font-size: clamp(30px, 8vw, 42px); }
.newsletter p { margin: 0 0 12px; color: var(--text-soft); }
.newsletter-form { display: grid; gap: 10px; max-width: 460px; margin: 0 auto; }

.newsletter-form input,
.newsletter-form textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .woocommerce-ordering select,
.woocommerce .quantity .qty {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.generic-page,
.shop-main { padding: 36px 0 120px; }
.shop-hero {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  margin-bottom: 16px;
}
.shop-hero h1 { margin: 0 0 8px; font-size: clamp(28px, 7vw, 46px); }
.shop-hero p { margin: 0; color: var(--text-soft); }

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { color: var(--text-soft); font-size: 14px; }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .summary,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-checkout #customer_details,
.woocommerce form.checkout_coupon,
.woocommerce-cart .cart_totals,
.woocommerce-cart table.cart,
.woocommerce-account .woocommerce,
.woocommerce .woocommerce-MyAccount-navigation,
.woocommerce .woocommerce-MyAccount-content,
.cnw-pdp-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product { padding: 12px; margin-bottom: 14px; }
.woocommerce ul.products li.product a img { border-radius: 10px; }
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--text); font-weight: 800; }

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.cnw-single-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 14px; }
.cnw-single-badges span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 700;
}

.cnw-pdp-panel { margin-top: 14px; padding: 14px; }
.cnw-pdp-panel h3 { margin: 0 0 8px; }
.cnw-benefits { display: grid; gap: 10px; }
.cnw-benefits article {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  background: var(--surface-soft);
}
.cnw-benefits strong { display: block; margin-bottom: 4px; color: var(--primary); }
.cnw-benefits p,
.cnw-ingredients,
.cnw-note { color: var(--text-soft); }

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
}

.site-footer {
  margin-top: 24px;
  padding: 34px 0 110px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.site-footer h5 { margin: 0 0 8px; font-size: 16px; color: var(--text); }
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.site-footer li, .site-footer p { margin: 0; color: var(--text-soft); font-size: 13px; }
.site-footer a:hover { color: var(--primary); }
.footer-bottom { margin-top: 14px; border-top: 1px solid var(--border); padding-top: 12px; display: grid; gap: 6px; text-align: center; }

.bottom-nav {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2100;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
}
.bottom-nav a {
  text-align: center;
  min-height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
}

.floating-cart {
  position: fixed;
  right: 14px;
  bottom: 84px;
  z-index: 2200;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(122, 87, 168, 0.24);
}
.floating-cart .cnw-cart-count { position: absolute; top: -8px; right: -8px; border: 2px solid #fff; }

.reveal { opacity: 1; transform: none; }
.js-enabled .reveal { opacity: 0; transform: translateY(12px); transition: opacity .45s ease, transform .45s ease; }
.js-enabled .reveal.show { opacity: 1; transform: none; }

@media (min-width: 768px) {
  .main-nav .menu { display: flex; }
  .product-scroller { grid-auto-columns: 36%; }
  .combo-row { grid-auto-columns: 46%; }
  .testimonial-track { grid-auto-columns: 40%; }
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insta-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .cnw-benefits { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .section { padding: 70px 0; }
  .product-scroller,
  .combo-row,
  .testimonial-track {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow: visible;
  }
  .product-scroller { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .combo-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .testimonial-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .offer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bottom-nav { display: none; }
  .floating-cart { bottom: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}



