:root {
  --pink-100: #ffe5ee;
  --pink-200: #ffcddd;
  --pink-300: #ffb3cc;
  --pink-400: #ff8fb3;
  --pink-500: #ff5c8a;
  --rose-600: #d9487c;
  --purple-700: #6f3a86;
  --text: #2a1a2a;
  --muted: #6b5a6b;
  --bg: #fff7fa;
}

* { 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: 1100px; margin: 0 auto; padding: 0 16px; }
.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: ticker 18s linear infinite; white-space: nowrap; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.frame { max-width: 900px; background: #fff; border: 2px solid var(--pink-300); border-radius: 16px; box-shadow: 0 12px 32px rgba(255,92,138,0.10); padding-left: 24px; padding-right: 24px; margin-top: 16px; }

.site-header { background: linear-gradient(90deg, var(--pink-300), var(--pink-500)); color: white; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { color: white; font-weight: 800; text-decoration: none; letter-spacing: 1px; font-size: 24px; position: relative; display: inline-flex; align-items: center; transform: skewX(-8deg); }
.logo .logo-text { display: inline-flex; align-items: baseline; animation: logoPulse 2.4s ease-in-out infinite, heartBurst 2.8s ease-in-out infinite; text-shadow: 0 2px 8px rgba(0,0,0,0.15); gap: 0; position: relative; }
.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: #ff8fb3; 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; }

.site-footer { background: #fff; border-top: 1px solid var(--pink-200); margin-top: 48px; }
.site-footer .container { padding: 24px 16px; color: var(--muted); font-size: 14px; }

/* 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; }
.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); }
.is-cart-open .cart-drawer-overlay { opacity: 1; visibility: visible; }

.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; padding: 40px 0; border-bottom: 1px solid var(--pink-200); }
.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: 6px 0; position: relative; padding-left: 28px; }
.bullets li::before { content: "✓"; position: absolute; left: 0; top: 0; 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: 12px; margin-top: 16px; }
.price { font-size: 28px; font-weight: 700; color: var(--purple-700); }
.price.full-price { text-decoration: line-through; color: var(--muted); }
.price.discounted { color: var(--rose-600); }
.add-form { display: flex; align-items: center; gap: 8px; }
.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: var(--pink-500); color: white; box-shadow: 0 6px 14px rgba(255,92,138,.35); transform: translateY(0); transition: transform .1s ease, box-shadow .2s ease, background .2s ease; }
.btn.primary:hover { background: var(--rose-600); box-shadow: 0 8px 18px rgba(255,92,138,.45); transform: translateY(-1px); }
.btn.primary:active { transform: translateY(0); box-shadow: 0 4px 10px rgba(255,92,138,.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-top: 10px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.stars { color: #f6a700; letter-spacing: 2px; }

.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: 1px solid var(--pink-200); border-radius: 12px; overflow: hidden; background: white; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

.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(255, 92, 138, 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; }
.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: 1200; 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; }
}
.marketing h2 { margin-top: 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; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 28px 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .frame { border-radius: 12px; padding-left: 14px; padding-right: 14px; margin: 10px auto 0; }
  .hero h1 { font-size: 30px; }
  .hero .subtitle { font-size: 16px; }
  .add-form { flex-wrap: wrap; gap: 10px; }
  .btn { width: auto; }
}
