/* ============================================================
   HEY!BEAR — sections & components
   ============================================================ */

/* ---------- Announcement marquee ---------- */
.topbar {
  background: var(--pink); color: #fff; overflow: hidden;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .02em;
}
.topbar-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 26s linear infinite; }
.topbar-track span { padding: 9px 26px; display: inline-flex; align-items: center; gap: 26px; }
.topbar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); display: inline-block; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; gap: 28px; height: 76px; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink);
  padding: 9px 14px; border-radius: var(--r-pill); transition: background .15s, color .15s;
}
.nav a:hover, .nav a.active { background: var(--pink-50); color: var(--pink); }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; box-shadow: var(--sh-sm); position: relative; transition: transform .15s;
}
.icon-btn:hover { transform: translateY(-2px) scale(1.05); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; padding: 0 5px;
  border-radius: 999px; background: var(--pink); color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 12px; display: grid; place-items: center; border: 2px solid #fff;
}
.burger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; background:
  radial-gradient(120% 90% at 80% -10%, var(--pink-50) 0%, transparent 55%),
  radial-gradient(100% 80% at -10% 110%, var(--blue) 0%, transparent 50%),
  #fff;
  overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: clamp(28px,5vw,60px) 0 clamp(40px,6vw,80px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; background: #fff; color: var(--pink);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  padding: 8px 16px 8px 10px; border-radius: 999px; box-shadow: var(--sh-sm); margin-bottom: 22px;
}
.hero-badge .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--t-creatina); box-shadow: 0 0 0 0 rgba(255,111,97,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,111,97,.6);} 70%{box-shadow:0 0 0 10px rgba(255,111,97,0);} 100%{box-shadow:0 0 0 0 rgba(255,111,97,0);} }
.hero h1 { color: var(--ink); }
.hero h1 em { font-style: normal; color: var(--pink); position: relative; }
.hero-sub { margin: 22px 0 30px; max-width: 460px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.stars { color: #FFB400; font-size: 18px; letter-spacing: 2px; }
.hero-proof small { color: var(--ink-soft); font-size: 14px; }

.hero-photo { position: relative; }
.hero-photo .photo-card {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg);
  border: 8px solid #fff; transform: rotate(1.5deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.float-chip {
  position: absolute; background: #fff; border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--sh-md); font-family: var(--font-display); font-weight: 700; z-index: 3;
  display: flex; align-items: center; gap: 10px;
}
.float-chip .big { font-size: 26px; color: var(--pink); line-height: 1; }
.float-chip small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 11px; color: var(--ink-soft); }

/* ---------- Benefits strip ---------- */
.benefits { background: var(--blue); }
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.benefit {
  background: #fff; border-radius: var(--r-lg); padding: 30px 26px; text-align: left;
  box-shadow: var(--sh-sm); transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.benefit:hover { transform: translateY(-8px) rotate(-1deg); }
.benefit .b-ic {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  background: var(--pink-50); margin-bottom: 18px;
}
.benefit h3 { font-size: 21px; margin-bottom: 6px; }
.benefit p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* ---------- Comparativo ---------- */
.compare { background:
  radial-gradient(90% 70% at 100% 0%, var(--pink-50), transparent 60%), #fff; }
.compare-card {
  background: #fff; border-radius: var(--r-xl); box-shadow: var(--sh-md);
  overflow: hidden; border: 1px solid var(--line); max-width: 920px; margin: 0 auto;
}
.compare-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; }
.compare-row > div {
  padding: 20px 24px; display: flex; align-items: center; gap: 10px; font-size: 17px;
  border-top: 1px solid var(--line);
}
.compare-row.head > div { border-top: none; font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.cc-label { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.cc-them { background: var(--gray); color: var(--ink-soft); }
.cc-them .cross { color: #C9BFC6; font-weight: 800; }
.cc-us { background: var(--pink); color: #fff; font-family: var(--font-display); font-weight: 700; }
.cc-us .check { color: #fff; font-weight: 800; }
.compare-row .cc-them { border-top-color: #e6e6e6; }
.compare-row .cc-us { border-top-color: rgba(255,255,255,.22); }
.compare-row.head .cc-them { color: var(--ink-soft); }

/* ---------- Lifestyle ---------- */
.lifestyle-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.life {
  border-radius: var(--r-lg); overflow: hidden; position: relative; box-shadow: var(--sh-sm);
}
.life.tall { grid-row: span 2; }
.life.wide { grid-column: span 2; }
.life .life-label {
  position: absolute; left: 14px; bottom: 14px; background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--pink);
  padding: 7px 14px; border-radius: 999px;
}

/* ---------- Placeholder (striped) ---------- */
.ph {
  width: 100%; height: 100%; position: relative; display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg, var(--ph-a,#FFE3F0) 0 14px, var(--ph-b,#FFD0E6) 14px 28px);
}
.ph .ph-tag {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; letter-spacing: .04em;
  color: var(--pink-700); background: rgba(255,255,255,.78); padding: 5px 10px; border-radius: 8px;
  text-transform: uppercase;
}

/* ---------- Video feature (reel) ---------- */
.videofeat-sec { background: radial-gradient(80% 70% at 0% 50%, var(--pink-50), transparent 60%), #fff; }
.videofeat { display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.reel {
  width: min(330px, 78vw); aspect-ratio: 9/16; border-radius: 34px; overflow: hidden;
  box-shadow: var(--sh-lg); border: 7px solid #fff; position: relative; background: #1a1020; cursor: pointer;
}
.reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(26,16,32,.22); }
.reel-play span { width: 66px; height: 66px; border-radius: 50%; background: rgba(255,255,255,.94); display: grid; place-items: center; color: var(--pink); box-shadow: var(--sh-md); }
.reel-mute {
  position: absolute; bottom: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(26,16,32,.5); backdrop-filter: blur(6px); display: grid; place-items: center; font-size: 17px;
  transition: transform .15s;
}
.reel-mute:hover { transform: scale(1.1); }
.reel-tag {
  position: absolute; top: 14px; left: 14px; font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: #fff; background: rgba(26,16,32,.4); backdrop-filter: blur(6px); padding: 6px 12px; border-radius: 999px;
}
@media (max-width: 1000px) {
  .videofeat { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .videofeat-copy { display: flex; flex-direction: column; align-items: center; }
}

/* ---------- Product line cards ---------- */
.line-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.pcard {
  background: #fff; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-sm);
  border: 1px solid var(--line); transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s;
  display: flex; flex-direction: column; cursor: pointer; position: relative;
}
.pcard:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }
.pcard-media { aspect-ratio: 4/4.4; position: relative; overflow: hidden; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pcard:hover .pcard-media img { transform: scale(1.05); }
.pcard-flag {
  position: absolute; top: 14px; left: 14px; font-family: var(--font-display); font-weight: 700;
  font-size: 12px; color: #fff; padding: 5px 12px; border-radius: 999px;
}
.pcard-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pcard-body h3 { font-size: 23px; }
.pcard-goal { font-size: 14px; color: var(--ink-soft); }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.pcard-price { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--ink); }
.pcard-add {
  width: 44px; height: 44px; border-radius: 50%; background: var(--pink); color: #fff;
  display: grid; place-items: center; font-size: 24px; font-family: var(--font-display); font-weight: 700;
  box-shadow: 0 6px 0 var(--pink-700); transition: transform .15s;
}
.pcard-add:hover { transform: scale(1.1); }
.pcard-add:active { transform: scale(.9) translateY(3px); box-shadow: 0 2px 0 var(--pink-700); }

/* ---------- Social proof ---------- */
.proof { background: var(--gray); }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ugc { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4; position: relative; box-shadow: var(--sh-sm); }
.ugc .play { position: absolute; inset: 0; display: grid; place-items: center; }
.ugc .play span { width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--pink); }
.review {
  background: #fff; border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; gap: 12px;
}
.review .stars { font-size: 16px; }
.review p { margin: 0; font-size: 16px; }
.review .who { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review .av { width: 40px; height: 40px; border-radius: 50%; }
.review .who b { font-family: var(--font-display); font-size: 15px; }
.review .who small { color: var(--ink-soft); font-size: 13px; display: block; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%; text-align: left; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); gap: 16px;
}
.faq-q .pm { width: 32px; height: 32px; flex: none; border-radius: 50%; background: var(--pink-50); color: var(--pink); display: grid; place-items: center; font-size: 22px; transition: transform .25s, background .2s; }
.faq-item.open .pm { transform: rotate(135deg); background: var(--pink); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a div { padding: 0 26px 24px; color: var(--ink-soft); font-size: 16px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--pink); color: #fff; border-radius: var(--r-xl); padding: clamp(40px,6vw,72px); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.9); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { font-family: var(--font-display); font-size: 16px; margin: 0 0 16px; color: var(--pink-light); }
.footer a { display: block; color: rgba(255,255,255,.75); font-size: 15px; padding: 5px 0; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: 14px; gap: 16px; flex-wrap: wrap; }

/* ---------- Cart drawer ---------- */
.scrim { position: fixed; inset: 0; background: rgba(42,31,43,.42); backdrop-filter: blur(3px); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .3s; }
.scrim.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw; background: #fff; z-index: 95;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.5,.1,.2,1); display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(201,23,110,.18);
}
.drawer.show { transform: none; }
.drawer-head { padding: 24px 24px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 24px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; gap: 14px; align-items: center; }
.cart-item .ci-media { width: 70px; height: 78px; border-radius: 14px; overflow: hidden; flex: none; box-shadow: var(--sh-sm); }
.cart-item .ci-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-info b { font-family: var(--font-display); font-size: 16px; display: block; }
.cart-item .ci-info small { color: var(--ink-soft); font-size: 13px; }
.qty { display: inline-flex; align-items: center; gap: 0; border: 1.5px solid var(--line); border-radius: 999px; margin-top: 8px; }
.qty button { width: 28px; height: 28px; font-size: 18px; color: var(--pink); font-weight: 700; display: grid; place-items: center; }
.qty span { min-width: 26px; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.ci-price { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.ci-remove { color: var(--ink-soft); font-size: 12px; text-decoration: underline; margin-top: 6px; }
.drawer-empty { flex: 1; display: grid; place-items: center; text-align: center; color: var(--ink-soft); padding: 40px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 22px 24px 26px; }
.drawer-foot .row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.drawer-foot .row b { font-family: var(--font-display); font-size: 26px; }
.drawer-foot small { color: var(--ink-soft); font-size: 13px; display: block; text-align: center; margin-top: 12px; }
.free-bar { height: 8px; background: var(--gray); border-radius: 999px; overflow: hidden; margin: 4px 0 8px; }
.free-bar i { display: block; height: 100%; background: var(--pink); border-radius: 999px; transition: width .4s; }

/* ---------- Product page ---------- */
.pdp { padding-top: 40px; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pdp-gallery { position: sticky; top: 96px; }
.pdp-main { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); border: 8px solid #fff; aspect-ratio: 1/1.04; }
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pdp-thumbs button { width: 78px; height: 84px; border-radius: 16px; overflow: hidden; border: 3px solid transparent; box-shadow: var(--sh-sm); }
.pdp-thumbs button.active { border-color: var(--pink); }
.pdp-thumbs img, .pdp-thumbs .ph { width: 100%; height: 100%; object-fit: cover; }
.pdp-info h1 { font-size: clamp(34px,4.5vw,52px); color: var(--ink); }
.pdp-flavor { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: 15px; margin: 10px 0 0; }
.pdp-price { font-family: var(--font-display); font-weight: 800; font-size: 34px; display: flex; align-items: baseline; gap: 12px; margin: 20px 0; }
.pdp-price s { color: var(--ink-soft); font-size: 22px; font-weight: 600; }
.pdp-price .save { font-size: 13px; background: var(--pink); color: #fff; padding: 4px 10px; border-radius: 999px; }
.pdp-bullets { display: flex; flex-direction: column; gap: 10px; margin: 22px 0; }
.pdp-bullets li { list-style: none; display: flex; align-items: center; gap: 12px; font-size: 16px; }
.pdp-bullets .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--pink-50); color: var(--pink); display: grid; place-items: center; flex: none; font-weight: 800; }
.pdp-buy { display: flex; gap: 14px; align-items: center; margin: 24px 0; }
.flavor-picker { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.fp-label { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink-soft); }
.fp-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px 9px 12px; border-radius: var(--r-pill);
  border: 2px solid var(--line); background: #fff; font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--ink); transition: border-color .15s, transform .15s, box-shadow .15s;
}
.fp-chip:hover { transform: translateY(-2px); }
.fp-chip .fp-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--fc); box-shadow: inset -2px -3px 4px rgba(0,0,0,.18); }
.fp-chip.active { border-color: var(--fc); box-shadow: 0 0 0 3px color-mix(in srgb, var(--fc) 18%, transparent); }
.pdp-buy .qty { transform: scale(1.15); margin: 0 6px; }
.acc { border-top: 1px solid var(--line); }
.acc-q { width: 100%; text-align: left; padding: 18px 4px; display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s; color: var(--ink-soft); font-size: 15px; }
.acc-a div { padding: 0 4px 18px; }

.nova-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--blue-ink); background: var(--blue); padding: 5px 12px; border-radius: 999px; }

/* ---------- Nutrition table ---------- */
.nutri { border: 2px solid var(--ink); border-radius: 16px; overflow: hidden; max-width: 460px; background: #fff; }
.nutri-head { background: var(--pink); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 18px; text-align: center; padding: 12px; letter-spacing: .02em; }
.nutri-meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 4px; padding: 12px 16px; font-size: 14px; color: var(--ink); border-bottom: 6px solid var(--ink); font-family: var(--font-display); font-weight: 600; }
.nutri-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.nutri-table th { font-family: var(--font-display); font-weight: 800; text-align: right; padding: 9px 16px; color: var(--ink); }
.nutri-table th:first-child { text-align: left; }
.nutri-table thead tr { border-bottom: 2px solid var(--ink); }
.nutri-table td { padding: 9px 16px; border-bottom: 1px solid var(--line); text-align: right; color: var(--ink); }
.nutri-table td:first-child { text-align: left; font-weight: 600; }
.nutri-table tr.sub td:first-child { padding-left: 30px; font-weight: 400; color: var(--ink-soft); }
.nutri-note, .nutri-star, .nutri-ing { padding: 10px 16px 0; font-size: 12.5px; color: var(--ink-soft); line-height: 1.45; margin: 0; }
.nutri-star { border-top: 2px solid var(--ink); padding-top: 10px; margin-top: 6px; }
.nutri-ing { color: var(--ink); padding-top: 12px; }
.nutri-free { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 16px 16px; }
.nutri-free span { background: var(--pink-50); color: var(--pink-700); font-family: var(--font-display); font-weight: 700; font-size: 12px; padding: 5px 12px; border-radius: 999px; }

/* ---------- Feedbacks (UGC wall) ---------- */
.fb-stats { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.fb-stat { background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-sm); padding: 18px 28px; min-width: 150px; }
.fb-stat b { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--pink); display: block; }
.fb-stat span { font-size: 14px; color: var(--ink-soft); }
.fb-masonry { column-count: 4; column-gap: 18px; }
.fb-item { break-inside: avoid; margin-bottom: 18px; border-radius: 22px; overflow: hidden; box-shadow: var(--sh-md); position: relative; background: #1a1020; }
.fb-item img, .fb-item video { width: 100%; display: block; }
.fb-video { cursor: pointer; }
.fb-play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(26,16,32,.18); pointer-events: none; }
.fb-play span { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--pink); box-shadow: var(--sh-md); }
.fb-mute { position: absolute; bottom: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; background: rgba(26,16,32,.5); backdrop-filter: blur(6px); display: grid; place-items: center; font-size: 16px; z-index: 3; transition: transform .15s; }
.fb-mute:hover { transform: scale(1.1); }
.fb-badge { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: #fff; background: rgba(26,16,32,.42); backdrop-filter: blur(6px); padding: 5px 11px 5px 8px; border-radius: 999px; }
@media (max-width: 1000px) { .fb-masonry { column-count: 3; } }
@media (max-width: 720px) { .fb-masonry { column-count: 2; column-gap: 12px; } .fb-item { margin-bottom: 12px; border-radius: 16px; } }

/* ---------- Bear pack banner ---------- */
.pack { background: linear-gradient(120deg, var(--pink) 0%, var(--pink-600) 100%); color: #fff; border-radius: var(--r-xl); padding: clamp(34px,5vw,56px); position: relative; overflow: hidden; }
.pack h2 { color: #fff; }
.pack .pack-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px; align-items: center; position: relative; z-index: 2; }
.pack-price { font-family: var(--font-display); font-weight: 800; font-size: 48px; }
.pack-price s { font-size: 24px; opacity: .7; font-weight: 600; margin-right: 12px; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 120%); background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 999px; font-family: var(--font-display); font-weight: 700; z-index: 120; box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 10px; transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.toast.show { transform: translate(-50%, 0); }
.toast .tdot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 460px; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .line-grid { grid-template-columns: repeat(2,1fr); }
  .lifestyle-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; }
  .pack .pack-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .burger { display: grid; }
}
@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-row .cc-label { grid-column: 1 / -1; background: var(--pink-50); }
  .compare-row.head .cc-label { display: none; }
  .compare-row > div { padding: 15px 16px; font-size: 15px; }
  .benefits-grid, .lifestyle-grid { grid-template-columns: 1fr; }
  .line-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 18px; }
  .float-chip { display: none; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}
