/* ================================================================
   BUNNY PAPER – B0 SALES LANDING PAGE
   FULL REDESIGN – Kids Ecommerce + High Conversion + Kawaii
   ================================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  --pink:    #FF4F87;
  --pink-lt: #FFD6E7;
  --pink-bg: #FFF0F6;
  --purple:  #9B6DFF;
  --purple-lt: #E8DCFF;
  --purple-bg: #F6F0FF;
  --blue:    #56B8FF;
  --blue-lt: #C4E8FF;
  --blue-bg: #EEF8FF;
  --yellow:  #FFD85A;
  --yellow-lt: #FFF3C4;
  --mint:    #62D9C3;
  --mint-lt: #C2F2EB;
  --mint-bg: #F0FFFC;
  --peach:   #FFB48A;
  --red:     #FF6B6B;
  --amber:   #FFAA44;

  --bg-cream: #FFF8F3;
  --bg-pink:  #FFF0F6;
  --bg-blue:  #EEF8FF;
  --bg-purple:#F6F0FF;

  --text-dark: #1A1025;
  --text-mid:  #4A3060;
  --text-soft: #7B6890;
  --text-muted:#A89CB8;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(155,109,255,.10);
  --shadow-md: 0 6px 24px rgba(155,109,255,.15);
  --shadow-lg: 0 12px 48px rgba(155,109,255,.20);
  --shadow-pink: 0 8px 32px rgba(255,79,135,.20);
  --shadow-purple: 0 8px 32px rgba(155,109,255,.25);

  --max-w: 1220px;
  --gap: clamp(16px, 4vw, 48px);
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', 'Quicksand', sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── CONTAINER ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* ── SECTION SHARED ────────────────────────────────────────────── */
.section { padding: clamp(56px, 8vw, 96px) 0; }

.sec-eyebrow {
  display: inline-block;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-bg);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.sec-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.sec-title {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── ANNOUNCEMENT BAR ──────────────────────────────────────────── */
.ann-bar {
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ── HEADER ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,248,243,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--pink-lt);
  transition: box-shadow .3s;
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-bunny { font-size: 28px; line-height: 1; }

.logo-texts {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-sub {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.logo-name {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-lnk {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
  transition: color .2s;
}
.nav-lnk:hover { color: var(--pink); }

.btn-cta-sm {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  padding: 9px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-pink);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-cta-sm:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(255,79,135,.35); }

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--bg-cream);
  padding: clamp(24px, 4vw, 40px) 0 0;
  overflow: hidden;
}

.hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hblob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
}
.hb1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #FFD6E7 0%, transparent 70%);
  top: -100px; left: -120px;
}
.hb2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #E8DCFF 0%, transparent 70%);
  bottom: -80px; right: -100px;
}
.hb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #C4E8FF 0%, transparent 70%);
  top: 30%; right: 20%;
}

.hero-stickers { position: absolute; inset: 0; pointer-events: none; }
.stk {
  position: absolute;
  animation: floatStk 4s ease-in-out infinite;
  font-size: 22px;
  opacity: .7;
}
.stk1 { top: 15%; left: 8%; animation-delay: 0s; }
.stk2 { top: 30%; left: 42%; animation-delay: .8s; font-size: 18px; }
.stk3 { bottom: 25%; left: 6%; animation-delay: 1.6s; }
.stk4 { top: 10%; right: 8%; animation-delay: .4s; font-size: 18px; }
.stk5 { bottom: 20%; right: 6%; animation-delay: 1.2s; font-size: 20px; }

@keyframes floatStk {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

/* Hero Top Standalone Banner */
.hero-top-banner-wrap {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.hero-standalone-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 130.37%;
  border-radius: clamp(16px, 2.5vw, 24px);
  box-shadow: 0 12px 36px rgba(186, 104, 200, 0.12);
  background: #FFFDF9;
}

.hero-standalone-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

/* Ribbon text overlay – covers '6 thế giới nhỏ' and displays 2-tier typography */
.hero-banner-ribbon {
  position: absolute;
  top: 24.1%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 61%;
  height: 5.1%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #FDF1A2;
  border-radius: 999px;
  pointer-events: none;
  z-index: 4;
  box-sizing: border-box;
  text-align: center;
}

.hero-banner-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 30px);
  color: #F72585;
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.hero-banner-subtitle {
  font-family: 'Nunito', 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 19px);
  color: #8B2CF5;
  letter-spacing: 0.01em;
  line-height: 1.15;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .hero-banner-ribbon {
    width: 62%;
    gap: 3px;
  }
  .hero-banner-title {
    font-size: clamp(16px, 2.3vw, 24px);
  }
  .hero-banner-subtitle {
    font-size: clamp(11px, 1.5vw, 16px);
  }
}

@media (max-width: 767px) {
  .hero-banner-ribbon {
    width: 64%;
    gap: 2px;
  }
  .hero-banner-title {
    font-size: clamp(11.5px, 3.2vw, 16px);
    letter-spacing: 0.01em;
  }
  .hero-banner-subtitle {
    font-size: clamp(8.5px, 2.2vw, 12px);
    letter-spacing: 0;
  }
}

/* ── HERO CTA TRANSITION SECTION – 100% VIEWPORT WIDTH ── */
.hero-cta-section {
  width: 100%;
  position: relative;
  z-index: 3;
  margin-top: clamp(20px, 3vw, 32px);
  margin-bottom: 0;
  padding: clamp(8px, 1.5vw, 14px) 0 clamp(16px, 2.5vw, 24px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, var(--bg-cream) 0%, rgba(255, 240, 245, 0.45) 100%);
  box-sizing: border-box;
}

.hero-cta-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 16px);
  width: 100%;
  max-width: 720px;
  min-height: 88px;
  margin: 0 auto;
  padding: 18px clamp(20px, 3vw, 36px);
  background: linear-gradient(90deg, #ff2f92 0%, #ad32f4 100%);
  color: #FFFFFF;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(17px, 1.85vw, 21px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 32px;
  box-shadow: 0 10px 28px rgba(255, 47, 146, 0.28), 0 4px 14px rgba(173, 50, 244, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.hero-cta-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 47, 146, 0.38), 0 6px 18px rgba(173, 50, 244, 0.28);
  filter: brightness(1.03);
}

.hero-cta-card-btn:active {
  transform: translateY(0);
}

.hero-cta-icon {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.hero-cta-text {
  line-height: 1.3;
  text-align: center;
}

.hero-cta-arrow {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.hero-cta-card-btn:hover .hero-cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .hero-cta-card-btn {
    width: calc(100% - 48px);
    max-width: 680px;
    min-height: 82px;
    font-size: clamp(16px, 2.2vw, 19px);
    border-radius: 30px;
  }
}

@media (max-width: 767px) {
  .hero-cta-section {
    margin-top: 16px;
    padding: 6px 0 16px;
  }
  .hero-cta-card-btn {
    width: calc(100% - 28px);
    min-height: 72px;
    padding: 12px 16px;
    font-size: clamp(13px, 3.8vw, 16px);
    border-radius: 26px;
    gap: 8px;
  }
  .hero-cta-icon,
  .hero-cta-arrow {
    font-size: 18px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Left */
.hero-left { display: flex; flex-direction: column; gap: 20px; }

.hero-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-bg);
  border: 1.5px solid var(--pink-lt);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  width: fit-content;
}
.hpill-dot {
  width: 7px; height: 7px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text-dark);
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-title-sub-em {
  font-size: .7em;
  color: var(--text-mid);
  -webkit-text-fill-color: var(--text-mid);
}

.hero-tagline {
  font-size: clamp(12px, 1.6vw, 15px);
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--purple);
  text-transform: uppercase;
}

.hero-desc {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-soft);
  line-height: 1.7;
}

/* Hero Price Hook */
.hero-price-hook {
  background: linear-gradient(135deg, var(--pink-bg) 0%, var(--purple-bg) 100%);
  border: 2px solid var(--pink-lt);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hph-from {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hph-price {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  letter-spacing: -.02em;
}

.hph-versions {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,.6);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--pink-lt);
}

.hpv-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 4px;
  position: relative;
}
.hpv-highlight { background: linear-gradient(135deg, var(--purple-bg), var(--pink-bg)); }

.hpv-divider {
  width: 1px;
  background: var(--pink-lt);
  align-self: stretch;
}

.hpv-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-dark);
}
.hpv-price-hi { color: var(--purple); }

.hpv-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.3;
}

.hpv-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--purple);
  background: var(--purple-lt);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-top: 4px;
  text-align: center;
  white-space: nowrap;
}

/* Hero CTAs */
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.btn-hero-main {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  padding: clamp(14px, 2vw, 18px) clamp(24px, 3vw, 40px);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-pink);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn-hero-main:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 48px rgba(255,79,135,.45); }

.btn-hero-sec {
  font-size: 15px;
  font-weight: 800;
  color: var(--purple);
  background: var(--purple-bg);
  border: 2px solid var(--purple-lt);
  padding: 14px 26px;
  border-radius: var(--radius-full);
  transition: all .2s;
  white-space: nowrap;
}
.btn-hero-sec:hover { background: var(--purple-lt); transform: translateY(-2px); }

/* ── HERO VISUAL / RIGHT ───────────────────────────────────────── */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: clamp(340px, 50vw, 540px);
  margin: 0 auto;
}

.hv-back, .hv-front {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
}
.hv-back { bottom: 0; z-index: 1; }
.hv-front { bottom: 24px; z-index: 2; }

.hv-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .3s;
}
.hv-card img { width: 100%; height: 100%; object-fit: cover; }

.hvc-back {
  width: 120px;
  height: 150px;
  opacity: .75;
  border-radius: var(--radius-md);
}
.hvc-b1 { transform: rotate(-8deg) translateX(-10px); }
.hvc-b2 { transform: rotate(0deg); margin-bottom: 12px; }
.hvc-b3 { transform: rotate(8deg) translateX(10px); }

.hvc-front {
  width: 140px;
  height: 175px;
}
.hvc-f1 { transform: rotate(-5deg); }
.hvc-f2.hvc-main {
  width: 200px;
  height: 250px;
  z-index: 3;
  border: 3px solid #fff;
  box-shadow: 0 16px 60px rgba(155,109,255,.35);
  transform: rotate(0deg) scale(1.05);
}
.hvc-f3 { transform: rotate(5deg); }

.hvc-front:hover { transform: scale(1.05) rotate(0deg) !important; }

/* Floating badges on visual */
.hv-badge {
  position: absolute;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  z-index: 10;
  border: 1.5px solid;
  animation: floatBadge 3s ease-in-out infinite;
  text-transform: uppercase;
}
.hvb1 {
  top: 8px; left: -8px;
  background: #fff;
  color: var(--pink);
  border-color: var(--pink-lt);
  animation-delay: 0s;
}
.hvb2 {
  top: 48px; right: -8px;
  background: #fff;
  color: var(--blue);
  border-color: var(--blue-lt);
  animation-delay: .6s;
}
.hvb3 {
  bottom: 30px; left: -16px;
  background: #fff;
  color: var(--purple);
  border-color: var(--purple-lt);
  animation-delay: 1.2s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hv-sparkle {
  position: absolute;
  font-size: 20px;
  z-index: 5;
  animation: floatStk 3.5s ease-in-out infinite;
}
.s1 { top: 12%; left: 0; animation-delay: 0s; }
.s2 { top: 20%; right: 0; animation-delay: .7s; font-size: 16px; }
.s3 { bottom: 15%; right: 4%; animation-delay: 1.4s; font-size: 18px; }
.s4 { bottom: 8%; left: 6%; animation-delay: 2s; font-size: 16px; }

/* ── BENEFIT STRIP ─────────────────────────────────────────────── */
.benefit-strip {
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
  padding: clamp(20px, 3vw, 28px) 0;
}

.bs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.bs-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,.2);
  transition: background .2s;
}
.bs-item:last-child { border-right: none; }
.bs-item:hover { background: rgba(255,255,255,.1); }

.bs-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.bs-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bs-text strong {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.bs-text span {
  font-size: 12px;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}

/* ── PRODUCTS & CATALOG NAVIGATION ─────────────────────────────── */
.prod-section { background: var(--bg-cream); }

.catalog-wrapper {
  position: relative;
  width: 100%;
}

.catalog-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #FFD6E7;
  box-shadow: 0 4px 16px rgba(155, 109, 255, 0.15);
  display: none; /* hidden when 1 page */
  align-items: center;
  justify-content: center;
  color: #FF2F92;
  font-size: 26px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  z-index: 10;
  padding: 0;
  line-height: 1;
  user-select: none;
}
.catalog-wrapper.has-multiple-pages .catalog-arrow {
  display: flex;
}
.catalog-arrow-prev {
  left: -24px;
}
.catalog-arrow-next {
  right: -24px;
}
.catalog-arrow:hover:not(:disabled) {
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 8px 24px rgba(255, 47, 146, 0.25);
  background: #FFF0F6;
  color: #AD32F4;
}
.catalog-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.catalog-pagination {
  display: none; /* hidden when 1 page */
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 40px);
}
.catalog-wrapper.has-multiple-pages + .catalog-pagination,
.catalog-pagination.is-visible {
  display: flex;
}

.catalog-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E8DCFF;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.catalog-dot:hover:not(.active) {
  background: #FFB3D9;
  transform: scale(1.15);
}
.catalog-dot.active {
  width: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF2F92, #AD32F4);
  box-shadow: 0 2px 8px rgba(255, 47, 146, 0.35);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.prod-grid.catalog-anim-out {
  opacity: 0;
  transform: translateY(6px);
}

@media (max-width: 1280px) {
  .catalog-arrow-prev { left: -12px; }
  .catalog-arrow-next { right: -12px; }
}
@media (max-width: 767px) {
  .catalog-arrow {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  .catalog-arrow-prev { left: -6px; }
  .catalog-arrow-next { right: -6px; }
}

.prod-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-lt);
}

.prod-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  width: 100%;
  flex-shrink: 0;
}
.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .4s;
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.04); }

.prod-badge-style {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
}
.pb-pink   { background: var(--pink);   color: #fff; }
.pb-purple { background: var(--purple); color: #fff; }
.pb-blue   { background: var(--blue);   color: #fff; }
.pb-red    { background: var(--red);    color: #fff; }
.pb-amber  { background: var(--amber);  color: #fff; }
.pb-mint   { background: var(--mint);   color: #fff; }

.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.prod-card:hover .prod-img-overlay { opacity: 1; }

.prod-img-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--pink-bg);
  gap: 8px;
}
.prod-img-fallback span { font-size: 48px; }
.prod-img-fallback small { font-size: 11px; color: var(--text-muted); }
.img-err .prod-img-fallback { display: flex; }
.img-err img { display: none; }

.prod-info {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.prod-name {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}

.prod-tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.prod-price-from {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 2px;
}
.prod-price-from strong {
  font-size: 18px;
  font-weight: 900;
  color: var(--pink);
}

.btn-prod-sales {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--pink);
  background: var(--pink-bg);
  border: 2px solid var(--pink-lt);
  padding: 11px 20px;
  border-radius: var(--radius-full);
  transition: all .2s;
  margin-top: auto;
}
.btn-prod-sales:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

/* ── PLAY STEPS & OFFERS REDESIGN (JOURNEY CONCEPT) ──────────── */
.play-steps-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 12%, #381E5D 0%, #25143E 45%, #180C2C 100%);
  padding: clamp(64px, 8vw, 100px) 0 clamp(68px, 8vw, 104px);
}

/* Background Glowing Blobs & Sparkles (CSS only) */
.pss-decor-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 1;
}
.pss-glow-1 {
  width: 380px;
  height: 380px;
  top: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 47, 146, 0.28) 0%, transparent 70%);
}
.pss-glow-2 {
  width: 440px;
  height: 440px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(155, 71, 255, 0.24) 0%, transparent 70%);
}
.pss-sparkle {
  position: absolute;
  color: #FFE58F;
  opacity: 0.35;
  font-size: 16px;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.pss-sp-1 { top: 12%; left: 8%; font-size: 18px; color: #FFA8D2; }
.pss-sp-2 { top: 22%; right: 10%; font-size: 14px; }
.pss-sp-3 { bottom: 35%; left: 6%; font-size: 16px; }
.pss-sp-4 { bottom: 18%; right: 7%; font-size: 20px; color: #FFA8D2; }

.pss-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Section Header */
.pss-head-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.pss-eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 47, 146, 0.18);
  border: 1px solid rgba(255, 77, 157, 0.35);
  color: #FFA8D2;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.pss-heading {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}
.pss-title-white {
  color: #FFFFFF;
}
.pss-title-grad {
  background: linear-gradient(90deg, #FF4D9D 0%, #FF8A5B 50%, #FFD45A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* 3 Journey Steps */
.pss-journey {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 960px;
  margin: clamp(36px, 4.5vw, 52px) auto 0;
  position: relative;
}
.pss-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  text-align: center;
}
.pss-step-num-wrap {
  position: relative;
  z-index: 3;
}
.pss-step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF2F92 0%, #AD32F4 100%);
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 47, 146, 0.45);
  border: 3px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 16px;
}
.pss-step-card {
  width: 100%;
  max-width: 250px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  flex: 1;
}
.pss-step-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 77, 157, 0.45);
  box-shadow: 0 12px 32px rgba(255, 47, 146, 0.25);
}
.pss-step-icon {
  font-size: 46px;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.pss-step-title {
  font-size: 19px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  margin: 0;
}
.pss-step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin: 0;
}

/* Connectors between steps */
.pss-connector {
  flex-shrink: 0;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.pss-conn-line {
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 47, 146, 0.6), rgba(173, 50, 244, 0.6), rgba(255, 212, 90, 0.6));
}
.pss-conn-arrow {
  font-size: 16px;
  color: #FFD45A;
  position: relative;
  top: -65px;
  z-index: 3;
  background: #2D184C;
  padding: 2px 4px;
  border-radius: 50%;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Section Transition Divider */
.pss-divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 600px;
  margin: clamp(48px, 6vw, 68px) auto clamp(40px, 5vw, 56px);
  opacity: 0.7;
}
.pss-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}
.pss-divider-symbol {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #FFA8D2;
}

/* Offer Zone */
.pss-offer-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.pss-offer-head {
  text-align: center;
  margin-bottom: clamp(24px, 3.5vw, 36px);
}
.pss-offer-title {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.pss-offer-subtitle {
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-style: italic;
}

/* Promo visual image */
.pss-promo-img-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto clamp(28px, 3.5vw, 40px);
  text-align: center;
}
.pss-promo-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}


/* CTA Button & Micro-copy */
.pss-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.pss-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  height: 68px;
  background: linear-gradient(90deg, #FF2F92 0%, #9B47FF 100%);
  color: #FFFFFF !important;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 26px;
  box-shadow: 0 10px 32px rgba(255, 47, 146, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}
.pss-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(255, 47, 146, 0.6);
  color: #FFFFFF !important;
}
.pss-cta-heart {
  font-size: 20px;
}
.pss-cta-arrow {
  font-size: 20px;
  transition: transform 0.2s ease;
}
.pss-cta-btn:hover .pss-cta-arrow {
  transform: translateX(4px);
}
.pss-micro-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-top: 14px;
  text-align: center;
}

/* Responsive Styles for Play Steps & Offers */
@media (max-width: 991px) {
  .pss-connector {
    width: 40px;
  }
  .pss-conn-arrow {
    top: -65px;
    font-size: 14px;
  }
  .pss-step-card {
    padding: 20px 12px;
  }
}

@media (max-width: 767px) {
  .pss-journey {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .pss-step {
    width: 100%;
    max-width: 320px;
    padding: 0;
  }
  .pss-connector {
    width: 2px;
    height: 38px;
    margin: 4px 0;
    flex-direction: column;
  }
  .pss-conn-line {
    width: 2px;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .pss-conn-arrow {
    top: 0;
    transform: rotate(90deg);
    font-size: 14px;
  }
  .pss-cta-btn {
    width: 100%;
    max-width: 100%;
    height: 64px;
    font-size: 16px;
  }
}

/* ── WHAT'S INSIDE – BUNNY WORLD REDESIGN ─────────────────────── */
.inside-section {
  background: linear-gradient(180deg, #FFF9FB 0%, #FDF7FE 100%);
  padding: clamp(60px, 7vw, 92px) 0;
  position: relative;
  overflow: hidden;
}

.inside-layout {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: clamp(36px, 4vw, 56px);
  align-items: center;
}

/* Gallery & Carousel Frame */
.inside-gallery {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.inside-gallery .showcase-carousel {
  width: 100%;
}

.inside-gallery .showcase-carousel .sc-viewport {
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  border: 1.5px solid rgba(255, 79, 135, 0.2);
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F9 100%);
  box-shadow: 0 16px 40px rgba(186, 104, 200, 0.14), 0 4px 12px rgba(255, 79, 135, 0.08);
}

.inside-gallery .sc-slide {
  padding: 16px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inside-gallery .sc-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 6px 16px rgba(186, 104, 200, 0.12));
}

.inside-gallery .sc-caption {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
}

/* Right Content */
.inside-content {
  display: flex;
  flex-direction: column;
}

.inside-head-desktop {
  display: block;
  margin-bottom: 20px;
}

.inside-head-mobile {
  display: none;
}

.inside-eyebrow {
  display: inline-block;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF2F92;
  background: rgba(255, 47, 146, 0.08);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 47, 146, 0.16);
}

.inside-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.inside-title-gradient {
  background: linear-gradient(90deg, #FF2F92 0%, #AD32F4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.inside-desc {
  font-size: clamp(14.5px, 1.3vw, 16px);
  color: #6B5A7D;
  line-height: 1.5;
  margin-bottom: 18px;
}

/* 6 Feature Cards – 2 Cột x 3 Hàng */
.inside-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 14px;
  margin-bottom: 20px;
}

.inside-card {
  background: #FFFFFF;
  border: 1px solid rgba(255, 79, 135, 0.16);
  border-radius: 20px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(186, 104, 200, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
}

.inside-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 47, 146, 0.15);
  border-color: rgba(255, 47, 146, 0.38);
}

.inside-card-icon {
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inside-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.inside-card-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #1A1025;
  line-height: 1.25;
}

.inside-card-desc {
  font-size: 12.5px;
  color: #6B5A7D;
  line-height: 1.35;
}

/* Mini Highlight */
.inside-mini-highlight {
  background: linear-gradient(135deg, rgba(255, 240, 246, 0.85) 0%, rgba(246, 240, 255, 0.85) 100%);
  border: 1px solid rgba(255, 79, 135, 0.22);
  border-radius: 20px;
  padding: 14px 18px;
  font-size: 14.5px;
  color: #4A3060;
  line-height: 1.5;
  box-shadow: 0 4px 16px rgba(186, 104, 200, 0.08);
}

.inside-mini-highlight strong {
  font-weight: 800;
  color: #FF2F92;
}

.inside-mini-highlight .hl-purple {
  font-weight: 800;
  color: #8B2CF5;
}

/* 3 Mini Tags */
.inside-tags-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.inside-tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 79, 135, 0.22);
  color: #FF2F92;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(255, 79, 135, 0.08);
}

.inside-tag-pill:nth-child(2) {
  color: #9B51E0;
  border-color: rgba(155, 81, 224, 0.22);
}

.inside-tag-pill:nth-child(3) {
  color: #AD32F4;
  border-color: rgba(173, 50, 244, 0.22);
}

/* Responsive */
@media (max-width: 991px) {
  .inside-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .inside-gallery {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .inside-head-desktop {
    display: none;
  }
  .inside-head-mobile {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  .inside-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .inside-gallery {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }
  .inside-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .inside-card {
    padding: 12px 10px;
    gap: 8px;
    border-radius: 16px;
  }
  .inside-card-icon {
    font-size: 24px;
  }
  .inside-card-title {
    font-size: 13.5px;
  }
  .inside-card-desc {
    font-size: 11.5px;
  }
  .inside-mini-highlight {
    padding: 12px 16px;
    font-size: 13.5px;
    text-align: center;
  }
  .inside-tags-row {
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 460px) {
  .inside-cards-grid {
    grid-template-columns: 1fr;
  }
  .inside-card {
    padding: 12px 14px;
  }
}

/* ── PRICING ───────────────────────────────────────────────────── */
.pricing-section { background: var(--bg-blue); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pc-ribbon-banner {
  position: absolute;
  top: 20px; right: -28px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 6px 40px;
  transform: rotate(35deg);
}

.pc-popular { border-color: var(--blue-lt); box-shadow: 0 8px 40px rgba(86,184,255,.25); }
.pc-135k { border-color: var(--purple-lt); }

.pc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  width: fit-content;
}
.pc-tag-gray   { background: #F0EDF5; color: var(--text-soft); }
.pc-tag-blue   { background: var(--blue-lt); color: #1A7EBF; }
.pc-tag-purple { background: var(--purple-lt); color: var(--purple); }

.pc-price-big {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -.02em;
}
.pc-price-blue   { color: var(--blue); }
.pc-price-purple { color: var(--purple); }

.pc-name {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.3;
}

.pc-divider {
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(155,109,255,.2), transparent);
}

.pc-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}
.pc-chk {
  font-size: 14px;
  font-weight: 900;
  color: var(--text-soft);
  flex-shrink: 0;
  margin-top: 1px;
}
.pc-chk-blue   { color: var(--blue); }
.pc-chk-purple { color: var(--purple); }

.pc-highlight-box {
  background: linear-gradient(135deg, var(--purple-bg), var(--pink-bg));
  border: 2px solid var(--purple-lt);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 900;
  color: var(--purple);
  text-align: center;
  letter-spacing: .02em;
}

.pc-cta {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  transition: all .2s;
}
.pc-cta-gray {
  background: #F0EDF5;
  color: var(--text-mid);
  border: 2px solid #E0DAE8;
}
.pc-cta-gray:hover { background: var(--text-mid); color: #fff; }

.pc-cta-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 24px rgba(86,184,255,.4);
}
.pc-cta-blue:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(86,184,255,.5); }

.pc-cta-purple {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  box-shadow: var(--shadow-purple);
}
.pc-cta-purple:hover { transform: translateY(-3px); box-shadow: 0 14px 48px rgba(155,109,255,.5); }

/* ── WHY CHOOSE BUNNY PAPER – SCRAPBOOK PLAYGROUND ─────────────── */
.why-choose-section {
  position: relative;
  background: linear-gradient(135deg, #FFF9F5 0%, #FFF0F6 50%, #F6F0FF 100%);
  padding: clamp(64px, 8vw, 104px) 0;
  overflow: hidden;
}

/* Decorative Background Blobs (CSS Only) */
.wc-decor-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

.wc-blob-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 214, 231, 0.9) 0%, rgba(255, 240, 246, 0) 70%);
  top: -60px;
  left: -80px;
}

.wc-blob-2 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(232, 220, 255, 0.85) 0%, rgba(246, 240, 255, 0) 70%);
  bottom: -40px;
  right: -60px;
}

.why-choose-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 48% 52%;
  gap: clamp(40px, 4.5vw, 64px);
  align-items: center;
}

/* ── LEFT: SCRAPBOOK CARD & CAROUSEL ── */
.wc-visual-col {
  width: 100%;
  position: relative;
}

.wc-scrapbook-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 30px;
  border: 2px solid rgba(255, 47, 146, 0.15);
  box-shadow: 0 20px 48px rgba(186, 104, 200, 0.16), 0 6px 18px rgba(255, 47, 146, 0.08);
  padding: 16px 16px 14px;
  box-sizing: border-box;
}

/* Sticker Notes (Scrapbook Badges) */
.wc-sticker-note {
  position: absolute;
  z-index: 6;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(255, 47, 146, 0.16);
  pointer-events: none;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-weight: 800;
  text-align: center;
}

.wc-sticker-1 {
  top: -18px;
  left: -20px;
  background: #FFF8FA;
  border: 1.5px dashed #FF4F87;
  color: #D81B60;
  padding: 8px 14px;
  font-size: 11.5px;
  line-height: 1.35;
  transform: rotate(-3deg);
}

.wc-sticker-2 {
  bottom: 24px;
  right: -16px;
  background: #FDF6FF;
  border: 1.5px dashed #AD32F4;
  color: #8D46F6;
  padding: 7px 12px;
  font-size: 11px;
  line-height: 1.35;
  transform: rotate(3deg);
}

/* Carousel Frame inside Scrapbook */
.wc-scrapbook-card .showcase-carousel {
  width: 100%;
}

.wc-scrapbook-card .sc-viewport {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  border: 1px solid rgba(255, 79, 135, 0.12);
  background: linear-gradient(135deg, #FFF9FA 0%, #FAF5FF 100%);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(186, 104, 200, 0.06);
}

.wc-scrapbook-card .sc-slide {
  padding: 14px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-scrapbook-card .sc-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 6px 16px rgba(186, 104, 200, 0.14));
}

.wc-scrapbook-card .sc-caption {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
}

/* ── RIGHT: HEADING, 6 BENEFITS & CTA ── */
.wc-content-col {
  display: flex;
  flex-direction: column;
}

.wc-head-desktop {
  display: block;
  margin-bottom: 20px;
}

.wc-head-mobile {
  display: none;
}

.wc-eyebrow {
  display: inline-block;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #FF2F92;
  background: rgba(255, 47, 146, 0.08);
  border: 1px solid rgba(255, 47, 146, 0.2);
  border-radius: 999px;
  padding: 8px 18px;
  width: fit-content;
  margin-bottom: 12px;
}

.wc-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.22;
  margin-bottom: 4px;
}

.wc-title-main {
  color: #1A1025;
  font-size: clamp(23px, 2.7vw, 36px);
  font-weight: 900;
}

.wc-title-grad1 {
  background: linear-gradient(90deg, #FF2F92 0%, #E735B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 900;
  display: inline-block;
}

.wc-title-grad2 {
  background: linear-gradient(90deg, #D83ACB 0%, #8D46F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 900;
  display: inline-block;
}

/* 6 Creative Journey Benefits (2 cols x 3 rows) */
.wc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 14px;
  margin: 22px 0 24px;
}

.wc-benefit-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 79, 135, 0.14);
  border-radius: 20px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(186, 104, 200, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
}

.wc-benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 47, 146, 0.16);
  border-color: rgba(255, 47, 146, 0.38);
}

.wc-benefit-bubble {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.6);
}

.bubble-pink   { background: #FFE8F2; }
.bubble-purple { background: #F2E8FF; }
.bubble-yellow { background: #FFF6D6; }
.bubble-blue   { background: #E5F4FF; }
.bubble-peach  { background: #FFEFE5; }
.bubble-mint   { background: #E8FAF5; }

.wc-benefit-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.wc-benefit-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  color: #1A1025;
  line-height: 1.25;
}

.wc-benefit-sub {
  font-size: 12.5px;
  color: #7B6890;
  line-height: 1.35;
}

/* CTA & Micro Copy */
.wc-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: clamp(340px, 36vw, 420px);
  height: 68px;
  background: linear-gradient(90deg, #FF2F92 0%, #9747FF 100%);
  color: #FFFFFF;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 26px;
  box-shadow: 0 10px 28px rgba(255, 47, 146, 0.3), 0 4px 14px rgba(151, 71, 255, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.wc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 47, 146, 0.4), 0 6px 18px rgba(151, 71, 255, 0.28);
  filter: brightness(1.03);
}

.wc-cta-btn:active {
  transform: translateY(0);
}

.wc-cta-icon {
  font-size: 19px;
  line-height: 1;
}

.wc-cta-label {
  line-height: 1;
}

.wc-cta-arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.wc-cta-btn:hover .wc-cta-arrow {
  transform: translateX(4px);
}

.wc-micro-copy {
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  color: #7B6890;
  margin-top: 10px;
  padding-left: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .wc-visual-col {
    max-width: 480px;
    margin: 0 auto;
  }
  .wc-cta-wrap {
    align-items: center;
  }
  .wc-micro-copy {
    text-align: center;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .wc-head-desktop {
    display: none;
  }
  .wc-head-mobile {
    display: block;
    text-align: center;
    margin-bottom: 24px;
  }
  .why-choose-layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .wc-visual-col {
    max-width: 100%;
  }
  .wc-sticker-1 {
    top: -12px;
    left: -8px;
    font-size: 10px;
    padding: 6px 10px;
  }
  .wc-sticker-2 {
    bottom: 20px;
    right: -8px;
    font-size: 10px;
    padding: 5px 8px;
  }
  .wc-benefits-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 18px 0 22px;
  }
  .wc-benefit-card {
    padding: 10px 12px;
    gap: 10px;
  }
  .wc-benefit-bubble {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .wc-benefit-title {
    font-size: 14px;
  }
  .wc-benefit-sub {
    font-size: 12px;
  }
  .wc-cta-btn {
    width: 100%;
    max-width: 400px;
    height: 62px;
    font-size: 16px;
  }
}

/* ── GIFT SECTION ──────────────────────────────────────────────── */
.gift-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 112px) 0;
}

.gift-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
}

.gift-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.gift-emoji-row {
  display: flex;
  gap: 20px;
  font-size: 32px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}
.gift-emoji-row span { animation: floatStk 3s ease-in-out infinite; }
.gift-emoji-row span:nth-child(1) { animation-delay: 0s; }
.gift-emoji-row span:nth-child(2) { animation-delay: .4s; }
.gift-emoji-row span:nth-child(3) { animation-delay: .8s; }
.gift-emoji-row span:nth-child(4) { animation-delay: 1.2s; }

.gift-tag {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.2);
  padding: 7px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,.3);
}

.gift-title {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.gift-occasions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.go-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  transition: background .2s, transform .2s;
}
.go-item:hover { background: rgba(255,255,255,.25); transform: translateY(-3px); }

.btn-gift {
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .03em;
  color: var(--pink);
  background: #fff;
  padding: 18px 48px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 36px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.btn-gift:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 56px rgba(0,0,0,.25); }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-section { background: var(--bg-purple); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--purple-lt);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--purple); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  transition: color .2s;
}
.faq-q:hover { color: var(--purple); }
.faq-item.open .faq-q { color: var(--purple); }

.faq-ico {
  font-size: 22px;
  font-weight: 300;
  color: var(--purple);
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq-item.open .faq-ico { transform: rotate(45deg); }

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-ans { max-height: 400px; }

.faq-ans-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}
.faq-ans-inner p + p { margin-top: 10px; }
.faq-ans-inner strong { color: var(--text-dark); }
.faq-ans-inner ol { padding-left: 20px; list-style: decimal; }
.faq-ans-inner ol li { margin-bottom: 4px; }

/* ── ORDER FORM ────────────────────────────────────────────────── */
.order-section {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2D1854 100%);
  padding: clamp(56px, 8vw, 96px) 0;
}

.order-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.order-eyebrow {
  color: var(--pink);
  background: rgba(255,79,135,.15);
  border: 1.5px solid rgba(255,79,135,.3);
}

.order-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.order-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,.7);
}

.order-wrap { max-width: 1100px; margin: 0 auto; }

.order-form-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.form-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-step {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 32px);
  backdrop-filter: blur(8px);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-pink);
}

.step-label {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
}

/* Product selector in form */
.prod-sel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.psel {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2.5px solid rgba(255,255,255,.2);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.psel input { position: absolute; opacity: 0; pointer-events: none; }
.psel:hover { border-color: var(--pink-lt); transform: translateY(-3px); }
.psel.selected { border-color: var(--pink); box-shadow: 0 0 0 2px rgba(255,79,135,.3); }

.psel-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: #1A1025;
}
.psel-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.psel:hover .psel-thumb img { transform: scale(1.08); }

.psel-name {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  text-align: center;
  padding: 8px 6px;
  background: rgba(0,0,0,.3);
  line-height: 1.3;
}

.psel-check {
  position: absolute;
  top: 8px; right: 8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 12px rgba(255,79,135,.5);
}
.psel.selected .psel-check { opacity: 1; transform: scale(1); }

/* Version selector */
.ver-list { display: flex; flex-direction: column; gap: 10px; }

.ver-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.ver-opt input { position: absolute; opacity: 0; pointer-events: none; }
.ver-opt:hover { border-color: var(--pink-lt); background: rgba(255,79,135,.1); }
.ver-opt.selected { border-color: var(--pink); background: rgba(255,79,135,.15); }

.ver-info { flex: 1; }

.ver-price {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

.ver-name {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 3px;
}

.ver-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  margin-top: 4px;
}

.ver-check {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
  box-shadow: var(--shadow-pink);
}
.ver-opt.selected .ver-check { opacity: 1; transform: scale(1); }

/* Qty */
.qty-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
}

.qty-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.25);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.qty-btn:hover { background: var(--pink); border-color: var(--pink); }

.qty-display {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  min-width: 48px;
  text-align: center;
}

/* Fields */
.fields { display: flex; flex-direction: column; gap: 14px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-group { display: flex; flex-direction: column; gap: 6px; }
.fg-wide { grid-column: 1 / -1; }

.field-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}
.req { color: var(--pink); }

.field-input {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  color: #fff;
  font-family: inherit;
  transition: border-color .2s, background .2s;
  outline: none;
  width: 100%;
}
.field-input::placeholder { color: rgba(255,255,255,.35); }
.field-input:focus { border-color: var(--pink); background: rgba(255,79,135,.1); }
.field-textarea { resize: vertical; min-height: 80px; }

/* Order summary */
.form-right { position: sticky; top: 80px; }

.order-summary {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 64px rgba(0,0,0,.3);
}

.sum-header {
  font-size: 15px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: .04em;
  text-align: center;
  padding-bottom: 4px;
}

.sum-preview {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sum-preview img { width: 100%; height: 100%; object-fit: cover; }
.sum-preview-placeholder {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.sum-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sum-lbl { font-size: 14px; color: var(--text-soft); }
.sum-val { font-size: 14px; font-weight: 700; color: var(--text-dark); text-align: right; }

.sum-divider { height: 1.5px; background: var(--pink-lt); }

.sum-total-row { padding-top: 4px; }
.sum-lbl-total { font-size: 16px; font-weight: 800; color: var(--text-dark); }
.sum-total {
  font-size: 28px;
  font-weight: 900;
  color: var(--pink);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .04em;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-pink);
  transition: transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 48px rgba(255,79,135,.5); }

.sum-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-bunny { font-size: 32px; }
.footer-texts { display: flex; flex-direction: column; line-height: 1.3; }
.footer-sub { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; }
.footer-name { font-size: 22px; font-weight: 900; background: linear-gradient(90deg, var(--pink), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.footer-desc { font-size: 14px; color: rgba(255,255,255,.5); max-width: 400px; }
.footer-bottom { font-size: 13px; color: rgba(255,255,255,.35); padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); width: 100%; text-align: center; }

/* ── MOBILE STICKY CTA ─────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 16px 16px;
  background: rgba(255,248,243,.96);
  backdrop-filter: blur(12px);
  border-top: 1.5px solid var(--pink-lt);
  display: none;
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(255,79,135,.45);
  transition: transform .2s;
}
.sticky-cta-btn:active { transform: scale(.97); }
.sticky-icon { font-size: 20px; }

/* ================================================================
   RESPONSIVE LAYOUT
   ================================================================ */

/* ── TABLET ────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { align-items: center; text-align: center; }
  .hero-brand-pill { align-self: center; }
  .hero-ctas { justify-content: center; }
  .hero-right { display: flex; justify-content: center; }
  .hero-visual { max-width: 480px; height: clamp(280px, 55vw, 420px); }

  .hv-back .hvc-back { width: 90px; height: 112px; }
  .hv-front .hvc-front { width: 100px; height: 125px; }
  .hvc-f2.hvc-main { width: 160px; height: 200px; }

  .prod-grid { grid-template-columns: repeat(2, 1fr); }

  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }

  .inside-layout { grid-template-columns: 1fr; }

  .why-layout { grid-template-columns: 1fr; }
  .why-visual { height: 280px; max-width: 400px; margin: 0 auto; }

  .order-form-inner { grid-template-columns: 1fr; }
  .form-right { position: static; }

  .bs-grid { grid-template-columns: repeat(2, 1fr); }
  .bs-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .bs-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.2); }
  .bs-item:last-child, .bs-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

/* ── MOBILE ────────────────────────────────────────────────────── */
@media (max-width: 639px) {
  .hdr-nav .nav-lnk { display: none; }

  .hero { padding: 32px 0 48px; }
  .hero-title { font-size: clamp(32px, 10vw, 44px); }

  .hph-versions { flex-direction: column; }
  .hpv-divider { width: 100%; height: 1px; }

  .hero-visual { max-width: 340px; height: 300px; }
  .hv-back .hvc-back { width: 70px; height: 88px; }
  .hv-front .hvc-front { width: 80px; height: 100px; }
  .hvc-f2.hvc-main { width: 130px; height: 162px; }

  .hvb1, .hvb2, .hvb3 { display: none; }

  .benefit-strip { padding: 20px 0; }
  .bs-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .bs-item { padding: 14px 12px; gap: 10px; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.2) !important; }
  .bs-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.2) !important; }
  .bs-item:nth-child(3), .bs-item:nth-child(4) { border-bottom: none !important; }
  .bs-icon { font-size: 22px; }
  .bs-text strong { font-size: 11px; }
  .bs-text span { font-size: 10px; }

  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prod-card {
    border-radius: var(--radius-lg);
  }
  .prod-img-wrap {
    padding: 8px;
  }
  .prod-info {
    padding: 12px 10px 14px;
    gap: 6px;
  }
  .prod-name {
    font-size: clamp(13px, 3.4vw, 14.5px);
    line-height: 1.25;
    min-height: 36px;
    display: flex;
    align-items: flex-start;
  }
  .prod-tagline {
    font-size: 11px;
    line-height: 1.35;
    min-height: 30px;
    display: flex;
    align-items: flex-start;
  }
  .btn-prod-sales {
    padding: 9px 8px;
    font-size: 11.5px;
    letter-spacing: 0.02em;
    width: 100%;
    margin-top: auto;
    white-space: nowrap;
    text-align: center;
  }

  .hiw-steps { flex-direction: column; gap: 24px; }
  .hiw-arrow { transform: rotate(90deg); align-self: center; }

  .ig-sub-grid { grid-template-columns: repeat(2, 1fr); }

  .if-item { padding: 12px 14px; }
  .if-icon { font-size: 20px; }

  .price-grid { max-width: 100%; }

  .gift-occasions { flex-wrap: wrap; gap: 10px; }
  .go-item { font-size: 13px; padding: 10px 18px; }

  .prod-sel-grid { grid-template-columns: repeat(2, 1fr); }

  .field-row { grid-template-columns: 1fr; }
  .fg-wide { grid-column: 1; }

  .hiw-step { padding: 0 8px; }

  .sticky-cta { display: block; }

  .sum-preview { aspect-ratio: 16/9; }
}

/* Wider mobile hero layout override */
@media (max-width: 639px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-left {
    order: 1;
  }
  .hero-right {
    order: 2;
  }
}

/* ── ANIMATIONS ON SCROLL ──────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .prod-card,
  .price-card,
  .if-item,
  .wp-item,
  .hiw-step {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease, box-shadow .3s;
  }
  .prod-card.visible,
  .price-card.visible,
  .if-item.visible,
  .wp-item.visible,
  .hiw-step.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================================
   B0 HOTFIX ADDITIONS – MULTI-SELECT QTY + SUMMARY + FOOTER
   ================================================================ */

/* ── STEP HINT ─────────────────────────────────────────────────── */
.step-hint {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin: -14px 0 18px;
  font-style: italic;
}

/* ── PER-PRODUCT QTY ROW (inside psel card) ────────────────────── */
.psel {
  display: flex;
  flex-direction: column;
}

.psel-qty-row {
  display: none; /* hidden until selected */
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255,79,135,.18);
  border-top: 1.5px solid rgba(255,79,135,.35);
}

.psel.selected .psel-qty-row {
  display: flex;
}

.psel-qbtn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-family: inherit;
  flex-shrink: 0;
  transition: background .18s, transform .18s;
  touch-action: manipulation;
}
.psel-qbtn:hover { background: var(--purple); transform: scale(1.1); }
.psel-qbtn:active { transform: scale(.94); }

.psel-qnum {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  min-width: 22px;
  text-align: center;
}

/* ── ORDER FORM INNER – wider summary column ───────────────────── */
.order-form-inner {
  grid-template-columns: 1fr 420px;
}

/* ── ORDER SUMMARY – REDESIGNED ────────────────────────────────── */
.sum-items-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 80px;
  padding: 4px 0;
}

.sum-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 16px;
  text-align: center;
}

.sum-empty-icon {
  font-size: 36px;
  opacity: .6;
}

.sum-empty p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}
.sum-empty p small {
  font-size: 12px;
  color: var(--text-muted);
}

/* Each product row in summary */
.sum-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--pink-lt);
  animation: fadeSlideIn .25s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sum-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.sum-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sum-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.sum-item-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sum-item-variant {
  font-size: 12px;
  color: var(--text-soft);
}

.sum-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}

.sum-item-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sum-qbtn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink-bg);
  border: 1.5px solid var(--pink-lt);
  color: var(--pink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: inherit;
  transition: background .18s, border-color .18s;
  flex-shrink: 0;
  touch-action: manipulation;
}
.sum-qbtn:hover { background: var(--pink); color: #fff; border-color: var(--pink); }

.sum-qnum {
  font-size: 15px;
  font-weight: 900;
  color: var(--text-dark);
  min-width: 18px;
  text-align: center;
}

.sum-item-price {
  font-size: 14px;
  font-weight: 900;
  color: var(--pink);
  white-space: nowrap;
}

/* Summary footer (totals + CTA) */
.sum-divider-line {
  height: 1.5px;
  background: var(--pink-lt);
  margin: 4px 0;
}

.sum-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sum-totals-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sum-tot-lbl {
  font-size: 14px;
  color: var(--text-soft);
}

.sum-tot-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

.sum-grand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--pink-bg), var(--purple-bg));
  border-radius: var(--radius-md);
  border: 1.5px solid var(--pink-lt);
}

.sum-grand-lbl {
  font-size: 14px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: .04em;
}

.sum-grand-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--pink);
  letter-spacing: -.01em;
}

/* Empty-state submit button (dimmed) */
.sum-submit-empty {
  margin-top: 12px;
}

.btn-submit-dim {
  opacity: .55;
  cursor: not-allowed;
}

/* ── New Order Summary UI elements ─────────────────────────────── */

/* Unit price per bộ (small grey, below variant) */
.sum-item-unit-price {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 1px;
}

/* Delete button */
.sum-qbtn-del {
  background: #FFF5F5 !important;
  border-color: #FFD0D0 !important;
  color: #E04040 !important;
  font-size: 13px !important;
}
.sum-qbtn-del:hover {
  background: #FFE0E0 !important;
  border-color: #E04040 !important;
  color: #C02020 !important;
}

/* Discount row */
.sum-discount-row {
  align-items: center;
}
.sum-discount-lbl {
  color: #10B981 !important;
  font-weight: 700 !important;
}
.sum-discount-val {
  color: #10B981 !important;
  font-weight: 800 !important;
}
.sum-freeship-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: #065F46;
  background: #D1FAE5;
  border: 1px solid #6EE7B7;
  border-radius: 5px;
  padding: 1px 6px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}

/* Grand total box */
.sum-grand-box {
  background: linear-gradient(135deg, #FFF0F7 0%, #F5EEFF 100%);
  border: 1.5px solid var(--pink-lt);
  border-radius: var(--radius-md);
  padding: 12px 14px 10px;
  margin-top: 4px;
}

.sum-grand-box .sum-grand-row {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

/* VAT note under grand total */
.sum-vat-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
  font-style: italic;
}

/* Trust badges row */
.sum-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--pink-lt);
}
.sum-trust-item {
  font-size: 11.5px;
  color: var(--text-soft);
  font-weight: 600;
  white-space: nowrap;
}

/* ── FOOTER – THANK YOU ────────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #2D1054 0%, #1A1025 50%, #0E0020 100%);
  padding: clamp(56px, 8vw, 96px) 0 0;
}

.footer-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.fb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.fb1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #FF4F87 0%, transparent 70%);
  top: -80px; left: -100px;
}
.fb2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #9B6DFF 0%, transparent 70%);
  bottom: 40px; right: -60px;
}
.fb3 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, #56B8FF 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

/* Thank-you block */
.footer-thankyou {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: clamp(48px, 6vw, 80px);
  max-width: 680px;
  margin: 0 auto;
}

.fty-deco {
  display: flex;
  gap: 16px;
  font-size: 28px;
}
.fty-deco span { animation: floatStk 3.5s ease-in-out infinite; }
.fty-deco span:nth-child(1) { animation-delay: 0s; }
.fty-deco span:nth-child(2) { animation-delay: .4s; }
.fty-deco span:nth-child(3) { animation-delay: .8s; }
.fty-deco span:nth-child(4) { animation-delay: 1.2s; }
.fty-deco span:nth-child(5) { animation-delay: 1.6s; }

.fty-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.fty-text {
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
}

.fty-highlight {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 800;
  color: var(--yellow);
  background: rgba(255,216,90,.12);
  border: 1.5px solid rgba(255,216,90,.3);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  letter-spacing: .02em;
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--pink);
  background: #fff;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 36px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .02em;
}
.btn-footer-cta:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 56px rgba(0,0,0,.35); }

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  margin: 0;
}

.footer-brand-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(28px, 4vw, 48px) 0 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-bunny { font-size: 32px; }
.footer-texts { display: flex; flex-direction: column; line-height: 1.3; }
.footer-sub { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; }
.footer-name {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  text-align: right;
}

.footer-bottom {
  width: 100%;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}

/* ── RESPONSIVE – HOTFIX ───────────────────────────────────────── */
@media (max-width: 1023px) {
  .order-form-inner { grid-template-columns: 1fr; }
  .footer-brand-row { justify-content: center; text-align: center; }
  .footer-tagline { text-align: center; }
}

@media (max-width: 639px) {
  .order-form-inner { grid-template-columns: 1fr; }

  .sum-item-thumb { width: 52px; height: 52px; }
  .sum-item-name { font-size: 12px; }
  .sum-grand-price { font-size: 22px; }

  .psel-qbtn { width: 30px; height: 30px; font-size: 20px; }
  .psel-qnum { font-size: 16px; }

  .footer-brand-row { flex-direction: column; align-items: center; }
  .footer-tagline { text-align: center; }

  .fty-deco { font-size: 22px; gap: 12px; }
}

/* ================================================================
   B0 VISUAL CORRECTION ADDITIONS
   ================================================================ */

/* ── HERO BENEFIT LINE + MICRO BENEFITS ────────────────────────── */
.hero-benefit-line {
  font-size: clamp(13px, 1.6vw, 15px);
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  max-width: 520px;
}

.hero-micro-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  max-width: 520px;
}

.hmb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 1.5vw, 14px);
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

.hmb-item span {
  font-size: 18px;
  flex-shrink: 0;
}

/* ── SHOWCASE CAROUSEL ─────────────────────────────────────────── */
.showcase-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: visible;
  user-select: none;
}

/* The frame that clips slides */
.sc-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-cream);
  box-shadow: var(--shadow-lg);
}

/* Each slide */
.sc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(16px) scale(.98);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}

.sc-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.sc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Prev / Next arrows */
.sc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 3px 12px rgba(0,0,0,.18);
  border: none;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--purple);
  transition: background .18s, transform .18s, box-shadow .18s;
  z-index: 10;
  touch-action: manipulation;
}

.sc-prev { left: -14px; }
.sc-next { right: -14px; }

.sc-arrow:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(155,109,255,.25);
  transform: translateY(-50%) scale(1.1);
}

/* Dots + Caption footer */
.sc-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
}

.sc-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.sc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(155,109,255,.25);
  cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
  padding: 0;
  flex-shrink: 0;
}

.sc-dot.active {
  background: var(--purple);
  width: 22px;
  border-radius: 4px;
}

.sc-caption {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  text-align: center;
  min-height: 18px;
  letter-spacing: .03em;
}

/* Make inside-gallery and why-visual flex-fill the carousel */
.inside-gallery {
  display: flex;
  align-items: stretch;
}

.inside-gallery .showcase-carousel {
  flex: 1;
}

.why-visual {
  min-width: 0;
}

.why-visual .showcase-carousel {
  width: 100%;
}

/* ── PRICING CARD VISUAL REDESIGN ──────────────────────────────── */

/* Badge pill (replaces pc-tag) */
.pc-badge-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 4px;
}

.pc-badge-gray  { background: #f0f0f0; color: #666; }
.pc-badge-blue  { background: #e0f0ff; color: #1a7ec8; }
.pc-badge-purple{ background: #f0e8ff; color: var(--purple); }

/* pc-top wraps the text/features part */
.pc-top {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Visual illustration at bottom of card */
.pc-visual {
  margin-top: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.pc-visual-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.pc-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.price-card:hover .pc-visual-img img {
  transform: scale(1.04);
}

.pc-visual-icon {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 24px;
  background: rgba(255,255,255,.88);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.pc-visual-caption {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 8px 12px 2px;
  color: var(--text-soft);
  letter-spacing: .02em;
}

.pc-vc-highlight {
  color: var(--pink) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  background: var(--pink-bg);
  border-radius: var(--radius-sm);
  padding: 8px 12px !important;
  margin-top: 4px;
}

/* Re-order pc-cta to sit after pc-visual */
.price-card {
  display: flex;
  flex-direction: column;
}

.price-card .pc-cta {
  margin-top: auto;
}

/* ── RESPONSIVE CAROUSEL ───────────────────────────────────────── */
@media (max-width: 1023px) {
  .sc-prev { left: 4px; }
  .sc-next { right: 4px; }
  .sc-arrow { width: 34px; height: 34px; font-size: 22px; }
}

@media (max-width: 639px) {
  .sc-arrow { width: 30px; height: 30px; font-size: 20px; }
  .sc-prev { left: 2px; }
  .sc-next { right: 2px; }

  .hero-micro-benefits { grid-template-columns: 1fr; gap: 6px; }
  .hero-benefit-line { max-width: 100%; }

  .pc-visual-img { aspect-ratio: 16 / 10; }
  .pc-badge-pill { font-size: 10px; }
}

/* ==========================================================================
   B0 FINAL VISUAL CORRECTION: INFOGRAPHIC PRICING SECTION
   ========================================================================== */
.pricing-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF9 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.pricing-section .sec-head {
  text-align: center;
  margin-bottom: 36px;
}

.pricing-section .sec-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  color: #3D234A;
  margin: 0 0 10px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.pricing-section .sec-sub {
  font-size: 15.5px;
  color: #6C5B7B;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
}

/* 3 Cards Infographic Grid */
.info-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Card Base */
.info-price-card {
  border-radius: 28px;
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  overflow: hidden;
}

.info-price-card:hover {
  transform: translateY(-6px);
}

/* Card 1 - Hồng (Tiết kiệm) */
.ipc-pink {
  background: linear-gradient(180deg, #FFF0F5 0%, #FFE5EE 65%, #FFD6E5 100%);
  border: 2.5px solid #FFAEC9;
  box-shadow: 0 12px 32px rgba(255, 105, 150, 0.16);
}
.ipc-pink:hover {
  box-shadow: 0 18px 40px rgba(255, 105, 150, 0.28);
}

/* Card 2 - Xanh (Phổ biến) */
.ipc-blue {
  background: linear-gradient(180deg, #F0F8FF 0%, #E0F0FF 65%, #CEE6FF 100%);
  border: 2.5px solid #85CCFF;
  box-shadow: 0 12px 32px rgba(37, 137, 255, 0.16);
}
.ipc-blue:hover {
  box-shadow: 0 18px 40px rgba(37, 137, 255, 0.28);
}

/* Card 3 - Tím (Tiện lợi) */
.ipc-purple {
  background: linear-gradient(180deg, #FAF4FF 0%, #F0E2FF 65%, #E4CEFF 100%);
  border: 2.5px solid #C49BFF;
  box-shadow: 0 14px 36px rgba(147, 51, 234, 0.18);
}
.ipc-purple:hover {
  box-shadow: 0 20px 44px rgba(147, 51, 234, 0.3);
}

/* Card Header */
.ipc-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ipc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 18px;
  border-radius: 99px;
  text-transform: uppercase;
}
.ipc-pink .ipc-badge {
  background: #FF5A87;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 90, 135, 0.35);
}
.ipc-blue .ipc-badge {
  background: #1E88E5;
  color: #fff;
  box-shadow: 0 4px 12px rgba(30, 136, 229, 0.35);
}
.ipc-purple .ipc-badge {
  background: #8A2BE2;
  color: #fff;
  box-shadow: 0 4px 12px rgba(138, 43, 226, 0.35);
}

/* Big Price */
.ipc-price {
  font-size: clamp(34px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.ipc-pink .ipc-price { color: #D81B60; }
.ipc-blue .ipc-price { color: #0D6EFD; }
.ipc-purple .ipc-price { color: #7B1FA2; }

/* Version Title */
.ipc-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ipc-pink .ipc-name { color: #880E4F; }
.ipc-blue .ipc-name { color: #0C4A6E; }
.ipc-purple .ipc-name { color: #4A154B; }

/* Checklist */
.ipc-checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ipc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 600;
}
.ipc-pink .ipc-checklist li { color: #6D214F; }
.ipc-blue .ipc-checklist li { color: #1E3A8A; }
.ipc-purple .ipc-checklist li { color: #4C1D95; }

.ipc-chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.ipc-pink .ipc-chk { background: #FF80AB; color: #fff; }
.ipc-blue .ipc-chk { background: #60A5FA; color: #fff; }
.ipc-purple .ipc-chk { background: #A78BFA; color: #fff; }

/* Image Box */
.ipc-img-box {
  margin: 16px 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
}

.ipc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.info-price-card:hover .ipc-img-box img {
  transform: scale(1.04);
}

/* Floating Badges/Bubbles on Images */
.ipc-bubble {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  pointer-events: none;
}
.bubble-pink {
  background: rgba(255, 255, 255, 0.96);
  color: #D81B60;
  border: 1.5px solid #FF80AB;
}
.bubble-purple {
  background: linear-gradient(135deg, #FF4081, #7C3AED);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

/* Action Button */
.ipc-cta {
  display: block;
  text-align: center;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 13px 20px;
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: auto;
}
.ipc-cta-pink {
  background: linear-gradient(135deg, #FF6584, #E91E63);
  color: #fff;
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.32);
}
.ipc-cta-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(233, 30, 99, 0.45);
}

.ipc-cta-blue {
  background: linear-gradient(135deg, #3B99FF, #1976D2);
  color: #fff;
  box-shadow: 0 6px 18px rgba(25, 118, 210, 0.32);
}
.ipc-cta-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(25, 118, 210, 0.45);
}

.ipc-cta-purple {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  color: #fff;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.38);
}
.ipc-cta-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(124, 58, 237, 0.5);
}

/* Strip Quà Tặng / Tình Huống Mua */
.ipc-gift-strip {
  margin-top: 36px;
  background: linear-gradient(135deg, #FFF3F7 0%, #F6EEFF 50%, #EBF6FF 100%);
  border: 2.5px dashed #D8B4E2;
  border-radius: 24px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.1);
}

.ipcs-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ipcs-icon {
  font-size: 36px;
  line-height: 1;
}
.ipcs-text {
  display: flex;
  flex-direction: column;
}
.ipcs-text strong {
  font-size: 16px;
  font-weight: 900;
  color: #6B21A8;
  letter-spacing: 0.02em;
}
.ipcs-text span {
  font-size: 14px;
  font-weight: 700;
  color: #EC4899;
}

.ipcs-mid {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.ipcs-chip {
  background: #ffffff;
  border: 1.5px solid #F0DFF5;
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 700;
  color: #4A154B;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ipcs-right {
  flex-shrink: 0;
}
.ipcs-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FF4B8B 0%, #9333EA 100%);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  padding: 13px 24px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(255, 75, 139, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.ipcs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 75, 139, 0.48);
}

/* Tablet (768px - 1024px) */
@media (max-width: 992px) {
  .info-price-grid {
    gap: 14px;
  }
  .info-price-card {
    padding: 18px 14px 16px;
    border-radius: 22px;
  }
  .ipc-price {
    font-size: 28px;
  }
  .ipc-name {
    font-size: 14px;
    min-height: 36px;
  }
  .ipc-checklist li {
    font-size: 12px;
    gap: 6px;
  }
  .ipc-bubble {
    font-size: 11px;
    padding: 4px 10px;
  }
  .ipc-cta {
    font-size: 13px;
    padding: 11px 14px;
  }
  .ipc-gift-strip {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 14px;
  }
  .ipcs-left {
    flex-direction: column;
    gap: 4px;
  }
}

/* Mobile (390px and under) */
@media (max-width: 680px) {
  .info-price-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 22px;
  }
  .info-price-card {
    padding: 22px 18px;
  }
  .ipc-price {
    font-size: 36px;
  }
  .ipc-name {
    font-size: 16px;
    min-height: auto;
  }
  .ipc-checklist li {
    font-size: 13.5px;
  }
  .ipc-img-box {
    aspect-ratio: 16 / 11;
  }
  .ipc-bubble {
    font-size: 12px;
    padding: 5px 12px;
  }
  .ipc-cta {
    font-size: 14px;
    padding: 13px 20px;
  }
  .ipcs-mid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 8px;
  }
  .ipcs-chip {
    text-align: center;
    padding: 8px 10px;
    font-size: 13px;
  }
  .ipcs-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 14px;
  }
}

/* ── PER-PRODUCT VERSION SELECTOR (STEP 2) ──────────────────────── */
.per-prod-ver-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ppv-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.7);
  gap: 8px;
}

.ppv-empty-icon {
  font-size: 32px;
}

.ppv-empty p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.ppv-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  transition: border-color .2s;
}

.ppv-card:hover {
  border-color: rgba(255, 79, 135, 0.4);
}

.ppv-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ppv-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1.5px solid rgba(255, 79, 135, 0.4);
  flex-shrink: 0;
}

.ppv-meta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.ppv-name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ppv-qty-badge {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 79, 135, 0.2);
  border: 1px solid rgba(255, 79, 135, 0.4);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.ppv-qty-badge strong {
  color: var(--yellow);
  font-size: 13px;
}

.ppv-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ppv-opt {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ppv-opt:hover {
  border-color: var(--pink-lt);
  background: rgba(255, 79, 135, 0.08);
}

.ppv-opt.active {
  border-color: var(--pink);
  background: rgba(255, 79, 135, 0.18);
  box-shadow: 0 0 0 2px rgba(255, 79, 135, 0.35);
}

.ppv-opt-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.ppv-opt-price {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}

.ppv-opt.active .ppv-opt-price {
  color: var(--yellow);
}

.ppv-opt-check {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ppv-opt.active .ppv-opt-check {
  display: flex;
}

.ppv-opt-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.ppv-opt.active .ppv-opt-desc {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

@media (max-width: 680px) {
  .ppv-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .ppv-opt {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
  }
  .ppv-opt-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}

/* ── WHY CHOOSE BUNNY PAPER SECTION ────────────────────────────── */
.why-bunny-section {
  padding: clamp(40px, 6vw, 68px) 0 clamp(24px, 3.5vw, 40px);
  background: linear-gradient(180deg, rgba(255, 240, 245, 0.45) 0%, rgba(255, 248, 243, 0.7) 100%);
  position: relative;
}

.wbp-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 44px);
}

.wbp-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.wbp-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.wbp-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: clamp(15px, 1.35vw, 17px);
  color: #554068;
  line-height: 1.65;
}

.wbp-intro-highlight {
  font-weight: 800;
  color: #D81B60;
  font-size: clamp(16px, 1.4vw, 18px);
}

/* 6-Card Grid */
.wbp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.wbp-card {
  background: #FFFFFF;
  border: 1.5px solid #FFD6E5;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255, 105, 150, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wbp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 105, 150, 0.16);
  border-color: #FFAEC9;
}

.wbp-card-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 2px;
}

.wbp-card-title {
  font-size: clamp(15.5px, 1.3vw, 17px);
  font-weight: 900;
  color: var(--purple);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.wbp-card-desc {
  font-size: clamp(14px, 1.2vw, 15.5px);
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

/* Conclusion Box */
.wbp-conclusion {
  background: linear-gradient(135deg, #FFF0F5 0%, #F5EAFF 100%);
  border: 2px solid #FFC2D8;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vw, 36px) clamp(20px, 4vw, 44px);
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 79, 135, 0.08);
  max-width: 960px;
  margin: 8px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wbp-concl-quote {
  font-size: clamp(16px, 1.5vw, 18.5px);
  font-weight: 800;
  color: #2D1854;
  line-height: 1.5;
}

.wbp-concl-actions {
  display: inline-block;
  color: #D81B60;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.wbp-concl-sub {
  font-size: clamp(14px, 1.2vw, 15.5px);
  color: #6B4E82;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .wbp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .wbp-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .wbp-card {
    padding: 18px 16px;
  }
  .wbp-conclusion {
    padding: 20px 16px;
  }
}

/* ── BACK TO TOP BUTTON ────────────────────────────────────────── */
.btn-back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF4F87 0%, #9B6DFF 100%);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(255, 79, 135, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 180;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.9);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.btn-back-to-top:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 28px rgba(255, 79, 135, 0.55);
}

.btn-back-to-top:active {
  transform: translateY(0) scale(0.96);
}

.btt-arrow {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}

@media (max-width: 639px) {
  .btn-back-to-top {
    bottom: 84px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
  .btt-arrow {
    font-size: 20px;
  }
}

/* ================================================================
   BUNNY TRUST STRIP – UX #4
   Compact, synchronized peace-of-mind strip before Order Form
   ================================================================ */
.bunny-trust {
  background: #FFFFFF;
  border-top: 2px solid rgba(255, 47, 146, 0.20);
  border-bottom: 2px solid rgba(173, 50, 244, 0.22);
  box-shadow: 0 4px 20px rgba(173, 50, 244, 0.08);
  padding: clamp(28px, 4vw, 40px) 0 clamp(24px, 3.5vw, 36px);
  position: relative;
  z-index: 2;
}

.bunny-trust-container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(16px, 4vw, 40px);
  box-sizing: border-box;
}

.bunny-trust-head {
  text-align: center;
  margin-bottom: clamp(16px, 2.4vw, 24px);
}

.bunny-trust-title {
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 800;
  color: #2D1854;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bunny-trust-sub {
  font-size: clamp(13px, 1.4vw, 14.5px);
  color: var(--text-soft);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* 4-Item Grid */
.bunny-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
}

/* Individual Trust Card */
.bunny-trust-item {
  background: #FFFFFF;
  border: 1.5px solid rgba(255, 47, 146, 0.16);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  box-shadow: 0 4px 14px rgba(173, 50, 244, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bunny-trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 47, 146, 0.12);
  border-color: rgba(255, 47, 146, 0.35);
}

.bunny-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFF0F6 0%, #F5ECFF 100%);
  border: 1px solid rgba(173, 50, 244, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.bunny-trust-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 100%;
}

.bunny-trust-item-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #AD32F4;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.25;
}

.bunny-trust-item-desc {
  font-size: clamp(11.5px, 0.95vw, 13px);
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

/* Hotline / Zalo contact row */
.bunny-trust-contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: clamp(16px, 2.2vw, 24px);
  position: relative;
}

.bunny-trust-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 28px;
  background: #FFFFFF;
  border: 1.5px solid rgba(173, 50, 244, 0.28);
  border-radius: 999px;
  box-shadow: 0 3px 14px rgba(173, 50, 244, 0.08);
  font-size: 14px;
  font-weight: 800;
  color: #2D1854;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.bunny-trust-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 47, 146, 0.18);
  border-color: #FF2F92;
  color: #FF2F92;
}

.bunny-trust-contact-btn:active {
  transform: translateY(0);
}

.bunny-trust-contact-icon {
  font-size: 16px;
  line-height: 1;
  color: #FF2F92;
}

.bunny-trust-contact-text {
  letter-spacing: 0.01em;
}

.bunny-trust-contact-arrow {
  font-size: 15px;
  line-height: 1;
  color: #FF2F92;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.bunny-trust-contact-btn:hover .bunny-trust-contact-arrow {
  transform: translateX(4px);
}

/* Tooltip on Desktop hover */
.bunny-trust-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #2D1854;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 14px rgba(45, 24, 84, 0.25);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.bunny-trust-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #2D1854 transparent transparent transparent;
}

.bunny-trust-contact-btn:hover .bunny-trust-tooltip,
.bunny-trust-contact-btn:focus-visible .bunny-trust-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Sub-text below button */
.bunny-trust-contact-sub {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 600;
  margin-top: 6px;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .bunny-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .bunny-trust-item {
    flex-direction: row;
    text-align: left;
    padding: 14px 16px;
    gap: 12px;
  }
  .bunny-trust-content {
    align-items: flex-start;
  }
  .bunny-trust-item-desc {
    font-size: 12.5px;
  }
}

@media (max-width: 580px) {
  .bunny-trust {
    padding: 24px 0 20px;
  }
  .bunny-trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .bunny-trust-item {
    padding: 12px 14px;
    border-radius: 14px;
    gap: 12px;
  }
  .bunny-trust-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 10px;
  }
  .bunny-trust-item-title {
    font-size: 13px;
  }
  .bunny-trust-item-desc {
    font-size: 12px;
  }
  .bunny-trust-contact-wrap {
    margin-top: 14px;
  }
  .bunny-trust-contact-btn {
    padding: 8px 22px;
    font-size: 13.5px;
  }
  .bunny-trust-contact-sub {
    font-size: 11.5px;
  }
  .bunny-trust-tooltip {
    display: none !important;
  }
}