/* ===== Doki Doki Store theme ===== */
:root {
  --pink-bg: #ffe3ef;
  --pink-bg-2: #ffd5e8;
  --pink: #ff8fc7;
  --pink-deep: #ff5fa8;
  --wine: #b03a6e;
  --wine-soft: #c96394;
  --cream: #fff7fb;
  --card: #ffffff;
  --ink: #5a3247;
  --shadow: 0 14px 34px rgba(255, 95, 168, 0.18);
  --shadow-sm: 0 6px 16px rgba(255, 95, 168, 0.16);
  --radius: 22px;
  /* per-girl accents */
  --monika: #6fae5a;
  --sayori: #f4796b;
  --natsuki: #ff7fb6;
  --yuri: #7c6bb0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;        /* contain the off-canvas cart drawer (no mobile dead space) */
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, #fff0f7 0, transparent 40%),
    radial-gradient(circle at 88% 0%, #ffe7f2 0, transparent 42%),
    var(--pink-bg);
  background-attachment: fixed;
}
h1, h2, h3, .logo { font-family: "Fredoka", "Nunito", sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.btn {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-primary:disabled { background: #e9c4d6; cursor: not-allowed; box-shadow: none; transform: none; }
.btn-ghost {
  background: #fff;
  color: var(--wine);
  border: 2px solid var(--pink);
}
.btn-lg { padding: 15px 32px; font-size: 1.15rem; }
.btn-block { width: 100%; }

/* ===== Announcement ===== */
.announce {
  background: linear-gradient(90deg, var(--pink-deep), var(--pink));
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .3px;
  padding: 9px 12px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 6vw;
  background: rgba(255, 247, 251, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #ffd0e6;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--wine);
}
.logo-heart { font-size: 1.1rem; }
.logo-sub {
  font-size: .8rem;
  background: var(--pink);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 4px;
  transform: translateY(-4px);
}
.nav { margin-left: auto; display: flex; gap: 26px; font-weight: 700; }
.nav a { color: var(--wine-soft); position: relative; }
.nav a:hover { color: var(--pink-deep); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 3px; width: 0;
  background: var(--pink); border-radius: 3px; transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.cart-btn {
  border: 2px solid var(--pink);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  display: flex; align-items: center; gap: 6px;
}
.cart-count {
  background: var(--pink-deep);
  color: #fff;
  font-family: "Nunito"; font-weight: 800;
  font-size: .8rem;
  min-width: 22px; height: 22px;
  border-radius: 999px;
  display: grid; place-items: center;
  padding: 0 4px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 56px 6vw 40px;
  overflow: hidden;
}
.hero-eyebrow { color: var(--pink-deep); font-weight: 800; margin: 0 0 6px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin: 0 0 14px; line-height: 1.05; color: var(--wine); }
.hero h1 span { color: var(--pink-deep); }
.hero-lead { font-size: 1.15rem; max-width: 30rem; margin: 0 0 24px; }
.hero-lead strong { color: var(--pink-deep); }
.hero-figs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 6px;
}
.hf { filter: drop-shadow(0 12px 16px rgba(124, 60, 100, .22)); }
.hf1 { transform: translateY(14px) rotate(-4deg); }
.hf2 { transform: translateY(-10px) rotate(2deg); z-index: 2; }
.hf3 { transform: translateY(6px) rotate(4deg); }
.hf4 { transform: translateY(-4px) rotate(-2deg); }
.hero-sparkle { position: absolute; color: var(--pink); opacity: .6; font-size: 2rem; animation: float 5s ease-in-out infinite; }
.hero-sparkle.s1 { top: 18%; left: 46%; }
.hero-sparkle.s2 { top: 62%; left: 8%; font-size: 1.4rem; animation-delay: 1s; }
.hero-sparkle.s3 { top: 12%; right: 4%; color: var(--pink-deep); animation-delay: 2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== Section shells ===== */
.section-title { text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--wine); margin: 0 0 6px; }
.section-sub { text-align: center; color: var(--wine-soft); margin: 0 0 30px; }
.shop, .meet, .about { padding: 50px 6vw; }

/* ===== Product grid ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px; margin: 0 auto;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid #ffe1ee;
  border-top: 6px solid var(--accent, var(--pink));
  padding: 14px 14px 18px;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px rgba(255,95,168,.26); }
.card-imgwrap {
  position: relative;
  background: linear-gradient(180deg, #fff, #fff2f8);
  border-radius: 16px;
  padding: 10px;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  overflow: hidden;
}
.card-imgwrap img { max-height: 100%; width: auto; object-fit: contain; transition: transform .25s ease; }
.card-imgwrap:hover img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--accent, var(--pink)); color: #fff;
  font-family: "Fredoka"; font-weight: 600; font-size: .72rem;
  padding: 3px 10px; border-radius: 999px;
}
.card-gallery-hint {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(255,255,255,.9); color: var(--wine);
  font-size: .72rem; font-weight: 800;
  padding: 3px 9px; border-radius: 999px;
}
.card-save { position: absolute; top: 8px; right: 8px; background: var(--wine); color: #fff; font-family: "Fredoka"; font-weight: 600; font-size: .72rem; padding: 3px 9px; border-radius: 999px; }
.card h3 { margin: 14px 4px 2px; font-size: 1.3rem; color: var(--wine); }
.card h3 .card-link { color: inherit; }
.card h3 .card-link:hover { color: var(--accent); }
.card .tag { margin: 0 4px; color: var(--wine-soft); font-size: .85rem; min-height: 1.1em; }
.card-price { margin: 8px 4px 12px; font-family: "Fredoka"; font-weight: 700; display: flex; align-items: baseline; gap: 8px; }
.card-price .now { font-size: 1.5rem; color: var(--accent, var(--pink-deep)); }
.card-price .was { font-size: 1rem; color: var(--wine-soft); text-decoration: line-through; font-weight: 600; }
.card-actions { margin-top: auto; display: flex; gap: 8px; }
.card-actions .btn { flex: 1; padding: 11px 10px; font-size: .95rem; }
.card .btn-primary { background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, #000 14%)); }
.card .btn-ghost { border-color: var(--accent); color: var(--accent); }

/* ===== Meet the girls ===== */
.meet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.meet-card {
  background: var(--cream);
  border-radius: var(--radius);
  border: 3px solid #ffe1ee;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.meet-card { transition: transform .15s ease, box-shadow .15s ease; }
a.meet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.meet-card .swatch { width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 10px; box-shadow: var(--shadow-sm); }
.meet-card h3 { margin: 0 0 6px; color: var(--wine); }
.meet-card p { margin: 0; font-size: .92rem; }

/* ===== Trust ===== */
.trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1100px; margin: 0 auto; padding: 20px 6vw 10px;
}
.trust-item { background: #fff; border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow-sm); border: 2px solid #ffe1ee; }
.trust-item span { font-size: 1.8rem; }
.trust-item h3 { margin: 8px 0 4px; color: var(--wine); }
.trust-item p { margin: 0; font-size: .9rem; color: var(--wine-soft); }

/* ===== About ===== */
.about { max-width: 760px; margin: 0 auto; text-align: center; }
.about p { font-size: 1.1rem; line-height: 1.7; }

/* ===== Footer ===== */
.site-footer { background: #ffd9ea; margin-top: 40px; padding: 36px 6vw; text-align: center; }
.footer-logo { justify-content: center; font-size: 1.5rem; }
.footer-nav { display: flex; gap: 20px; justify-content: center; margin: 14px 0; font-weight: 700; color: var(--wine-soft); }
.footer-fine { color: var(--wine); margin: 8px 0 4px; font-weight: 600; }
.footer-disclaimer { color: var(--wine-soft); font-size: .8rem; margin: 0; }

/* ===== Cart drawer ===== */
.overlay {
  position: fixed; inset: 0; background: rgba(90, 50, 71, .4);
  opacity: 0; visibility: hidden; transition: opacity .2s ease; z-index: 50;
}
.overlay.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(400px, 90vw);
  background: var(--cream); z-index: 60;
  transform: translateX(100%); transition: transform .28s ease;
  display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(255,95,168,.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 2px solid #ffd0e6; }
.cart-head h3 { margin: 0; color: var(--wine); }
.icon-close { border: none; background: #ffe1ee; color: var(--wine); width: 34px; height: 34px; border-radius: 50%; font-size: 1rem; cursor: pointer; }
.icon-close:hover { background: var(--pink); color: #fff; }
.cart-items { flex: 1; overflow-y: auto; padding: 14px 20px; }
.cart-row { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px dashed #ffd0e6; }
.cart-row img { width: 56px; height: 56px; object-fit: contain; background: #fff; border-radius: 12px; padding: 4px; }
.cart-row .cr-info { flex: 1; }
.cart-row .cr-name { font-weight: 800; color: var(--wine); }
.cart-row .cr-price { color: var(--wine-soft); font-size: .85rem; }
.qty { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.qty button { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--pink); background: #fff; color: var(--pink-deep); font-weight: 800; cursor: pointer; line-height: 1; }
.qty span { font-weight: 800; min-width: 18px; text-align: center; }
.cr-remove { border: none; background: none; color: var(--wine-soft); cursor: pointer; font-size: .8rem; text-decoration: underline; }
.cart-foot { padding: 18px 20px 22px; border-top: 2px solid #ffd0e6; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; font-size: 1.1rem; }
.cart-total strong { font-family: "Fredoka"; font-size: 1.5rem; color: var(--pink-deep); }
.cart-empty-msg { text-align: center; color: var(--wine-soft); font-size: .9rem; margin: 10px 0 0; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(90, 50, 71, .82);
  display: none; align-items: center; justify-content: center; gap: 10px;
}
.lightbox.open { display: flex; }
.lb-stage { margin: 0; text-align: center; max-width: 80vw; }
.lb-stage img { max-height: 80vh; max-width: 80vw; border-radius: 16px; background: #fff; padding: 10px; }
.lb-stage figcaption { color: #fff; font-family: "Fredoka"; margin-top: 12px; font-size: 1.1rem; }
.lb-close { position: absolute; top: 20px; right: 24px; background: #fff; }
.lb-nav { background: rgba(255,255,255,.92); color: var(--wine); border: none; width: 52px; height: 52px; border-radius: 50%; font-size: 2rem; line-height: 1; cursor: pointer; }
.lb-nav:hover { background: var(--pink); color: #fff; }

/* ===== Checkout modal ===== */
.checkout-modal {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(90, 50, 71, .5);
  display: none; align-items: flex-start; justify-content: center;
  padding: 4vh 16px; overflow-y: auto;
}
.checkout-modal.open { display: flex; }
.checkout-box {
  background: var(--cream); border-radius: var(--radius);
  width: min(560px, 100%); padding: 22px;
  position: relative; box-shadow: var(--shadow);
}
.checkout-box .icon-close { position: absolute; top: 16px; right: 16px; }
.checkout-title { margin: 0 0 16px; color: var(--wine); }

/* ===== Confirmation ===== */
.confirm {
  position: fixed; inset: 0; z-index: 90; background: rgba(90,50,71,.5);
  display: none; align-items: center; justify-content: center; padding: 16px;
}
.confirm.open { display: flex; }
.confirm-box { background: #fff; border-radius: var(--radius); padding: 34px; text-align: center; max-width: 360px; box-shadow: var(--shadow); }
.confirm-heart { font-size: 3rem; animation: float 2.5s ease-in-out infinite; }
.confirm-box h3 { color: var(--wine); margin: 8px 0; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .meet-grid { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr; }
  .meet-grid { grid-template-columns: 1fr; }
  .card-actions { flex-direction: column; }
}

/* ============================================================
   PRODUCT PAGE (product.html)
   ============================================================ */
.crumbs { max-width: 1100px; margin: 18px auto 0; padding: 0 6vw; color: var(--wine-soft); font-size: .85rem; }
.crumbs a { color: var(--wine-soft); } .crumbs a:hover { color: var(--pink-deep); }
.crumbs strong { color: var(--wine); }

.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 16px auto 0; padding: 20px 6vw; align-items: start; }

/* Gallery */
.gallery { position: sticky; top: 84px; }
.gallery-main {
  position: relative; background: linear-gradient(180deg, #fff, #fff2f8);
  border-radius: var(--radius); border: 3px solid #ffe1ee;
  aspect-ratio: 1/1; display: grid; place-items: center; cursor: zoom-in; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-main img { max-height: 90%; width: auto; object-fit: contain; }
.gallery-main .card-badge, .gallery-main .card-save { font-size: .8rem; }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 10px; }
.thumb { border: 2px solid #ffe1ee; background: #fff; border-radius: 12px; padding: 4px; cursor: pointer; aspect-ratio: 1/1; }
.thumb.active { border-color: var(--accent); }
.thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Buy box */
.buybox { padding-top: 4px; }
.pills { display: flex; gap: 8px; margin-bottom: 12px; }
.pill { background: #fff0f7; color: var(--wine); font-weight: 800; font-size: .72rem; padding: 4px 12px; border-radius: 999px; border: 1px solid #ffd0e6; }
.pill-hot { background: #fff; }
.pdp-title { font-size: clamp(1.6rem, 3.2vw, 2.3rem); color: var(--wine); margin: 0 0 4px; line-height: 1.12; }
.pdp-jp { color: var(--wine-soft); margin: 0 0 12px; font-weight: 700; }
.rating-line { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.rstars { color: #ffb13d; letter-spacing: 1px; }
.rstars.small { font-size: .85rem; }
.muted { color: var(--wine-soft); } .small { font-size: .82rem; } .dot { color: #e6b9cd; }
.price-block { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-now { font-family: "Fredoka"; font-weight: 700; font-size: 2.4rem; color: var(--pink-deep); }
.price-was { font-size: 1.2rem; color: var(--wine-soft); text-decoration: line-through; }
.price-save { background: var(--wine); color: #fff; font-weight: 800; font-size: .8rem; padding: 4px 10px; border-radius: 999px; }
.ship-line { color: var(--monika); font-weight: 700; margin: 8px 0 16px; color: #2c8a4a; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 18px; }
.trust-row div { background: #fff; border: 2px solid #ffe1ee; border-radius: 14px; padding: 10px 6px; text-align: center; font-size: .78rem; font-weight: 700; color: var(--wine); }
.trust-row span { display: block; font-size: 1.2rem; margin-bottom: 2px; }
.buy-actions .btn { margin-bottom: 10px; }
.stock-line { display: flex; align-items: center; gap: 8px; color: var(--wine); font-weight: 800; margin-bottom: 10px; }
.stock-dot { width: 10px; height: 10px; border-radius: 50%; background: #ff5d5d; box-shadow: 0 0 0 4px rgba(255,93,93,.18); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(255,93,93,0); } }
.secure-note { text-align: center; color: var(--wine-soft); font-size: .82rem; margin: 4px 0 14px; }
.paywall { border-top: 1px dashed #ffd0e6; padding-top: 14px; }
.paywall-label { color: var(--pink-deep); font-weight: 800; font-size: .72rem; letter-spacing: .5px; }
.paywall-icons { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0; }
.paywall-icons span { background: #fff; border: 1px solid #ead3df; border-radius: 8px; padding: 5px 9px; font-size: .72rem; font-weight: 800; color: #6a4a5a; }

/* Bands */
.band { max-width: 1000px; margin: 0 auto; padding: 46px 6vw; text-align: center; }
.band-tint { background: #fff3f9; max-width: none; }
.band-tint > * { max-width: 1000px; margin-left: auto; margin-right: auto; }
.band .eyebrow, .eyebrow { color: var(--pink-deep); font-weight: 800; letter-spacing: .5px; text-transform: uppercase; font-size: .8rem; margin: 0 0 6px; }
.band h2 { color: var(--wine); font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin: 0 0 18px; }
.band h3 { color: var(--wine); }
.center { text-align: center; }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat { background: #fff; border: 2px solid #ffe1ee; border-radius: var(--radius); padding: 22px 18px; text-align: center; box-shadow: var(--shadow-sm); }
.feat-ico { font-size: 1.8rem; }
.feat h3 { margin: 8px 0 6px; font-size: 1.1rem; }
.feat p { margin: 0; color: var(--wine-soft); font-size: .9rem; }

.cheaper { background: #fff; border: 2px solid #ffe1ee; border-radius: var(--radius); padding: 28px; text-align: left; box-shadow: var(--shadow-sm); }
.cheaper p { line-height: 1.6; }

.size-row { display: flex; align-items: flex-end; justify-content: center; gap: 34px; margin: 24px 0 10px; }
.size-item { text-align: center; }
.size-bar { width: 46px; background: #ffd0e6; border-radius: 8px 8px 0 0; margin: 0 auto 8px; }
.size-item span { font-size: .82rem; color: var(--wine-soft); font-weight: 700; }

.rev-summary { display: flex; justify-content: center; margin-bottom: 10px; }
.rev-score { text-align: center; }
.rev-score strong { font-family: "Fredoka"; font-size: 2.6rem; color: var(--pink-deep); display: block; line-height: 1; }
.placeholder-note { background: #fff6da; border: 1px solid #f0d98a; color: #8a6d1a; font-weight: 700; font-size: .82rem; border-radius: 12px; padding: 8px 14px; display: inline-block; margin-bottom: 16px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: left; }
.rev-card { background: #fff; border: 2px solid #ffe1ee; border-radius: 18px; padding: 18px; box-shadow: var(--shadow-sm); }
.rev-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rev-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--pink); color: #fff; display: grid; place-items: center; font-weight: 800; }
.rev-name { font-weight: 800; color: var(--wine); }
.rev-text { color: var(--ink); font-size: .92rem; line-height: 1.5; }

.prose { max-width: 680px; margin: 0 auto; text-align: left; }
.prose p { line-height: 1.7; }

.faq { max-width: 760px; margin: 0 auto; text-align: left; }
.faq-item { background: #fff; border: 2px solid #ffe1ee; border-radius: 16px; margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; background: none; border: none; padding: 16px 18px; font-family: "Fredoka"; font-weight: 600; font-size: 1rem; color: var(--wine); cursor: pointer; text-align: left; }
.faq-plus { color: var(--pink-deep); font-size: 1.3rem; transition: transform .2s ease; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { margin: 0; padding: 0 18px 16px; color: var(--wine-soft); line-height: 1.6; }

.xsell { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.xcard { background: #fff; border: 3px solid #ffe1ee; border-top: 5px solid var(--accent); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease; }
.xcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.xcard img { aspect-ratio: 1/1; object-fit: contain; background: #fff2f8; border-radius: 14px; padding: 8px; }
.xcard-name { font-family: "Fredoka"; font-weight: 700; color: var(--wine); margin-top: 8px; }
.xcard-price { color: var(--accent); font-weight: 800; }

.guarantee { text-align: center; padding: 56px 6vw; background: linear-gradient(180deg, #fff3f9, #ffe3ef); position: relative; }
.guarantee .g-spark { color: var(--pink); letter-spacing: 8px; opacity: .6; }
.g-shield { font-size: 2.6rem; }
.guarantee h2 { color: var(--wine); margin: 6px 0; }
.guarantee p { color: var(--wine-soft); max-width: 26rem; margin: 0 auto 18px; }

/* Sticky mobile buy bar */
.buybar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 45; background: rgba(255,247,251,.97); backdrop-filter: blur(8px); border-top: 2px solid #ffd0e6; display: flex; align-items: center; gap: 12px; padding: 9px 14px; padding-bottom: calc(9px + env(safe-area-inset-bottom)); box-shadow: 0 -8px 24px rgba(255,95,168,.18); }
.buybar-img { width: 46px; height: 46px; object-fit: contain; background: #fff; border-radius: 10px; padding: 3px; flex: none; }
.buybar-info { line-height: 1.15; min-width: 0; }
.buybar-name { font-family: "Fredoka"; font-weight: 600; color: var(--wine); font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buybar-price { display: flex; align-items: baseline; gap: 6px; }
.buybar-price .now { font-family: "Fredoka"; font-weight: 700; font-size: 1.25rem; color: var(--pink-deep); }
.buybar-price .was { font-size: .82rem; color: var(--wine-soft); text-decoration: line-through; }
.buybar .btn { margin-left: auto; flex: none; padding: 12px 20px; }

@media (min-width: 721px) { .buybar { display: none !important; } }
@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .xsell { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .pdp { gap: 16px; padding: 14px 5vw; }
  .band { padding: 34px 5vw; }
  .band h2 { margin-bottom: 14px; }
  .pdp-title { font-size: 1.5rem; }
  .price-now { font-size: 2rem; }
  .gallery-main img { max-height: 48vh; }
  main#product { padding-bottom: 84px; } /* room above sticky buy bar */
}
@media (max-width: 520px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feat { padding: 16px 10px; }
  .feat h3 { font-size: 1rem; }
  .trust-row { grid-template-columns: repeat(3, 1fr); }
  .size-row { gap: 14px; }
  .xsell { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .xcard { padding: 8px; }
  .xcard img { padding: 4px; }
  .xcard-name { font-size: .85rem; }
  .announce { font-size: .78rem; padding: 7px 10px; }
  .thumbs { grid-template-columns: repeat(5, 1fr); gap: 6px; }
}
