/* Blushberry Beauty & Personal Care — design system
   Palette from the brand logo: blush #E97777 · berry red #AE141E on porcelain
   Type: Fraunces (display) · Karla (body) · IBM Plex Mono (lab tags) */

:root {
  --bg: #FDF6F4;
  --ink: #45161A;
  --ink-soft: rgba(69, 22, 26, 0.68);
  --berry: #AE141E;
  --berry-dark: #8C1018;
  --blush: #E97777;
  --blush-soft: #FBE7E4;
  --lab: #2F7D6D;
  --line: rgba(69, 22, 26, 0.14);
  --card: #FFFFFF;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(174, 20, 30, 0.09);
  --display: "Fraunces", Georgia, serif;
  --body: "Karla", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

/* Custom brand pointer — a little blushberry.
   PNG cursors for cross-browser support; falls back to system cursors. */
body {
  cursor: url("../img/cursor.png") 1 1, auto;
}
a, button, [role="button"], label, select, summary,
input[type="submit"], input[type="checkbox"], input[type="radio"],
.wishlist-btn, .qty button {
  cursor: url("../img/cursor-pointer.png") 1 1, pointer;
}
input[type="text"], input[type="email"], input[type="password"],
input[type="tel"], input[type="number"], input[type="search"], textarea {
  cursor: text;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--berry); }
:focus-visible { outline: 2px solid var(--berry); outline-offset: 3px; border-radius: 4px; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.narrow { max-width: 760px; }
.center-text { text-align: center; }
.muted { color: var(--ink-soft); font-size: 0.92rem; }
.mono { font-family: var(--mono); letter-spacing: 0.02em; }
.good { color: var(--lab); }
.pad-top { margin-top: 1.6rem; }

h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; }
h1 em, h2 em { font-style: italic; color: var(--berry); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lab);
  margin-bottom: 0.7rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--berry-dark);
  color: #fff;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: url("../img/cursor-pointer.png") 1 1, pointer;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}
.btn:hover { background: var(--berry); border-color: var(--berry); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--blush-soft); color: var(--ink); border-color: var(--ink); }
.btn-small { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-big { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; text-align: center; }
.text-arrow { font-weight: 600; color: var(--berry); }
.text-arrow.center { display: block; text-align: center; margin-top: 0.8rem; }
.text-link { font-weight: 600; }

/* ---------- topbar + header ---------- */
.topbar {
  background: var(--berry-dark);
  color: #FBE7E4;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  font-family: var(--mono);
  letter-spacing: 0.03em;
}
.topbar strong { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 246, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.8rem 0;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-logo { height: 26px; width: auto; }
.footer-logo {
  display: inline-block;
  background: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
}
.footer-logo .brand-logo { height: 22px; }

.main-nav { display: flex; gap: 1.3rem; align-items: center; font-weight: 600; font-size: 0.93rem; }
.main-nav > a, .nav-drop > a { padding: 0.4rem 0; }
.nav-drop { position: relative; }
.drop-panel {
  position: absolute; top: 100%; left: -0.8rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.6rem;
  min-width: 190px;
  display: none;
  flex-direction: column;
}
.nav-drop:hover .drop-panel, .nav-drop:focus-within .drop-panel { display: flex; }
.drop-panel a { padding: 0.45rem 0.8rem; border-radius: 8px; font-weight: 500; }
.drop-panel a:hover { background: var(--blush-soft); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 0.9rem; }
.search-form { display: flex; border: 1px solid var(--line); border-radius: 999px; background: #fff; overflow: hidden; }
.search-form input { border: 0; padding: 0.5rem 0.9rem; font-family: var(--body); font-size: 0.88rem; width: 180px; outline: none; background: transparent; }
.search-form button { border: 0; background: transparent; padding: 0 0.8rem; font-size: 1.1rem; cursor: url("../img/cursor-pointer.png") 1 1, pointer; color: var(--ink-soft); }
.icon-link { position: relative; font-size: 1.25rem; line-height: 1; padding: 0.3rem; }
.icon-link .badge {
  position: absolute; top: -4px; right: -7px;
  background: var(--berry); color: #fff;
  font-size: 0.62rem; font-weight: 700; font-family: var(--mono);
  min-width: 17px; height: 17px;
  display: grid; place-items: center;
  border-radius: 999px;
  padding: 0 3px;
}
.account-link {
  width: 34px; height: 34px;
  background: var(--blush-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase;
}

.menu-toggle { display: none; background: none; border: 0; cursor: url("../img/cursor-pointer.png") 1 1, pointer; padding: 6px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--berry-dark); margin: 5px 0; transition: 0.2s; }

/* ---------- flash ---------- */
.flash-stack { position: fixed; top: 90px; right: 16px; z-index: 100; display: flex; flex-direction: column; gap: 8px; max-width: 340px; }
.flash {
  background: var(--berry-dark); color: #fff;
  padding: 0.7rem 1rem; border-radius: 10px;
  font-size: 0.88rem;
  display: flex; gap: 0.8rem; align-items: start;
  box-shadow: var(--shadow);
  animation: slideIn 0.25s ease;
}
.flash button { background: none; border: 0; color: #fff; font-size: 1rem; cursor: url("../img/cursor-pointer.png") 1 1, pointer; margin-left: auto; }
.flash-success { background: var(--lab); }
.flash-error { background: var(--berry-dark); }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } }

/* ---------- hero ---------- */
.hero { background: linear-gradient(160deg, #FDF9F7 30%, var(--blush-soft) 100%); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: center; padding: 4rem 0 4.5rem; }
.hero-sub { font-size: 1.08rem; color: var(--ink-soft); max-width: 480px; margin: 1.1rem 0 1.6rem; }
.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-cta.center { justify-content: center; margin-top: 1.6rem; }
.hero-proof { list-style: none; display: flex; gap: 2.2rem; margin-top: 2.4rem; }
.hero-proof li { display: flex; flex-direction: column; max-width: 130px; }
.hero-proof strong { font-family: var(--display); font-size: 1.7rem; color: var(--berry); }
.hero-proof span { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.35; }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-bottle {
  width: min(330px, 80%);
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  overflow: hidden;
}
.hero-bottle img { border-radius: 24px; }
.hero-chip {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  animation: floaty 5s ease-in-out infinite;
}
.chip-a { top: 8%; right: 4%; color: #E58A2F; }
.chip-b { bottom: 16%; left: 0; color: #4C6FAE; animation-delay: 1.2s; }
.chip-c { bottom: 2%; right: 12%; color: var(--lab); animation-delay: 2.4s; }
@keyframes floaty { 50% { transform: translateY(-8px); } }

/* ---------- sections ---------- */
.section { padding: 3.6rem 0; }
.section-head { margin-bottom: 1.8rem; }
.section-head p { color: var(--ink-soft); margin-top: 0.3rem; }
.section-head.split { display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap; }

.page-head { background: var(--blush-soft); border-bottom: 1px solid var(--line); padding: 2.6rem 0; }
.page-sub { color: var(--ink-soft); margin-top: 0.6rem; max-width: 560px; }
.center-text .page-sub { margin-inline: auto; }

/* ---------- concern grid ---------- */
.concern-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.concern-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem 1.2rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.concern-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--berry); color: var(--ink); }
.concern-dot { display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--berry); margin-bottom: 0.9rem; }
.concern-card:nth-child(even) .concern-dot { background: var(--lab); }
.concern-card h3 { margin-bottom: 0.25rem; }
.concern-card p { font-size: 0.85rem; color: var(--ink-soft); }
.concern-arrow { position: absolute; top: 1.2rem; right: 1.2rem; color: var(--berry); opacity: 0; transition: opacity 0.2s; }
.concern-card:hover .concern-arrow { opacity: 1; }

/* ---------- product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.p-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.p-card-img { position: relative; background: #FDF9F7; }
.p-card-img img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.p-off {
  position: absolute; top: 10px; left: 10px;
  background: var(--lab); color: #fff;
  font-family: var(--mono); font-size: 0.68rem; font-weight: 600;
  padding: 0.25rem 0.6rem; border-radius: 999px;
}
.wish-btn {
  position: absolute; top: 8px; right: 8px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  font-size: 1rem;
  cursor: url("../img/cursor-pointer.png") 1 1, pointer;
  transition: 0.2s;
  color: var(--ink);
}
.wish-btn:hover { border-color: var(--berry); color: var(--berry); }
.wish-btn.active { background: var(--berry); border-color: var(--berry); color: #fff; }
.p-card-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.lab-tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--tag, var(--berry));
  border: 1px solid currentColor;
  border-left-width: 4px;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: #fff;
}
.lab-tag.big { font-size: 0.78rem; padding: 0.3rem 0.7rem; margin-bottom: 0.7rem; }
.p-card-body h3 { font-family: var(--body); font-weight: 700; font-size: 0.98rem; line-height: 1.35; }
.p-concern { font-size: 0.8rem; color: var(--ink-soft); }
.p-card-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; padding-top: 0.7rem; }
.p-price { font-weight: 700; font-size: 1.02rem; }
.p-price s, .product-price s { color: var(--ink-soft); font-weight: 400; font-size: 0.85em; margin-left: 4px; }

/* ---------- ritual + promise bands ---------- */
.ritual-band { background: var(--berry-dark); color: #FBF6F4; padding: 3.4rem 0; }
.ritual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
.ritual-no { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em; color: #E97777; }
.ritual-step h3 { margin: 0.5rem 0 0.4rem; color: #fff; }
.ritual-step p { color: rgba(251, 246, 244, 0.75); font-size: 0.93rem; }

.promise-band { border-top: 1px solid var(--line); padding: 2.4rem 0; background: #fff; }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.promise-grid h4 { font-family: var(--display); font-size: 1.02rem; margin-bottom: 0.2rem; }
.promise-grid p { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- filters ---------- */
.filter-bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.filter-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.chip {
  font-size: 0.83rem; font-weight: 600;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  transition: 0.15s;
}
.chip:hover { border-color: var(--berry); color: var(--berry); }
.chip.active { background: var(--berry-dark); color: #fff; border-color: var(--ink); }
.sort-form { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; }
select, input, textarea {
  font-family: var(--body); font-size: 0.95rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: 9px;
  padding: 0.6rem 0.8rem; background: #fff;
}
select:focus, input:focus, textarea:focus { outline: 2px solid var(--berry); outline-offset: 1px; }

/* ---------- product page ---------- */
.crumbs { font-size: 0.83rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.crumbs a:hover { color: var(--berry); }
.product-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; }
.product-gallery { position: sticky; top: 100px; align-self: start; }
.product-gallery > img { border-radius: var(--radius); border: 1px solid var(--line); background: #fff; width: 100%; }
.gallery-thumbs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.8rem; }
.gallery-thumb {
  width: 72px; height: 72px; padding: 0; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--line); background: #fff; cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.active { border-color: var(--berry); }
.product-info h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 0.3rem; }
.rating-line { color: #C79A3E; font-weight: 700; margin-top: 0.4rem; }
.rating-line span { color: var(--ink-soft); font-weight: 400; font-size: 0.85rem; }
.product-price { font-size: 1.7rem; font-weight: 700; margin: 0.9rem 0 0.5rem; font-family: var(--display); }
.save-note { font-size: 0.8rem; font-family: var(--mono); color: var(--lab); margin-left: 8px; }
.product-short { color: var(--ink-soft); margin-bottom: 1.4rem; max-width: 480px; }
.buy-row { display: flex; gap: 0.7rem; flex-wrap: wrap; align-items: center; }
.qty-picker { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; background: #fff; overflow: hidden; }
.qty-picker button { border: 0; background: transparent; width: 38px; font-size: 1.1rem; cursor: url("../img/cursor-pointer.png") 1 1, pointer; color: var(--ink); }
.qty-picker button:hover { color: var(--berry); }
.qty-picker input { border: 0; width: 44px; text-align: center; font-weight: 700; padding: 0.6rem 0; -moz-appearance: textfield; }
.qty-picker input::-webkit-inner-spin-button { display: none; }
.wish-inline.active { background: var(--blush-soft); border-color: var(--berry); color: var(--berry); }
.stock-note { font-family: var(--mono); font-size: 0.8rem; color: #C0512F; margin-top: 0.8rem; }
.stock-note.out { color: var(--berry-dark); }
.trust-list { list-style: none; margin: 1.4rem 0; display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.88rem; color: var(--ink-soft); }
.trust-list li::before { content: "✓ "; color: var(--lab); font-weight: 700; }

.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { cursor: url("../img/cursor-pointer.png") 1 1, pointer; font-weight: 700; padding: 0.9rem 0; list-style: none; position: relative; }
.accordion summary::after { content: "+"; position: absolute; right: 4px; font-family: var(--mono); color: var(--berry); }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { padding: 0 0 1rem; color: var(--ink-soft); font-size: 0.93rem; }
.mono-block { font-family: var(--mono); font-size: 0.8rem !important; line-height: 1.7; }
.big-accordion summary { font-size: 1.02rem; }

/* ---------- reviews ---------- */
.reviews-block { margin-top: 3.6rem; }
.rating-avg { font-family: var(--mono); font-size: 0.9rem; color: #C79A3E; margin-left: 0.6rem; }
.reviews-layout { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2rem; margin-top: 1.4rem; }
.review { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.review-head { display: flex; gap: 0.7rem; align-items: baseline; margin-bottom: 0.2rem; }
.stars { color: #C79A3E; letter-spacing: 2px; font-size: 0.85rem; }
.review p:last-child { color: var(--ink-soft); font-size: 0.93rem; }
.related-block { margin-top: 3.6rem; }
.related-block h2 { margin-bottom: 1.4rem; }

/* ---------- cards & forms ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.form-card label { display: flex; flex-direction: column; gap: 0.3rem; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.9rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.form-grid .span2 { grid-column: span 2; }
.check-row { flex-direction: row !important; align-items: center; gap: 0.6rem !important; }
.check-row input { width: auto; }

/* ---------- cart / checkout ---------- */
.cart-layout { display: grid; grid-template-columns: 1.5fr 0.9fr; gap: 2rem; align-items: start; }
.cart-lines { display: flex; flex-direction: column; gap: 1rem; }
.cart-line {
  display: grid;
  grid-template-columns: 84px 1fr auto auto;
  gap: 1rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
}
.cart-line img { width: 84px; border-radius: 10px; background: #FDF9F7; }
.remove-link { font-size: 0.8rem; color: var(--berry-dark); text-decoration: underline; }
.cart-line-total { font-weight: 700; min-width: 74px; text-align: right; }
.cart-summary dl { display: flex; flex-direction: column; gap: 0.45rem; margin: 0.9rem 0; }
.cart-summary dl div, dl div { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.93rem; }
dl .total { border-top: 1px solid var(--line); padding-top: 0.6rem; font-weight: 700; font-size: 1.05rem; }
.ship-nudge { font-size: 0.82rem; font-family: var(--mono); color: var(--lab); background: rgba(47,125,109,0.08); border-radius: 8px; padding: 0.5rem 0.7rem; margin-bottom: 0.9rem; }
.coupon-form { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.coupon-form input { flex: 1; text-transform: uppercase; font-family: var(--mono); font-size: 0.85rem; }
.mini-line { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; padding: 0.3rem 0; }
.pay-options { display: flex; flex-direction: column; gap: 0.7rem; margin: 0.6rem 0 1.4rem; }
.pay-option {
  display: flex !important; flex-direction: row !important;
  gap: 0.8rem !important; align-items: start !important;
  border: 1px solid var(--line); border-radius: 10px; padding: 0.9rem !important;
  cursor: url("../img/cursor-pointer.png") 1 1, pointer; transition: border-color 0.15s;
}
.pay-option:has(input:checked) { border-color: var(--berry); background: var(--blush-soft); }
.pay-option input { width: auto; margin-top: 4px; }
.pay-option span { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.82rem; }

/* ---------- states, misc ---------- */
.empty-state { text-align: center; padding: 3.5rem 1rem; }
.empty-state h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.empty-state p { color: var(--ink-soft); margin-bottom: 1.3rem; }
.empty-state.small { padding: 1.6rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); text-align: left; }
.empty-state.small .btn { margin-top: 0.8rem; }
.success-mark {
  width: 74px; height: 74px; margin: 0 auto 1.2rem;
  background: var(--lab); color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  display: grid; place-items: center;
}
.order-recap { text-align: left; margin: 1.8rem 0; }
.auth-wrap { max-width: 460px; }
.auth-title { font-size: 1.8rem; }
.auth-alt { font-size: 0.88rem; margin-top: 1rem; color: var(--ink-soft); }
.auth-alt a { color: var(--berry); font-weight: 700; }
.form-card h3 { margin-bottom: 1rem; }
.form-card .muted { margin-bottom: 1.2rem; }

.status-pill {
  display: inline-block;
  font-family: var(--mono); font-size: 0.7rem; font-weight: 600;
  padding: 0.25rem 0.7rem; border-radius: 999px;
  background: var(--blush-soft); color: var(--berry-dark);
  white-space: nowrap;
}
.status-shipped, .status-out-for-delivery { background: rgba(76,111,174,0.14); color: #38538A; }
.status-delivered { background: rgba(47,125,109,0.14); color: var(--lab); }
.status-cancelled { background: rgba(61,17,40,0.1); color: var(--ink-soft); }

.track-card { margin-top: 1.6rem; }
.track-head { display: flex; justify-content: space-between; gap: 1rem; align-items: start; flex-wrap: wrap; }
.track-steps { list-style: none; display: flex; justify-content: space-between; margin: 1.8rem 0 1.2rem; position: relative; }
.track-steps::before { content: ""; position: absolute; top: 8px; left: 4%; right: 4%; height: 2px; background: var(--line); }
.track-steps li { position: relative; font-size: 0.72rem; font-family: var(--mono); text-align: center; flex: 1; color: var(--ink-soft); }
.track-steps li span { display: block; width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 2px solid var(--line); margin: 0 auto 0.5rem; position: relative; z-index: 1; }
.track-steps li.done { color: var(--lab); font-weight: 600; }
.track-steps li.done span { background: var(--lab); border-color: var(--lab); }
.track-items { border-top: 1px solid var(--line); padding-top: 0.8rem; }

.table-wrap { overflow-x: auto; padding: 0.4rem 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th { text-align: left; font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); padding: 0.7rem 1rem; border-bottom: 1px solid var(--line); }
td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
tr:last-child td { border-bottom: 0; }
.row-actions { display: flex; gap: 0.8rem; align-items: center; }
.link-danger { background: none; border: 0; color: var(--berry-dark); text-decoration: underline; cursor: url("../img/cursor-pointer.png") 1 1, pointer; font-size: 0.85rem; font-family: var(--body); }

/* ---------- story / about ---------- */
.story .lede { font-size: 1.2rem; font-family: var(--display); line-height: 1.6; margin-bottom: 1.2rem; }
.story p + p { margin-top: 1rem; }
.story h3 { margin: 1.6rem 0 0.4rem; }
.story-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin: 2.2rem 0; }
.story-values div { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; }
.story-values h3 { margin: 0 0 0.3rem; }
.story-values p { font-size: 0.9rem; color: var(--ink-soft); margin: 0 !important; }
.contact-aside p + p { margin-top: 1rem; }
.contact-aside a { color: var(--berry); font-weight: 600; }

/* ---------- admin ---------- */
.admin-section { padding-top: 2rem; }
.admin-nav { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 2rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
.admin-nav a { font-weight: 600; font-size: 0.9rem; padding: 0.45rem 1rem; border-radius: 999px; }
.admin-nav a.active { background: var(--berry-dark); color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin: 1.6rem 0 2.2rem; }
.stat { text-align: center; font-size: 0.8rem; color: var(--ink-soft); }
.stat span { display: block; font-family: var(--display); font-size: 1.6rem; color: var(--ink); }
.admin-two { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; }
.status-form { display: flex; gap: 0.6rem; margin-bottom: 0.8rem; }
.status-form select { flex: 1; }
.msg-list { display: flex; flex-direction: column; gap: 1rem; }
.msg-head { font-size: 0.85rem; margin-bottom: 0.3rem; }
.msg-subject { font-weight: 700; margin-bottom: 0.2rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--berry-dark); color: rgba(251,246,244,0.8); margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.7fr 1.1fr; gap: 2.4rem; padding: 3.4rem 0 2.4rem; }
.footer-grid h4 { color: #fff; font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 0.9rem; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.9rem; }
.footer-grid a:hover { color: #E97777; }
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 300px; }
.footer-contact a { color: #E97777; font-weight: 600; }
.footer-news p { font-size: 0.9rem; margin-bottom: 0.9rem; }
.news-form { display: flex; gap: 0.5rem; }
.news-form input { flex: 1; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: #fff; }
.news-form input::placeholder { color: rgba(251,246,244,0.5); }
.news-form button {
  background: var(--berry); color: #fff; border: 0;
  padding: 0.6rem 1.2rem; border-radius: 9px;
  font-weight: 700; cursor: url("../img/cursor-pointer.png") 1 1, pointer; font-family: var(--body);
}
.news-form button:hover { background: #C93A73; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.2rem 0; font-size: 0.8rem;
}
.pay-note { font-family: var(--mono); font-size: 0.72rem; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .product-grid, .concern-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .search-form input { width: 120px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0 25% 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 1.6rem 2rem;
    gap: 0.4rem;
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    z-index: 55;
    box-shadow: var(--shadow);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.05rem; padding: 0.55rem 0; }
  .drop-panel { position: static; display: flex; border: 0; box-shadow: none; background: transparent; padding: 0 0 0 1rem; }
  .hero-grid, .product-layout, .cart-layout, .reviews-layout, .admin-two { grid-template-columns: 1fr; }
  .hero-grid { padding: 2.6rem 0 3rem; }
  .hero-visual { order: -1; }
  .hero-proof { gap: 1.4rem; flex-wrap: wrap; }
  .search-form { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .ritual-grid, .promise-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span2 { grid-column: span 1; }
  .story-values { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 64px 1fr; }
  .cart-line img { width: 64px; }
  .cart-line .qty-picker, .cart-line-total { grid-column: 2; justify-self: start; text-align: left; }
  .track-steps { flex-direction: column; gap: 0.9rem; }
  .track-steps::before { display: none; }
  .track-steps li { display: flex; align-items: center; gap: 0.7rem; text-align: left; }
  .track-steps li span { margin: 0; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar { font-size: 0.68rem; }
  .brand-logo { height: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.07); color: #fff; }
@media (max-width: 640px) { .wa-float { width: 48px; height: 48px; right: 14px; bottom: 14px; } }

/* ============================================================
   V2 REDESIGN — richer visual language
   ============================================================ */

/* ---------- offers ticker (topbar) ---------- */
.ticker { overflow: hidden; padding: 0; white-space: nowrap; }
.ticker-track {
  display: inline-flex;
  gap: 2.6rem;
  padding: 0.5rem 0;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; gap: 0.45rem; font-size: 0.8rem; letter-spacing: 0.04em; }
.ticker-item strong { color: #FFD9D9; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- glassy sticky header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(253, 246, 244, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

/* ---------- hero v2 ---------- */
.hero-v2 { position: relative; padding: 1rem 0 2rem; }
.hero-v2 .hero-grid { position: relative; z-index: 2; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}
.blob-a { width: 480px; height: 480px; background: #F8CDC6; top: -140px; right: -90px; }
.blob-b { width: 380px; height: 380px; background: #FBE3DE; bottom: -160px; left: -120px; }
.hero-v2 h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); }
.hero-v2 h1 em { color: var(--berry); font-style: italic; }
.btn-lg { padding: 0.95rem 2rem; font-size: 1.02rem; }

.photo-stack { position: relative; height: 480px; }
.photo-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(174, 20, 30, 0.14);
  overflow: hidden;
  width: 240px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, z-index 0s;
}
.photo-card img { width: 100%; display: block; aspect-ratio: 1; object-fit: cover; }
.photo-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: var(--berry);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
}
.pc-1 { top: 6%; left: 50%; transform: translateX(-50%) rotate(-2deg); z-index: 3; width: 270px; }
.pc-2 { top: 34%; left: 2%; transform: rotate(-7deg); z-index: 2; }
.pc-3 { top: 40%; right: 0; transform: rotate(6deg); z-index: 1; }
.photo-card:hover { transform: translateY(-8px) rotate(0deg); z-index: 5; box-shadow: 0 26px 60px rgba(174, 20, 30, 0.22); }
.pc-1:hover { transform: translateX(-50%) translateY(-8px) rotate(0deg); }
@media (max-width: 900px) {
  .photo-stack { height: 350px; }
  .photo-card { width: 180px; }
  .pc-1 { width: 200px; }
}

/* ---------- coupon offer strip (home) ---------- */
.offer-strip { padding: 3.6rem 0; background:
  linear-gradient(180deg, transparent, var(--blush-soft) 22%, var(--blush-soft) 78%, transparent); }
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }
.offer-coupon {
  position: relative;
  background: #fff;
  border: 1.5px dashed var(--blush);
  border-radius: 16px;
  padding: 1.2rem 1.2rem 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-coupon:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer-cut {
  position: absolute;
  top: 50%; left: -9px;
  width: 18px; height: 18px;
  background: var(--blush-soft);
  border: 1.5px dashed var(--blush);
  border-radius: 50%;
  transform: translateY(-50%);
}
.offer-desc { font-size: 0.9rem; min-height: 42px; margin-bottom: 0.8rem; }
.code-chip {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--blush-soft);
  border: 1px solid var(--blush);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font-family: var(--mono);
}
.code-chip .code-text { font-weight: 600; letter-spacing: 0.08em; color: var(--berry); }
.code-chip .copy-hint { font-size: 0.58rem; letter-spacing: 0.12em; color: var(--ink-soft); }
.code-chip.copied { background: #E7F6EC; border-color: #58B27C; }
.code-chip.copied .code-text { color: #2F7D4F; }

/* ---------- product cards v2 ---------- */
.p-card {
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.p-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(174, 20, 30, 0.13); }
.p-card-img { overflow: hidden; display: block; }
.p-card-img img { transition: transform 0.45s ease; }
.p-card:hover .p-card-img img { transform: scale(1.06); }
.p-off {
  background: var(--berry);
  font-family: var(--mono);
  letter-spacing: 0.06em;
}

/* ---------- section heads ---------- */
.section-head.light h2, .section-head.light p { color: #fff; }
.section-head.light { text-align: center; margin-bottom: 2rem; }
.ritual-band .section-head.light p { color: rgba(255, 255, 255, 0.75); }

/* ---------- testimonials ---------- */
.quote-band { padding: 4.2rem 0; }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.quote-card .stars { color: #E8A13C; letter-spacing: 0.15em; margin-bottom: 0.7rem; }
.quote-card blockquote { font-family: var(--display); font-size: 1.05rem; line-height: 1.55; margin-bottom: 1rem; }
.quote-card figcaption { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
}

/* ---------- checkout v2 ---------- */
.checkout-head h1 { margin-bottom: 0.9rem; }
.checkout-steps {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.checkout-steps li { position: relative; color: var(--ink-soft); }
.checkout-steps li:not(:last-child)::after { content: "→"; position: absolute; right: -1.15rem; }
.checkout-steps li.current { color: var(--berry); font-weight: 600; }
.checkout-steps li.done a { color: var(--ink); text-decoration: underline; }

.checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.6rem; align-items: start; }
.checkout-main { display: flex; flex-direction: column; gap: 1.2rem; }
.checkout-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 1.2rem; }
.step-card h3 { display: flex; align-items: center; gap: 0.6rem; }
.step-no {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--berry);
  color: #fff;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.85rem;
}
.gift-note { margin-top: 1.1rem; }
.gift-note summary { font-weight: 600; font-size: 0.92rem; padding: 0.3rem 0; }
.gift-note textarea { width: 100%; margin-top: 0.6rem; }

.mini-items { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.1rem; }
.mini-item { display: grid; grid-template-columns: 46px 1fr auto; gap: 0.7rem; align-items: center; font-size: 0.9rem; }
.mini-item img { width: 46px; height: 46px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
.mini-name { font-weight: 600; line-height: 1.25; }
.save-note {
  background: #E7F6EC;
  color: #2F7D4F;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  margin: 0.4rem 0 0.8rem;
  text-align: center;
}
.secure-note { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: 0.7rem; }

/* ---------- offers panel (cart + checkout) ---------- */
.offers-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}
.offers-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.offers-title { font-weight: 700; }
.offers-applied {
  background: #E7F6EC; color: #2F7D4F;
  font-family: var(--mono); font-size: 0.68rem;
  padding: 0.2rem 0.55rem; border-radius: 999px;
}
.coupon-row { display: flex; gap: 0.5rem; margin-bottom: 0.9rem; }
.coupon-row input[type="text"] {
  flex: 1; text-transform: uppercase;
  font-family: var(--mono); letter-spacing: 0.06em;
}
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; max-height: 320px; overflow: auto; }
.offer-item {
  display: flex; justify-content: space-between; align-items: center; gap: 0.8rem;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
}
.offer-item.is-applied { border-color: #58B27C; background: #F3FBF6; }
.offer-item.is-locked { opacity: 0.62; }
.offer-code {
  display: inline-block;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  background: var(--blush-soft); color: var(--berry);
  border: 1px solid var(--blush);
  padding: 0.14rem 0.5rem; border-radius: 6px;
  margin-bottom: 0.25rem;
}
.offer-item p { font-size: 0.82rem; line-height: 1.35; }
.offer-saves { color: #2F7D4F; font-weight: 600; }
.offer-need { color: var(--ink-soft); font-style: italic; }
.offer-apply {
  background: none;
  border: 1.5px solid var(--berry);
  color: var(--berry);
  font-weight: 700; font-size: 0.82rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.offer-apply:hover { background: var(--berry); color: #fff; }
.offer-tick { color: #2F7D4F; font-weight: 700; font-size: 0.85rem; white-space: nowrap; }

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-side { position: static; }
}

/* ---------- stacked mini form (account/admin password) ---------- */
.stack-form { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.4rem; }
.stack-form label { display: flex; flex-direction: column; gap: 0.3rem; font-weight: 600; font-size: 0.85rem; }

/* ---------- user dashboard ---------- */
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 1.6rem; }
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}
.stat-card strong { display: block; font-family: var(--display); font-size: 1.7rem; color: var(--berry); }
.stat-card span { font-size: 0.82rem; color: var(--ink-soft); }
.dash-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.4rem; align-items: start; }
.dash-side { display: flex; flex-direction: column; gap: 1.2rem; }
.card-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.9rem; }
.dash-wishlist { margin-top: 1.6rem; }
.order-summary { margin-top: 1rem; }
@media (max-width: 900px) { .dash-layout { grid-template-columns: 1fr; } }

/* ---------- product editor (admin) ---------- */
.product-editor { display: flex; flex-direction: column; gap: 1.2rem; }
.discount-pill {
  align-self: end;
  background: var(--blush-soft);
  color: var(--berry);
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.photo-editor { display: grid; grid-template-columns: 180px 1fr; gap: 1.4rem; align-items: start; }
.photo-current img { width: 180px; height: 180px; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); }
.upload-drop {
  display: flex; flex-direction: column; gap: 0.25rem;
  border: 2px dashed var(--blush);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  background: var(--blush-soft);
  margin-bottom: 0.9rem;
}
.upload-drop input[type="file"] { font-size: 0.85rem; }
.upload-drop span { font-size: 0.75rem; color: var(--ink-soft); }
.editor-actions { display: flex; gap: 0.8rem; }
.danger-zone { border-left: 5px solid #8C1018; margin-top: 1.6rem; }
.btn-buynow { flex: 1; }
@media (max-width: 640px) { .photo-editor { grid-template-columns: 1fr; } }
.gallery-manage { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.gallery-item { display: flex; flex-direction: column; gap: 0.35rem; cursor: pointer; }
.gallery-item img { width: 110px; height: 110px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); }
.gallery-item:has(input:checked) img { outline: 3px solid #C0392B; opacity: 0.45; }
.gallery-remove { font-size: 0.78rem; color: var(--ink-soft); display: flex; align-items: center; gap: 0.3rem; }
.gallery-preview { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.9rem; }
.gallery-preview img { width: 90px; height: 90px; object-fit: cover; border-radius: 10px; border: 1px dashed var(--berry); }

/* ---------- serum finder ---------- */
.finder { padding-top: 3rem; }
.finder-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 1.6rem; }
.finder-pill {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.15s ease;
}
.finder-pill:hover { border-color: var(--berry); color: var(--berry); }
.finder-pill.on { background: var(--berry); border-color: var(--berry); color: #fff; }
.finder-results { max-width: 720px; margin: 0 auto; }
.finder-hint { text-align: center; color: var(--ink-soft); }
.finder-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.3rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  animation: finder-pop 0.35s ease;
}
.finder-card img { width: 150px; height: 150px; object-fit: cover; border-radius: 14px; }
.finder-card h3 { margin: 0.4rem 0 0.3rem; }
.finder-actions { margin-top: 0.8rem; }
@keyframes finder-pop { from { opacity: 0; transform: translateY(10px); } }
@media (max-width: 560px) { .finder-card { grid-template-columns: 1fr; text-align: center; } .finder-card img { margin: 0 auto; } }

/* ---------- know your actives ---------- */
.actives-band { background: var(--berry-dark); padding: 4rem 0; }
.actives-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.active-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.2rem 1.3rem 1.4rem;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.active-card:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-4px); color: #fff; }
.active-dose {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  background: var(--tag, var(--blush));
  color: #fff;
  padding: 0.28rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.7rem;
}
.active-card h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.active-for { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; color: #F3B8B8; margin-bottom: 0.5rem; }
.active-what { font-size: 0.86rem; color: rgba(255, 255, 255, 0.82); line-height: 1.45; }
.active-card .concern-arrow { position: absolute; right: 1.1rem; bottom: 0.9rem; color: #F3B8B8; }

/* ---------- card active strip ---------- */
.p-active-strip {
  background: var(--tag, var(--berry));
  color: #fff;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  padding: 0.42rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-active-key {
  background: rgba(255, 255, 255, 0.25);
  padding: 0.08rem 0.4rem;
  border-radius: 4px;
  font-size: 0.58rem;
  font-weight: 700;
}

/* ---------- benefits checklist (product page) ---------- */
.benefit-list { list-style: none; margin: 0.9rem 0 0.4rem; display: grid; gap: 0.4rem; }
.benefit-list li { position: relative; padding-left: 1.6rem; font-size: 0.95rem; }
.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2F7D4F;
  font-weight: 700;
  background: #E7F6EC;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  top: 0.12rem;
}

/* ---------- SERP preview (admin SEO card) ---------- */
.serp-preview {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-family: Arial, sans-serif;
  margin-top: 0.4rem;
}
.serp-url { font-size: 0.78rem; color: #202124; margin-bottom: 0.15rem; }
.serp-title { font-size: 1.12rem; color: #1a0dab; margin-bottom: 0.2rem; line-height: 1.3; }
.serp-desc { font-size: 0.85rem; color: #4d5156; line-height: 1.5; }

/* ---------- payment page ---------- */
.pay-wrap { max-width: 520px; }
.pay-amount { font-family: var(--display); font-size: 1.8rem; color: var(--berry); }
.pay-error { background: #FDECEC; border: 1px solid #E8A5A5; border-radius: 12px; padding: 0.9rem 1.1rem; margin-bottom: 1rem; font-size: 0.9rem; }
.cod-fallback { margin-top: 0.8rem; }
.status-payment-pending { background: #FDF3D7; color: #8a6d1a; }
