/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: #231F20;
  background: #ffffff;
  line-height: 1.55;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ===== Theme tokens – bleame.com palette ===== */
:root {
  --bg: #ffffff;
  --bg-alt: #f4f1ff;
  --ink: #231F20;
  --ink-soft: #2e2a3a;
  --muted: #696771;
  --primary: #7069BC;       /* bleame purple */
  --primary-dark: #3D348B;
  --accent: #DF4F79;        /* pink accent */
  --blush: #e3d2fd;
  --blush-deep: #c9b8f0;
  --gold: #c9a961;
  --line: #ece9f7;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(35, 31, 32, 0.08);
}

/* ===== Layout ===== */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Bleame-exact heading variables */
:root {
  --heading-h1-font-size: 36px;
  --heading-h2-font-size: 30px;
  --heading-h3-font-size: 26px;
  --heading-font-weight: 600;
}
@media (min-width: 741px) {
  :root {
    --heading-h1-font-size: 48px;
    --heading-h2-font-size: 38px;
    --heading-h3-font-size: 32px;
  }
}
@media (min-width: 1200px) {
  :root {
    --heading-h1-font-size: 56px;
    --heading-h2-font-size: 48px;
    --heading-h3-font-size: 36px;
  }
}

h1, h2, h3, h4 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: var(--heading-font-weight);
  line-height: 1.15;
  color: #231F20;
  letter-spacing: 0;
}
h1 { font-size: var(--heading-h1-font-size); }
h2, .section-title { font-size: var(--heading-h2-font-size); }
h3 { font-size: var(--heading-h3-font-size); }
.section-title { text-align: center; margin-bottom: 48px; }
em { font-style: normal; color: var(--primary); }

/* ===== 1a. TOP BAR – countdown ===== */
.topbar { width: 100%; }
.topbar-1 {
  background: linear-gradient(
    90deg,
    #DF4F79 0%,
    #7069BC 25%,
    #8a83d0 50%,
    #7069BC 75%,
    #DF4F79 100%
  );
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
  color: #fff;
  min-height: 43px;
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 0.88rem; font-weight: 700;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.flame {
  display: inline-block;
  animation: flicker 1.2s ease-in-out infinite;
}
@keyframes flicker {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.85; }
}
.countdown > div {
  animation: pulse 1s ease-in-out infinite;
}
.countdown > div:nth-child(3) { animation-delay: 0.15s; }
.countdown > div:nth-child(5) { animation-delay: 0.3s; }
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50%      { transform: scale(1.04); box-shadow: 0 0 0 4px rgba(255,255,255,0); }
}
.topbar-1-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.flame { font-size: 1.1rem; }
.topbar-text { letter-spacing: 0.05em; }
.countdown {
  display: flex; align-items: center; gap: 4px;
  margin-left: 12px;
}
.countdown > div {
  background: #fff;
  color: var(--ink);
  border-radius: 6px;
  padding: 3px 8px;
  display: flex; flex-direction: column; align-items: center;
  min-width: 40px;
  line-height: 1;
}
.countdown > div span { font-size: 0.95rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.countdown small { font-size: 0.55rem; margin-top: 2px; opacity: 0.7; font-weight: 600; }
.countdown .colon { color: #fff; font-weight: 800; }

/* ===== 1b. TOP BAR – sale ===== */
.topbar-2 {
  background: var(--blush);
  color: var(--ink);
  text-align: center;
  padding: 10px 0;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.06em;
}

/* ===== 1c. HEADER ===== */
.header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 24px;
}
.nav { display: flex; gap: 22px; align-items: center; }
.nav a { font-size: 0.9rem; font-weight: 600; transition: color 0.2s; }
.nav a:hover { color: var(--primary); }
.nav-pill {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 0.9rem;
}
.nav-pill:hover { background: var(--primary-dark); color: #fff !important; }
.logo {
  font-family: 'Poppins', system-ui, sans-serif; font-size: 1.45rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--ink);
}
.logo span { color: var(--primary); }
.header-actions { display: flex; gap: 10px; }
.icon-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-alt); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: background 0.2s; position: relative;
}
.icon-btn:hover { background: var(--blush); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--primary); color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ===== 2. ANNOUNCEMENT BANNER ===== */
.announcement {
  background: var(--ink);
  color: var(--bg);
  font-size: 0.82rem;
  padding: 9px 0;
  overflow: hidden;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}
.announcement-item {
  letter-spacing: 0.02em;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== 3. PROMOTIONAL HERO – two columns ===== */
.promo-hero {
  padding: 20px 0 30px;
  background: var(--bg);
}
.promo-hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--blush);
  min-height: 360px;
}
.promo-left {
  padding: 36px 40px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 14px;
}
.promo-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--ink-soft);
}
.promo-left h1 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.15;
  margin: 0;
  font-weight: 700;
}
.hero-bullets {
  display: flex; flex-direction: column; gap: 8px;
  margin: 6px 0 16px;
}
.hero-bullets li {
  font-size: 0.98rem; color: var(--ink); font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.bullet-emoji { font-size: 1.1rem; }
.rating-line {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: var(--ink-soft);
}
.stars { color: var(--gold); letter-spacing: 2px; }

.promo-right {
  position: relative;
  background: linear-gradient(135deg, var(--blush-deep) 0%, var(--primary) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  min-height: 360px;
}
.promo-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 2;
}
.promo-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.promo-right:not(.no-image) .promo-placeholder { display: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  text-align: center;
}
.btn-primary {
  background: var(--primary); color: var(--white);
  box-shadow: 0 8px 24px rgba(199, 93, 63, 0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(199, 93, 63, 0.45); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-big { padding: 20px 36px; font-size: 0.98rem; }

/* ===== 4. FEATURE GRID (Bleame-style) ===== */
.features-section { padding: 30px 0 60px; background: var(--white); }
.features-title {
  font-family: 'Poppins', system-ui, sans-serif !important;
  margin-bottom: 32px !important;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  background: var(--bg-alt);
  padding: 32px 20px 26px;
  border-radius: 20px;
  text-align: center;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(112, 105, 188, 0.15); }
.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--primary);
  color: var(--primary);
}
.feature-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.feature-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; }

/* ===== 5. PRODUCT SHOWCASE ===== */
.showcase { padding: 90px 0; }
.showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.showcase-card { transition: transform 0.3s; }
.showcase-card:hover { transform: translateY(-6px); }
.showcase-image {
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.showcase-image img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.showcase-2 { background: linear-gradient(135deg, #ede0c4 0%, #c9a961 100%); }
.showcase-3 { background: linear-gradient(135deg, #d4c9b0 0%, #a89670 100%); }
.showcase-4 { background: linear-gradient(135deg, #f4c8d6 0%, #e89ab4 100%); }
.showcase-card h4 { font-size: 1rem; margin-bottom: 4px; font-family: 'Inter', sans-serif; font-weight: 600; }
.showcase-card p { font-size: 0.92rem; color: var(--ink-soft); }

/* Product disc – shared */
.product-disc {
  width: 65%; aspect-ratio: 1;
  background:
    radial-gradient(circle at 35% 35%, #fff 0%, #f4f1ff 30%, #9a92d8 70%, #5c55a8 100%);
  border-radius: 50%;
  box-shadow:
    inset 0 -20px 40px rgba(120, 50, 30, 0.3),
    inset 0 20px 30px rgba(255, 255, 255, 0.5),
    0 20px 50px rgba(120, 50, 30, 0.2);
  position: relative;
}
.product-disc::after {
  content: '';
  position: absolute;
  top: 12%; left: 12%;
  width: 28%; height: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.6), transparent 70%);
  filter: blur(4px);
}
.disc-2 { background: radial-gradient(circle at 35% 35%, #fff 0%, #faf3e0 30%, #c9a961 70%, #7a6234 100%); }
.disc-3 { background: radial-gradient(circle at 35% 35%, #fff 0%, #ede0c4 30%, #a89670 70%, #7a6234 100%); }
.disc-4 { background: radial-gradient(circle at 35% 35%, #fff 0%, #f7dae4 30%, #e8749a 70%, #DF4F79 100%); }
.disc-large { width: 70%; }

/* ===== 6. REVIEWS ===== */
.reviews { padding: 90px 0; background: var(--bg-alt); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.review .stars { font-size: 1.1rem; margin-bottom: 12px; display: block; letter-spacing: 2px; }
.review h4 { font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 10px; font-size: 1rem; }
.review p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 16px; }
.reviewer { font-size: 0.85rem; color: var(--muted); }
.verified { color: var(--accent); font-weight: 600; margin-left: 8px; }

/* ===== 7. DEMO TABS ===== */
.demo { padding: 90px 0; background: var(--white); }
.demo .section-title { max-width: 760px; margin: 0 auto 40px; }
.demo-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 36px; flex-wrap: wrap;
}
.tab {
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--bg-alt);
  font-weight: 600; font-size: 0.92rem;
  transition: all 0.2s;
  color: var(--ink-soft);
}
.tab.active { background: var(--ink); color: var(--white); }
.tab:hover { background: var(--blush); }
.tab.active:hover { background: var(--ink); }
.demo-display {
  position: relative;
  max-width: 720px; margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.demo-image {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 28px;
  opacity: 0; transition: opacity 0.4s;
}
.demo-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.demo-image.active { opacity: 1; }
.demo-gradient { position: absolute; inset: 0; }
.demo-bikini { background: linear-gradient(135deg, #e3d2fd 0%, #7069BC 100%); }
.demo-leg { background: linear-gradient(135deg, #dcd1f0 0%, #3D348B 100%); }
.demo-arm { background: linear-gradient(135deg, #e8dff5 0%, #c9a961 100%); }
.demo-back { background: linear-gradient(135deg, #c9c1e0 0%, #DF4F79 100%); }
.demo-image span {
  position: relative; z-index: 1;
  color: var(--white); font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.8rem; font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* ===== 8. GALLERY / PURCHASE ===== */
.gallery { padding: 90px 0; }
.gallery-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
.gallery-main {
  position: relative;
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0; z-index: 3;
}
.gallery-main.no-image .hero-circle,
.gallery-main.no-image .product-disc { display: block; }
.gallery-main:not(.no-image) .hero-circle,
.gallery-main:not(.no-image) .product-disc { display: none; }
.hero-circle {
  position: absolute;
  width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f4f1ff, transparent 60%);
}
.gallery-thumbs { display: flex; gap: 10px; margin-top: 16px; }
.g-thumb {
  width: 64px; height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blush), var(--blush-deep));
  border: 2px solid transparent;
  transition: all 0.2s;
}
.g-thumb.active { border-color: var(--primary); }
.g-thumb:hover { transform: translateY(-2px); }
.gallery-content h2 { margin-bottom: 14px; }
.price-block {
  display: flex; align-items: baseline; gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 22px 0;
}
.price-current { font-family: 'Poppins', system-ui, sans-serif; font-size: 2.2rem; font-weight: 700; }
.price-old { font-size: 1.1rem; text-decoration: line-through; color: var(--muted); }
.price-save {
  background: var(--blush); color: var(--primary-dark);
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700;
}
.bundle-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 22px; }
.bundle { cursor: pointer; }
.bundle input { display: none; }
.bundle-card {
  padding: 18px 12px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 14px;
  text-align: center;
  transition: all 0.2s;
  position: relative;
}
.bundle input:checked + .bundle-card {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(199, 93, 63, 0.18);
}
.bundle-title { font-weight: 700; margin-bottom: 4px; font-size: 1rem; }
.bundle-price { font-family: 'Poppins', system-ui, sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.bundle-old { font-size: 0.82rem; text-decoration: line-through; color: var(--muted); }
.bundle-flag {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white);
  font-size: 0.62rem; padding: 4px 10px; border-radius: 999px;
  font-weight: 700; letter-spacing: 0.08em; white-space: nowrap;
}
#buyNow { width: 100%; }
.product-link {
  display: block; text-align: center; margin-top: 16px;
  font-size: 0.92rem; color: var(--ink-soft); text-decoration: underline;
}

/* ===== 9. CLINICAL ===== */
.clinical {
  padding: 100px 0; background: var(--ink); color: var(--bg);
  text-align: center;
}
.clinical-title { color: var(--bg); margin-bottom: 50px; }
.clinical-title .heart { color: var(--primary); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 24px; }
.stat { padding: 20px; }
.big-stat {
  font-family: 'Poppins', system-ui, sans-serif; font-size: 4.5rem; font-weight: 700;
  color: var(--primary); line-height: 1; margin-bottom: 10px;
}
.stat p { color: rgba(251, 247, 241, 0.85); }
.clinical-note { font-size: 0.82rem; color: rgba(251, 247, 241, 0.5); margin-bottom: 30px; }

/* ===== 10. BIG TESTIMONIAL ===== */
.big-testimonial {
  padding: 90px 0; background: var(--bg-alt);
  text-align: center;
}
.big-testimonial .container { max-width: 760px; }
.quote-mark {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 6rem; color: var(--primary);
  line-height: 0.5; margin-bottom: 12px;
}
.big-testimonial blockquote {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.4;
}
.quote-author { font-size: 0.95rem; color: var(--ink-soft); }

/* ===== 11. FAQ ===== */
.faq { padding: 90px 0; }
.faq .container { max-width: 780px; }
.faq-list { margin-bottom: 32px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.4rem; color: var(--primary); transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; color: var(--ink-soft); }
.faq-cta { text-align: center; }

/* ===== 12. TRUST ===== */
.trust { padding: 90px 0; background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.trust-item { padding: 20px; }
.trust-icon { font-size: 2.6rem; margin-bottom: 14px; }
.trust-item h4 { font-size: 1.15rem; margin-bottom: 8px; }
.trust-item p { color: var(--ink-soft); font-size: 0.95rem; }

/* ===== 13. SUBSCRIBE ===== */
.subscribe {
  padding: 90px 0; text-align: center;
  background: var(--bg-alt);
}
.subscribe h2 { margin-bottom: 12px; }
.subscribe p { color: var(--ink-soft); margin-bottom: 28px; }
.subscribe-form {
  display: flex; gap: 10px;
  max-width: 480px; margin: 0 auto;
  flex-wrap: wrap;
}
.subscribe-form input {
  flex: 1; min-width: 200px;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
}
.subscribe-form input:focus { outline: 2px solid var(--primary); }

/* ===== 14–16. FOOTER ===== */
.footer { background: var(--ink); color: var(--bg); padding-top: 70px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .logo-footer { color: var(--bg); margin-bottom: 14px; }
.footer-brand .logo-footer span { color: var(--primary); }
.footer-brand p { color: rgba(251, 247, 241, 0.65); font-size: 0.92rem; max-width: 280px; }
.footer h5 {
  font-family: 'Inter', sans-serif; font-weight: 600;
  margin-bottom: 16px; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bg);
}
.footer ul li { margin-bottom: 8px; }
.footer a { color: rgba(251, 247, 241, 0.65); font-size: 0.92rem; transition: color 0.2s; }
.footer a:hover { color: var(--primary); }
.footer-contact p { color: rgba(251, 247, 241, 0.65); font-size: 0.92rem; margin-bottom: 14px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 700;
  color: var(--bg);
  transition: background 0.2s;
}
.socials a:hover { background: var(--primary); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.safety-notice {
  font-size: 0.78rem; color: rgba(251, 247, 241, 0.5);
  margin-bottom: 14px; text-align: center;
}
.footer-bottom-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.82rem; color: rgba(251, 247, 241, 0.5);
}
.payments { display: flex; gap: 10px; flex-wrap: wrap; }
.payments span {
  background: rgba(255,255,255,0.08);
  padding: 5px 10px; border-radius: 6px;
  font-size: 0.72rem; font-weight: 600;
  color: rgba(251, 247, 241, 0.75);
}

/* ===== PRODUCT PAGE ===== */
.benefit-strip {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
  font-size: 0.92rem;
}
.product-page { padding: 50px 0; background: var(--bg); }
.product-grid {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 64px;
  align-items: start;
  max-width: 1280px; margin: 0 auto;
}
.product-gallery {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: start;
  position: sticky; top: 100px;
}
.product-gallery .pg-main {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
  border-radius: 20px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  order: 2;
}
.pg-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pg-main.no-image .pg-placeholder { display: flex; }
.pg-placeholder { display: none; align-items: center; justify-content: center; width: 100%; height: 100%; }
.pg-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(26, 22, 18, 0.85); color: #fff;
  padding: 8px 14px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 4;
}
.pg-thumbs {
  display: flex; flex-direction: column;
  gap: 10px;
  order: 1;
}
.pg-thumb {
  width: 90px; height: 90px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blush), var(--blush-deep));
  border: 2px solid transparent;
  transition: all 0.2s;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.pg-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.pg-thumb.active { border-color: var(--primary); }
.pg-thumb:hover { transform: translateY(-2px); }

/* ===== PRODUCT INFO – exact bleame.com structure ===== */
.product-info { padding-top: 0; }

/* Rating row */
.product-rating {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Poppins', system-ui, sans-serif;
  color: #231F20;
  min-height: 26px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.sharp-stars { display: flex; gap: 2px; }
.sharp-stars svg {
  width: 18px; height: 18px;
  fill: var(--primary);
}
.rating-text {
  font-size: 16px; line-height: 1;
  display: flex; gap: 5px; align-items: center;
}
.rating-text strong { color: #000; font-weight: 700; }

/* Title – exact bleame h1.heading.h3 specs */
.product-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: var(--heading-h3-font-size);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 10px;
  color: #231F20;
}

/* Eyebrow paragraph */
.product-eyebrow {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  color: #231F20;
  text-transform: none;
}

/* Price block */
.product-price {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.pp-current {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
  order: 2;
}
.pp-old {
  font-size: 1.3rem;
  text-decoration: line-through;
  color: #696771;
  font-weight: 500;
  order: 1;
}
.pp-save {
  background: var(--blush);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  order: 3;
}

/* Divider */
hr.hr-3 {
  border: 0;
  height: 0;
  border-top: 1px solid #d9d9d9;
  width: 100%;
  margin: 0 0 18px;
}

/* Tagline */
.product-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: #231F20;
  margin: 0 0 18px;
}
.product-tagline strong { font-weight: 700; }

/* Iconic bullet list – exact bleame format */
.iconic-list { margin-bottom: 28px; }
.iconic-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.iconic-item span {
  color: #231F20;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.purchase-bundles { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pb-option { cursor: pointer; display: block; }
.pb-option input { display: none; }
.pb-card {
  padding: 18px 20px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 16px;
  transition: all 0.2s;
  position: relative;
}
.pb-option input:checked + .pb-card {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(199, 93, 63, 0.15);
}
.pb-flag {
  position: absolute; top: -10px; left: 18px;
  background: var(--primary); color: #fff;
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em;
}
.pb-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.pb-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 2px; }
.pb-sub { font-size: 0.82rem; color: var(--muted); }
.pb-price-block { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.pb-price { font-family: 'Poppins', system-ui, sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); line-height: 1; }
.pb-old { font-size: 0.82rem; text-decoration: line-through; color: var(--muted); }
.pb-save { font-size: 0.72rem; font-weight: 700; color: var(--accent); }

#buyNow { width: 100%; margin-bottom: 14px; }
.free-gift {
  background: linear-gradient(90deg, var(--blush) 0%, #f4f1ff 100%);
  border: 1.5px dashed var(--primary);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--ink);
  text-align: center;
  margin-bottom: 18px;
}
.free-gift strong { color: var(--primary-dark); }
.delivery-info { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 24px; }
.delivery-info p { margin-bottom: 4px; }

.quick-faq { margin-top: 12px; border-top: 1px solid var(--line); padding-top: 18px; }
.quick-faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.quick-faq summary {
  cursor: pointer; font-weight: 600; font-size: 0.95rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.quick-faq summary::-webkit-details-marker { display: none; }
.quick-faq summary::after { content: '+'; font-size: 1.3rem; color: var(--primary); transition: transform 0.2s; }
.quick-faq details[open] summary::after { transform: rotate(45deg); }
.quick-faq details p { margin-top: 10px; color: var(--ink-soft); font-size: 0.92rem; }

/* Review images */
.review-image {
  aspect-ratio: 16/9;
  border-radius: 14px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--blush), var(--blush-deep));
  overflow: hidden;
}
.review-image img { width: 100%; height: 100%; object-fit: cover; }

/* Comparison */
.compare { padding: 90px 0; background: var(--bg-alt); }
.compare h2 { text-align: center; margin-bottom: 40px; }
.compare-table {
  max-width: 760px; margin: 0 auto;
  background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
}
.compare-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  padding: 18px 24px; align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div { text-align: center; }
.compare-row > div:first-child { text-align: left; font-weight: 600; }
.compare-head { background: var(--ink); color: var(--bg); font-weight: 700; }
.compare-head > div:first-child { color: transparent; }
.compare .us { color: var(--primary); font-weight: 700; font-size: 1.05rem; }
.compare-head .us { color: var(--blush); }

/* Guarantee */
.guarantee { padding: 90px 0; }
.guarantee-card {
  max-width: 720px; margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--blush) 0%, #f4f1ff 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 60px 40px;
}
.guarantee-icon { font-size: 3rem; margin-bottom: 14px; }
.guarantee-card h2 { margin-bottom: 14px; }
.guarantee-card p { color: var(--ink-soft); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* =============================================================
   RESPONSIVE BREAKPOINTS
   - 1024px: tablet
   - 768px:  small tablet / large phone
   - 480px:  phone
============================================================= */

/* ----- TABLET (≤ 1024px) ----- */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .section-title { margin-bottom: 36px; }

  .feature-grid, .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 28px; }
  .promo-left { padding: 50px 36px; }
}

/* ----- TABLET / LARGE PHONE (≤ 768px) ----- */
@media (max-width: 768px) {
  .container { padding: 0 16px; }

  /* Section padding tightened */
  .features-section, .showcase, .reviews, .demo, .gallery,
  .clinical, .big-testimonial, .faq, .trust, .subscribe,
  .compare, .guarantee, .product-page { padding: 56px 0; }
  .promo-hero { padding: 16px 0 24px; }

  /* Top bar – countdown – stacks into 2 rows */
  .topbar-1 { padding: 10px 0; font-size: 0.75rem; }
  .topbar-1-inner {
    flex-direction: column;
    gap: 6px;
    padding: 0 12px;
  }
  .topbar-text { letter-spacing: 0.04em; order: 1; }
  .flame { display: none; }
  .countdown { margin-left: 0; gap: 4px; order: 2; }
  .countdown > div { min-width: 40px; padding: 3px 8px; }
  .countdown > div span { font-size: 0.9rem; }
  .countdown small { font-size: 0.58rem; }

  .topbar-2 { font-size: 0.75rem; padding: 8px 0; letter-spacing: 0.04em; }

  /* Header */
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px; padding: 14px 16px;
  }
  .nav { display: none; }
  .logo { font-size: 1.45rem; }
  .icon-btn { width: 38px; height: 38px; font-size: 0.95rem; }

  /* Announcement – hide extras on tablet */
  .announcement { padding: 8px 0; font-size: 0.72rem; }
  .announcement-inner {
    gap: 20px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .announcement-item:nth-child(n+3) { display: none; }

  /* Hero – two columns become one */
  .promo-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 20px;
  }
  .promo-right {
    order: -1;
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }
  .promo-left {
    padding: 32px 22px 36px;
    gap: 16px;
    text-align: left;
  }
  .promo-left h1 { line-height: 1.18; }
  .promo-eyebrow { font-size: 0.68rem; letter-spacing: 0.1em; }
  .hero-bullets { gap: 8px; margin: 4px 0 12px; }
  .hero-bullets li { font-size: 0.95rem; }
  .promo-left .btn { width: 100%; padding: 16px; font-size: 0.88rem; }
  .rating-line { font-size: 0.82rem; flex-wrap: wrap; }

  /* Features – keep 2 columns on tablet */
  .feature-grid { gap: 12px; }
  .feature-card { padding: 24px 16px; border-radius: 16px; }
  .feature-icon { font-size: 1.9rem; margin-bottom: 10px; }
  .feature-card h3 { font-size: 0.98rem; }
  .feature-card p { font-size: 0.84rem; line-height: 1.45; }

  /* Showcase – keep 2 columns */
  .showcase-grid { gap: 14px; }
  .showcase-image { border-radius: 14px; }
  .showcase-card h4 { font-size: 0.92rem; }
  .showcase-card p { font-size: 0.85rem; }

  /* Reviews */
  .review-grid { grid-template-columns: 1fr; gap: 14px; }
  .review { padding: 22px; }
  .review p { font-size: 0.9rem; }

  /* Demo */
  .demo-tabs {
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    margin: 0 -16px 28px;
    padding: 0 16px;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .demo-tabs::-webkit-scrollbar { display: none; }
  .tab { padding: 9px 18px; font-size: 0.82rem; flex-shrink: 0; }
  .demo-display { aspect-ratio: 4 / 3; border-radius: 18px; }
  .demo-image span { font-size: 1.3rem; }

  /* Gallery / Purchase on index */
  .gallery-inner { grid-template-columns: 1fr; gap: 24px; }
  .gallery-main { border-radius: 20px; }
  .bundle-options { grid-template-columns: 1fr; gap: 10px; }
  .bundle-flag { font-size: 0.58rem; padding: 3px 8px; }
  .price-block { padding: 14px 0; margin: 16px 0; }
  .price-current { font-size: 1.8rem; }
  .g-thumb { width: 56px; height: 56px; border-radius: 10px; }

  /* Clinical */
  .clinical { padding: 70px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .big-stat { font-size: 3.2rem; }
  .stat { padding: 12px; }
  .stat p { font-size: 0.92rem; }

  /* Big testimonial */
  .big-testimonial { padding: 60px 0; }
  .quote-mark { font-size: 4rem; margin-bottom: 6px; }
  .big-testimonial blockquote { font-size: 1.15rem; line-height: 1.45; }
  .quote-author { font-size: 0.88rem; }

  /* FAQ */
  .faq details { padding: 16px 18px; }
  .faq summary { font-size: 0.92rem; padding-right: 12px; gap: 12px; }
  .faq summary::after { font-size: 1.2rem; flex-shrink: 0; }
  .faq details p { font-size: 0.9rem; }
  .faq-cta { margin-top: 24px; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .trust-item { padding: 14px; }
  .trust-icon { font-size: 2.2rem; margin-bottom: 8px; }

  /* Subscribe */
  .subscribe { padding: 60px 0; }
  .subscribe h2 { font-size: 1.6rem; }
  .subscribe p { font-size: 0.92rem; margin-bottom: 22px; }
  .subscribe-form { flex-direction: column; gap: 10px; }
  .subscribe-form input,
  .subscribe-form .btn { width: 100%; padding: 14px 20px; }

  /* Footer */
  .footer { padding-top: 50px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding-bottom: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .payments span { font-size: 0.66rem; padding: 4px 7px; }

  /* Comparison table – smaller text + tighter padding */
  .compare-row { padding: 14px 12px; font-size: 0.85rem; }
  .compare-row > div:first-child { font-size: 0.85rem; }

  /* Product page */
  .benefit-strip { gap: 18px; font-size: 0.82rem; }
  .product-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-gallery {
    grid-template-columns: 1fr;
    position: static;
    gap: 12px;
  }
  .product-gallery .pg-main { order: 1; }
  .pg-thumbs {
    flex-direction: row;
    order: 2;
    flex-wrap: wrap;
  }
  .pg-thumb { width: 64px; height: 64px; border-radius: 10px; }
  .pg-badge { font-size: 0.72rem; padding: 6px 12px; bottom: 12px; left: 12px; }
  .product-info { padding-top: 0; }
  .product-title { font-size: var(--heading-h3-font-size); }
  .product-eyebrow { font-size: 14px; margin-bottom: 14px; }
  .product-rating { font-size: 0.9rem; gap: 6px; }
  .rating-text { font-size: 14px; }
  .sharp-stars svg { width: 16px; height: 16px; }
  .product-tagline { font-size: 1rem; margin-bottom: 16px; }
  .pp-current { font-size: 1.9rem; }
  .pp-old { font-size: 1.15rem; }
  .pp-save { padding: 6px 12px; font-size: 0.72rem; }
  .iconic-item span { font-size: 15px; }
  .pb-card { padding: 16px; }
  .pb-flag { font-size: 0.6rem; padding: 3px 10px; left: 14px; }
  .pb-title { font-size: 0.98rem; }
  .pb-sub { font-size: 0.78rem; }
  .pb-price { font-size: 1.2rem; }
  .pb-old { font-size: 0.78rem; }
  .delivery-info { font-size: 0.82rem; }
  .guarantee-card { padding: 40px 24px; border-radius: 20px; }
  .guarantee-icon { font-size: 2.4rem; }

  /* Buttons */
  .btn-big { padding: 16px 24px; font-size: 0.88rem; letter-spacing: 0.06em; }
}

/* ----- PHONE (≤ 480px) ----- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Top bar */
  .topbar-1 { padding: 8px 0; }
  .topbar-1-inner { gap: 5px; }
  .topbar-text { font-size: 0.68rem; }
  .countdown > div { min-width: 36px; padding: 2px 6px; }
  .countdown > div span { font-size: 0.82rem; }
  .countdown small { font-size: 0.55rem; }
  .countdown .colon { font-size: 0.85rem; }
  .topbar-2 { font-size: 0.68rem; padding: 7px 0; }

  /* Header */
  .header-inner { padding: 12px 14px; gap: 8px; }
  .logo { font-size: 1.3rem; }
  .icon-btn { width: 34px; height: 34px; font-size: 0.9rem; }

  /* Announcement */
  .announcement-inner { font-size: 0.68rem; gap: 14px; }
  .announcement-item:nth-child(n+2) { display: none; }

  /* Sections */
  .features-section, .showcase, .reviews, .demo, .gallery,
  .clinical, .big-testimonial, .faq, .trust, .subscribe,
  .compare, .guarantee, .product-page { padding: 44px 0; }
  .section-title { margin-bottom: 26px; }

  /* Hero */
  .promo-hero { padding: 12px 0 18px; }
  .promo-hero-inner { border-radius: 16px; }
  .promo-right { min-height: 260px; aspect-ratio: 5 / 4; }
  .promo-left { padding: 26px 18px 30px; gap: 12px; }
  .promo-left h1 { line-height: 1.18; }
  .promo-eyebrow { font-size: 0.64rem; }
  .hero-bullets li { font-size: 0.9rem; }

  /* Features & showcase – single column on phone */
  .feature-grid { grid-template-columns: 1fr; gap: 10px; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .showcase-card h4 { font-size: 0.85rem; }
  .showcase-card p { font-size: 0.78rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  /* Comparison: smaller text */
  .compare-row {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    padding: 10px 8px;
    font-size: 0.72rem;
    gap: 2px;
  }
  .compare-row > div:first-child { font-size: 0.76rem; }
  .compare .us { font-size: 0.82rem; }
  .compare-table { border-radius: 14px; }

  /* Stats */
  .big-stat { font-size: 2.8rem; }

  /* Reviews */
  .review { padding: 18px; }
  .review p { font-size: 0.88rem; }
  .review h4 { font-size: 0.95rem; }

  /* FAQ */
  .faq details { padding: 14px 16px; }
  .faq summary { font-size: 0.88rem; }

  /* Big testimonial */
  .big-testimonial blockquote { font-size: 1.05rem; }

  /* Buttons */
  .btn { padding: 14px 22px; font-size: 0.82rem; }
  .btn-big { padding: 15px; font-size: 0.82rem; }

  /* Footer */
  .footer-grid { gap: 24px; }
  .footer h5 { margin-bottom: 10px; }
  .payments { gap: 6px; }
  .payments span { font-size: 0.62rem; padding: 3px 6px; }
}

/* ============================================================
   LT-SPECIFIC ENHANCEMENTS – payments, delivery, GDPR, sticky
   ============================================================ */

/* ---- Live viewers pill ---- */
.live-viewers {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(35, 31, 32, 0.12);
  z-index: 998;
  animation: slideInLeft 0.6s ease-out 2s both;
}
.live-viewers strong { color: var(--primary); font-weight: 700; }
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ---- Section subtitle ---- */
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-top: -32px;
  margin-bottom: 48px;
  font-size: 1rem;
}

/* ---- Delivery section ---- */
.delivery-section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.delivery-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(112, 105, 188, 0.15);
  border-color: var(--primary);
}
.delivery-featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, var(--blush) 100%);
}
.delivery-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.delivery-logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.delivery-omniva { color: #ff6600; }
.delivery-lp { color: #005baa; }
.delivery-dpd { color: #dc0032; }
.delivery-free { color: var(--primary); }
.delivery-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 12px;
}
.delivery-time { font-size: 0.9rem; color: var(--muted); }
.delivery-price {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}
.delivery-free-price {
  color: var(--primary);
  font-size: 1.2rem;
}
.delivery-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ---- Payments section ---- */
.payments-section {
  padding: 70px 0 90px;
  background: #fff;
}
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.payment-method {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.88rem;
}
.payment-method:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ---- Sticky mobile CTA ---- */
.sticky-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 999;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-buy.visible { transform: translateY(0); }
.sticky-buy-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sticky-buy-title {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sticky-buy-price {
  font-size: 0.82rem;
  color: var(--muted);
}
.sticky-buy-price strong { color: var(--primary); font-weight: 700; }
.sticky-buy-btn {
  padding: 12px 22px !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- GDPR Cookie consent ---- */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 440px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 20px 60px rgba(35, 31, 32, 0.25);
  z-index: 1000;
  border: 1px solid var(--line);
  display: none;
  animation: slideInBottom 0.5s ease-out;
}
.cookie-consent.visible { display: block; }
@keyframes slideInBottom {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-inner strong {
  font-size: 1rem;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}
.cookie-inner p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.cookie-inner a { color: var(--primary); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.cookie-actions .btn {
  padding: 10px 18px;
  font-size: 0.82rem;
}
.cookie-reject {
  background: #fff;
  color: var(--muted) !important;
  border: 1.5px solid var(--line);
}
.cookie-reject:hover { border-color: var(--primary); color: var(--primary) !important; }

/* ---- Purchase notification (desktop only) ---- */
.purchase-notify {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px 14px 14px;
  box-shadow: 0 15px 40px rgba(35, 31, 32, 0.15);
  z-index: 997;
  display: none;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  border: 1px solid var(--line);
}
.purchase-notify.visible {
  display: flex;
  animation: slideInLeft 0.5s ease-out;
}
@media (max-width: 900px) {
  .purchase-notify,
  .purchase-notify.visible { display: none !important; }
}
.purchase-notify-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.purchase-notify-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.purchase-notify-text strong {
  font-size: 0.88rem;
  color: var(--ink);
}
.purchase-notify-text span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---- Footer company details ---- */
.footer-company {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
.footer-company strong { color: rgba(255, 255, 255, 0.85); }

/* ---- Tablet ---- */
@media (max-width: 900px) {
  .delivery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .live-viewers { font-size: 0.78rem; padding: 8px 14px; bottom: 90px; }
  .purchase-notify { bottom: 90px; max-width: 280px; }
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-actions .btn { width: 100%; }
  .sticky-buy { display: flex; }
  body { padding-bottom: 80px; }
}

/* ---- Mobile ---- */
@media (max-width: 600px) {
  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-card { padding: 18px; }
  .payments-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .payment-method { font-size: 0.82rem; padding: 14px 8px; }
  .section-sub { font-size: 0.9rem; margin-top: -22px; margin-bottom: 32px; }
  .live-viewers {
    left: 10px;
    right: 10px;
    justify-content: center;
    max-width: none;
  }
  .purchase-notify { left: 10px; right: 10px; max-width: none; }
}
