/** Shopify CDN: Minification failed

Line 362:37 Expected identifier but found whitespace
Line 362:38 Unexpected "\"\""
Line 362:44 Unterminated string token
Line 876:1 Expected "}" to go with "{"

**/
/* ============================================
   Backseat Buddy — Premium DTC Parent Storefront
   Cream base + Charcoal type + Coral CTA
   ============================================ */

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.015em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.8rem); font-weight: 700; letter-spacing: -.025em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 700; letter-spacing: -.02em; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; }

.skip-to-content { position: absolute; left: -9999px; }
.skip-to-content:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 9999; border-radius: 999px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: .005em;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  border: 0; cursor: pointer; text-decoration: none;
  font-size: .98rem;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px -4px rgba(231,111,81,.45), 0 2px 0 rgba(0,0,0,.06);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -4px rgba(231,111,81,.55), 0 2px 0 rgba(0,0,0,.06); }
.btn--primary:active { transform: translateY(1px); }
.btn--ghost {
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 2px 0 rgba(0,0,0,.05), inset 0 0 0 1.5px rgba(31,31,35,.12);
}
.btn--ghost:hover { transform: translateY(-2px); box-shadow: 0 6px 16px -4px rgba(0,0,0,.12); }
.btn--xl { padding: 1.05rem 2rem; font-size: 1.05rem; font-weight: 700; }
.btn--block { width: 100%; }

/* ============ HEADER ============ */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--color-bg); border-bottom: 1px solid rgba(31,31,35,.06); }
.announcement {
  background: var(--color-accent);
  color: #fff; overflow: hidden;
  font-weight: 500; font-size: .85rem;
  letter-spacing: .01em;
}
.announcement__track {
  display: flex; gap: 3rem; padding: .6rem 1rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.announcement__item { flex: none; }
.announcement__item::before { content: "✓ "; color: var(--color-primary); font-weight: 700; margin-right: .15rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 1.5rem;
  padding: 1rem 1.5rem;
}
.header__logo-text .logo-mark {
  font-family: var(--font-heading); font-weight: 700;
  color: var(--color-accent);
  font-size: 1.5rem; letter-spacing: -.02em;
  display: inline-block;
}
.header__logo-text .logo-mark em { font-style: italic; color: var(--color-primary); font-weight: 600; }
.header__nav ul { list-style: none; display: flex; gap: 1.75rem; margin: 0; padding: 0; }
.header__link { font-weight: 500; position: relative; padding: .25rem 0; font-size: .95rem; color: var(--color-text); opacity: .8; transition: opacity .2s; }
.header__link:hover { opacity: 1; }
.header__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px;
  height: 2px; background: var(--color-primary); border-radius: 2px;
  transition: right .2s ease;
}
.header__link:hover::after { right: 0; }
.header__actions { display: flex; gap: .35rem; align-items: center; }
.header__icon {
  position: relative; font-size: 1.05rem;
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; transition: background .2s ease;
  color: var(--color-text);
}
.header__icon:hover { background: var(--color-secondary); }
.header__cart-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--color-primary); color: #fff;
  font-size: .65rem; font-weight: 700;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--color-bg);
}
.header__menu-toggle { display: none; flex-direction: column; gap: 4px; width: 28px; }
.header__menu-toggle span { display: block; height: 2px; background: var(--color-text); border-radius: 2px; }

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header__menu-toggle { display: inline-flex; }
  .header__nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-bg); padding: 1.25rem; display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(31,31,35,.06);
  }
  .header__nav.is-open { display: block; }
  .header__nav ul { flex-direction: column; gap: 1rem; }
}

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  background: var(--color-secondary);
  max-width: 1440px; margin: 1rem auto 0;
  border-radius: 0;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem;
  min-height: 540px;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .85rem;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(31,31,35,.1);
  border-radius: 999px;
  font-weight: 600; font-size: .8rem;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
  letter-spacing: .02em;
}
.hero-title {
  font-weight: 700; letter-spacing: -.025em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.hero-title em { font-style: italic; font-weight: 500; color: var(--color-primary); }
.hero-subtitle { font-size: 1.1rem; max-width: 44ch; margin: 0 0 1.75rem; opacity: .82; line-height: 1.55; }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 1.25rem; align-items: center; margin-top: 1.5rem; flex-wrap: wrap; font-size: .85rem; opacity: .8; }
.hero-trust__stars { color: #e9b949; letter-spacing: .05em; font-size: 1rem; }
.hero-trust__item { display: inline-flex; align-items: center; gap: .35rem; }

.hero-image { position: relative; z-index: 1; }
.hero-image img { border-radius: 24px; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: 0 20px 60px -20px rgba(31,31,35,.35); }
.hero-image--placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #fff, var(--color-secondary));
  border-radius: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem; color: var(--color-accent);
  box-shadow: 0 20px 60px -20px rgba(31,31,35,.2);
  border: 1px dashed rgba(31,31,35,.15);
}
.hero-image--placeholder .ph-emoji { font-size: 5rem; margin-bottom: .5rem; }
.hero-image--placeholder .ph-label { font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; }
.hero-image--placeholder .ph-hint { font-size: .85rem; opacity: .55; margin-top: .5rem; }

.hero-bonus-badge {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 3;
  background: var(--color-primary); color: #fff;
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: .5rem;
  font-family: var(--font-heading); font-weight: 700;
  transform: rotate(-12deg);
  box-shadow: 0 10px 24px -6px rgba(231,111,81,.5);
  font-size: .75rem; line-height: 1.15;
}
.hero-bonus-badge strong { display: block; font-size: 1rem; margin: .15rem 0; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: left; padding: 2.5rem 1.5rem; gap: 2rem; }
  .hero-cta { justify-content: flex-start; }
  .hero-image { order: -1; }
  .hero-image img, .hero-image--placeholder { aspect-ratio: 4/3; }
  .hero-bonus-badge { width: 88px; height: 88px; top: 1rem; right: 1rem; font-size: .65rem; }
  .hero-bonus-badge strong { font-size: .85rem; }
}

/* ============ SECTIONS ============ */
section { max-width: 1280px; margin: 4.5rem auto; padding: 0 1.5rem; }
.section-head { text-align: center; margin-bottom: 2.5rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head p { opacity: .72; max-width: 60ch; margin: 0 auto; font-size: 1.05rem; }
.section-head--split {
  display: flex; justify-content: space-between; align-items: flex-end; text-align: left;
}
.section-head--split h2 { margin-bottom: 0; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--color-primary);
  margin-bottom: .85rem;
}
.section-link { font-weight: 600; color: var(--color-primary); }

/* ============ TRUST STRIP ============ */
.trust-strip { background: #fff; border-top: 1px solid rgba(31,31,35,.06); border-bottom: 1px solid rgba(31,31,35,.06); padding: 1.5rem; max-width: none; margin: 0; }
.trust-strip__inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; gap: 2rem; flex-wrap: wrap; padding: 0 1rem; }
.trust-strip__item { display: flex; align-items: center; gap: .65rem; font-size: .9rem; font-weight: 500; color: var(--color-accent); opacity: .85; }
.trust-strip__icon { font-size: 1.35rem; color: var(--color-primary); }
.trust-strip__eyebrow { width: 100%; text-align: center; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; opacity: .55; margin-bottom: .25rem; }

/* ============ PROBLEM / AGITATION ============ */
.pa-section { background: var(--color-accent); color: #fff; padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem); border-radius: 28px; max-width: 1280px; margin: 4.5rem auto; }
.pa-section h2 { color: #fff; text-align: center; max-width: 22ch; margin-left: auto; margin-right: auto; }
.pa-section .section-eyebrow { color: var(--color-primary); }
.pa-section .section-head p { color: rgba(255,255,255,.7); }
.pa-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; list-style: none; padding: 0; margin: 2rem 0 0;
}
.pa-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  display: flex; gap: .85rem; align-items: flex-start;
}
.pa-item__icon { color: var(--color-primary); font-size: 1.3rem; flex-shrink: 0; line-height: 1; margin-top: .15rem; }
.pa-item p { margin: 0; line-height: 1.5; font-size: .98rem; }

/* ============ MECHANISM (Solution) ============ */
.mechanism { padding: 0; }
.mechanism .section-head { margin-bottom: 3rem; }
.mechanism-pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.pillar {
  background: #fff; border-radius: 22px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(31,31,35,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -16px rgba(31,31,35,.18); }
.pillar__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-secondary); color: var(--color-accent);
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  margin-bottom: 1rem;
}
.pillar h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.pillar p { font-size: .92rem; opacity: .75; margin: 0; line-height: 1.55; }

/* ============ BENEFIT GRID ============ */
.benefit-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.benefit {
  background: #fff; border-radius: 22px;
  padding: 2rem 1.5rem;
  text-align: left;
  border: 1px solid rgba(31,31,35,.06);
}
.benefit__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--color-secondary);
  font-size: 1.4rem; margin-bottom: 1rem;
}
.benefit h3 { margin-bottom: .4rem; font-size: 1.1rem; }
.benefit p { font-size: .92rem; opacity: .75; margin: 0; }

/* ============ HOW IT WORKS / 3-STEP ============ */
.howto-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative;
}
.howto-step { text-align: center; padding: 1.5rem 1rem; }
.howto-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px -6px rgba(231,111,81,.45);
}
.howto-step h3 { margin-bottom: .5rem; }
.howto-step p { font-size: .92rem; opacity: .75; }
@media (max-width: 700px) { .howto-steps { grid-template-columns: 1fr; gap: 1rem; } }

/* ============ BUNDLE OFFER ============ */
.bundle-offer { background: var(--color-secondary); border-radius: 32px; padding: clamp(2.5rem, 5vw, 4rem); max-width: 1280px; margin: 4.5rem auto; }
.bundle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.bundle-stack { display: flex; flex-direction: column; gap: 1rem; }
.bundle-stack__item {
  background: #fff; border-radius: 18px; padding: 1.15rem 1.5rem;
  display: flex; gap: 1rem; align-items: center;
  border: 1px solid rgba(31,31,35,.06);
}
.bundle-stack__check { width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: var(--color-primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.bundle-stack__label { font-weight: 600; flex: 1; }
.bundle-stack__value { font-weight: 600; opacity: .55; font-variant-numeric: tabular-nums; }
.bundle-stack__total {
  background: var(--color-accent); color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading);
}
.bundle-stack__total-label { font-size: 1rem; }
.bundle-stack__total-price { font-size: 1.6rem; font-weight: 700; }
.bundle-stack__total-strike { color: rgba(255,255,255,.5); text-decoration: line-through; font-size: 1rem; margin-right: .5rem; }

.bundle-offer__copy h2 em { font-style: italic; color: var(--color-primary); font-weight: 500; }
.bundle-offer__bonus { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .85rem; background: var(--color-primary); color: #fff; border-radius: 999px; font-size: .8rem; font-weight: 600; margin-bottom: 1rem; }
.bundle-offer__cta { margin-top: 2rem; }
.bundle-offer__guarantee { font-size: .85rem; opacity: .75; margin-top: .85rem; display: flex; align-items: center; gap: .4rem; }

@media (max-width: 800px) { .bundle-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============ REVIEW GRID (Social Proof) ============ */
.review-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: #fff; border-radius: 22px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(31,31,35,.06);
}
.review-card__stars { color: #e9b949; letter-spacing: .05em; margin-bottom: .85rem; font-size: 1.05rem; }
.review-card__quote { font-family: var(--font-heading); font-size: 1.15rem; line-height: 1.45; margin-bottom: 1rem; font-weight: 500; color: var(--color-accent); }
.review-card__quote::before { content: "„"; }
.review-card__quote::after { content: """; }
.review-card__cite { font-size: .85rem; opacity: .7; display: flex; align-items: center; gap: .5rem; }
.review-card__verified { color: #2a9d4a; font-weight: 600; }

/* ============ COMPARISON TABLE ============ */
.comparison { max-width: 1000px; }
.comparison-table {
  background: #fff; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(31,31,35,.06);
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th, .comparison-table td {
  padding: 1.1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(31,31,35,.06);
  font-size: .95rem;
}
.comparison-table thead th {
  background: var(--color-secondary);
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1rem;
  vertical-align: bottom;
}
.comparison-table th.us-col { color: var(--color-primary); }
.comparison-table .yes { color: #2a9d4a; font-weight: 700; text-align: center; font-size: 1.2rem; }
.comparison-table .no { color: #b94a3e; font-weight: 600; text-align: center; font-size: 1.2rem; opacity: .55; }
.comparison-table tr:last-child td { border-bottom: 0; }

/* ============ FAQ ============ */
.faq { max-width: 800px; }
.faq-item {
  background: #fff; border-radius: 16px;
  border: 1px solid rgba(31,31,35,.06);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-weight: 600; font-size: 1rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 300; color: var(--color-primary);
  transition: transform .2s ease;
  margin-left: 1rem;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; opacity: .85; line-height: 1.65; }

/* ============ FOUNDER NOTE ============ */
.founder { max-width: 900px; background: #fff; border-radius: 28px; padding: clamp(2rem, 4vw, 3rem); display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem; align-items: center; border: 1px solid rgba(31,31,35,.06); }
.founder__photo { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; }
.founder__photo--placeholder { background: var(--color-secondary); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.founder__quote { font-family: var(--font-heading); font-size: 1.2rem; line-height: 1.55; font-weight: 500; color: var(--color-accent); margin-bottom: 1rem; }
.founder__cite { font-size: .9rem; opacity: .7; }
.founder__cite strong { display: block; font-weight: 700; opacity: 1; color: var(--color-accent); margin-bottom: .15rem; }
@media (max-width: 700px) { .founder { grid-template-columns: 1fr; text-align: center; } .founder__photo { margin: 0 auto; width: 160px; height: 160px; } }

/* ============ ANXIETY REMOVER ============ */
.anxiety { background: #fff; border-radius: 28px; padding: clamp(2rem, 4vw, 3rem); border: 1px solid rgba(31,31,35,.06); }
.anxiety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; text-align: center; }
.anxiety-item__icon { font-size: 2rem; color: var(--color-primary); display: block; margin-bottom: .65rem; }
.anxiety-item h4 { margin-bottom: .35rem; font-size: 1.05rem; }
.anxiety-item p { font-size: .88rem; opacity: .72; margin: 0; }

/* ============ FEATURED COLLECTION (PRODUCT SLIDER) ============ */
.product-slider { position: relative; }
.product-slider__track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: calc(25% - .75rem);
  gap: 1rem; overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 1rem;
  padding-bottom: .5rem;
  scrollbar-width: none;
}
.product-slider__track::-webkit-scrollbar { display: none; }
.product-slider__track > * { scroll-snap-align: start; }
@media (max-width: 1100px) { .product-slider__track { grid-auto-columns: calc(33.333% - .7rem); } }
@media (max-width: 800px)  { .product-slider__track { grid-auto-columns: calc(50% - .5rem); } }
@media (max-width: 500px)  { .product-slider__track { grid-auto-columns: 80%; } }

.slider-btn {
  position: absolute; top: 40%; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; box-shadow: 0 6px 14px rgba(0,0,0,.12);
  font-size: 1.2rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .15s ease; color: var(--color-text);
}
.slider-btn:hover { transform: scale(1.08); }
.slider-btn--prev { left: -10px; }
.slider-btn--next { right: -10px; }

/* ============ PRODUCT CARD ============ */
.product-card {
  background: #fff; border-radius: 22px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid rgba(31,31,35,.06);
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -16px rgba(31,31,35,.18); }
.product-card__image {
  aspect-ratio: 1 / 1;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fff, var(--color-secondary));
  display: flex; align-items: center; justify-content: center;
}
.product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.product-card__emoji { font-size: 4.5rem; opacity: .35; }
.product-card__badge {
  position: absolute; top: .75rem; left: .75rem;
  padding: .25rem .7rem; border-radius: 999px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff; background: var(--color-primary);
}
.product-card__badge--sale { background: #b94a3e; }
.product-card__badge--new { background: var(--color-accent); }
.product-card__badge--best { background: var(--color-primary); }
.product-card__quick-add {
  position: absolute; bottom: .75rem; right: .75rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  font-size: 1.4rem; font-weight: 700; line-height: 1;
  transition: transform .15s ease, background .2s;
  box-shadow: 0 4px 12px rgba(31,31,35,.2);
  opacity: 0;
}
.product-card:hover .product-card__quick-add { opacity: 1; }
.product-card__quick-add:hover { transform: scale(1.1); background: var(--color-primary); }
.product-card__body { padding: 1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .25rem; flex: 1; }
.product-card__vendor { font-size: .7rem; opacity: .55; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.product-card__title { font-size: 1rem; margin: 0; font-family: var(--font-body); font-weight: 600; line-height: 1.35; }
.product-card__price { margin-top: auto; padding-top: .65rem; display: flex; gap: .5rem; align-items: baseline; }
.price { font-weight: 700; font-size: 1.05rem; color: var(--color-accent); }
.price--sale { color: var(--color-primary); }
.price--strike { color: rgba(31,31,35,.45); text-decoration: line-through; font-size: .9rem; font-weight: 500; }

/* ============ COLLECTION PAGE ============ */
.collection-hero { text-align: center; margin-bottom: 2rem; }
.collection-desc { max-width: 60ch; margin: 0 auto; opacity: .75; }
.collection-count { display: inline-block; margin-top: .5rem; padding: .25rem .9rem; background: #fff; border-radius: 999px; font-weight: 600; font-size: .85rem; border: 1px solid rgba(31,31,35,.08); }
.collection-hero--with-image {
  position: relative;
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end;
  margin-bottom: 2rem;
}
.collection-hero--with-image::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(31,31,35,.65) 0%, rgba(31,31,35,.15) 60%, transparent 100%);
}
.collection-hero__overlay { position: relative; z-index: 1; color: #fff; padding: 2rem; text-align: left; width: 100%; }
.collection-hero__overlay h1 { color: #fff; }
.collection-hero__overlay .collection-desc { color: rgba(255,255,255,.9); margin: 0; max-width: 60ch; }

.collection-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; }
.collection-filters h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.collection-filters h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; opacity: .55; margin-bottom: .5rem; font-weight: 600; }
.filter-group { margin-bottom: 1.5rem; }
.filter-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.filter-chip {
  display: inline-block; padding: .35rem .8rem;
  background: #fff; border-radius: 999px;
  font-size: .85rem; font-weight: 500;
  transition: background .15s ease, color .15s ease;
  border: 1px solid rgba(31,31,35,.08);
}
.filter-chip:hover, .filter-chip.is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.filter-select { width: 100%; padding: .5rem .7rem; border-radius: 12px; border: 1px solid rgba(31,31,35,.12); background: #fff; font: inherit; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.empty { text-align: center; padding: 3rem; opacity: .55; }
.pagination {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 2rem;
}
.pagination a, .pagination span {
  padding: .5rem .9rem; background: #fff; border-radius: 999px; font-weight: 600;
  border: 1px solid rgba(31,31,35,.08);
}
.pagination .is-current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
@media (max-width: 800px) {
  .collection-layout { grid-template-columns: 1fr; }
}

/* ============ PRODUCT PAGE (PDP) ============ */
.product-page { max-width: 1280px; }
.product-page__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.5rem; align-items: start; }
.product-main-img { border-radius: 24px; aspect-ratio: 4 / 5; object-fit: cover; background: #fff; box-shadow: 0 16px 40px -16px rgba(31,31,35,.15); }
.product-media-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #fff, var(--color-secondary));
  border-radius: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--color-accent); padding: 2rem;
  border: 1px dashed rgba(31,31,35,.15);
}
.product-media-placeholder .ph-emoji { font-size: 5rem; margin-bottom: .5rem; opacity: .5; }
.product-media-placeholder .ph-label { font-family: var(--font-heading); font-weight: 600; }
.product-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin-top: 1rem; }
.product-thumbs img { border-radius: 12px; aspect-ratio: 1/1; object-fit: cover; cursor: pointer; border: 2px solid transparent; }
.product-thumbs img:hover { border-color: var(--color-primary); }
.product-vendor { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; opacity: .55; font-weight: 600; }
.product-title { font-size: clamp(1.85rem, 3.5vw, 2.6rem); margin: .35rem 0 .75rem; line-height: 1.15; }
.product-rating-line { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; font-size: .9rem; }
.product-rating-line .stars { color: #e9b949; letter-spacing: .05em; }
.product-rating-line a { text-decoration: underline; opacity: .7; }
.product-price { display: flex; gap: .75rem; align-items: baseline; margin-bottom: .5rem; }
.product-price .price { font-size: 1.8rem; font-family: var(--font-heading); font-weight: 700; }
.price-badge { background: var(--color-primary); color: #fff; padding: .25rem .65rem; border-radius: 999px; font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.product-price-note { font-size: .82rem; opacity: .65; margin-bottom: 1.5rem; }
.product-meta { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.chip { padding: .3rem .8rem; background: var(--color-secondary); border-radius: 999px; font-size: .78rem; font-weight: 500; }

.product-bonus-callout {
  background: var(--color-secondary);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex; gap: .85rem; align-items: center;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-primary);
}
.product-bonus-callout__icon { font-size: 1.5rem; flex-shrink: 0; }
.product-bonus-callout__text { font-size: .9rem; line-height: 1.45; }
.product-bonus-callout__text strong { color: var(--color-primary); }

.product-form__label { font-weight: 600; display: block; margin: 1rem 0 .4rem; font-size: .9rem; }
.product-form__select { width: 100%; padding: .75rem 1rem; border-radius: 12px; border: 1.5px solid rgba(31,31,35,.12); background: #fff; font: inherit; }
.product-form__actions { display: flex; gap: .75rem; margin-top: 1.5rem; align-items: stretch; }
.qty-picker { display: inline-flex; align-items: center; background: #fff; border-radius: 999px; border: 1.5px solid rgba(31,31,35,.12); overflow: hidden; }
.qty-picker button { width: 42px; height: 48px; font-size: 1.3rem; font-weight: 700; color: var(--color-text); }
.qty-picker input { width: 52px; text-align: center; border: 0; background: transparent; font: inherit; font-weight: 600; }
.btn--add { flex: 1; }
.product-mini-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: 1.25rem; padding: 1rem; background: #fff; border-radius: 16px; border: 1px solid rgba(31,31,35,.06); font-size: .82rem; font-weight: 500; text-align: center; }
.product-mini-trust__icon { font-size: 1.35rem; color: var(--color-primary); display: block; margin-bottom: .25rem; }

.product-description { margin-top: 2rem; line-height: 1.7; }
.product-description h3 { margin-top: 1.5rem; }
.product-description ul { padding-left: 1.25rem; }
.product-description li { margin-bottom: .35rem; }

@media (max-width: 800px) {
  .product-page__grid { grid-template-columns: 1fr; }
  .product-mini-trust { grid-template-columns: 1fr; gap: .35rem; text-align: left; padding: .75rem 1rem; }
  .product-mini-trust__item { display: flex; align-items: center; gap: .5rem; }
  .product-mini-trust__icon { display: inline-block; margin: 0; }
}

/* ============ CART ============ */
.cart-page { max-width: 1100px; }
.cart-empty { text-align: center; padding: 4rem 1rem; background: #fff; border-radius: 24px; border: 1px solid rgba(31,31,35,.06); }
.cart-empty__emoji { font-size: 4rem; margin: 0 0 .5rem; opacity: .4; }
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 22px; overflow: hidden; border: 1px solid rgba(31,31,35,.06); }
.cart-table th, .cart-table td { padding: 1rem; text-align: left; border-bottom: 1px solid rgba(31,31,35,.06); }
.cart-table th { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; opacity: .55; font-weight: 600; }
.cart-cell-product { display: flex; gap: 1rem; align-items: center; }
.cart-cell-product img { width: 70px; height: 70px; border-radius: 12px; object-fit: cover; }
.cart-title { font-weight: 600; display: block; }
.cart-remove { color: rgba(31,31,35,.55); font-size: .85rem; text-decoration: underline; padding: 0; margin-top: .35rem; }
.cart-qty { width: 64px; padding: .4rem; border-radius: 10px; border: 1.5px solid rgba(31,31,35,.12); font: inherit; text-align: center; }
.cart-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.cart-totals strong { font-size: 1.4rem; font-family: var(--font-heading); }
.cart-actions { display: flex; gap: .5rem; }
.cart-reassurance { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; margin-top: 1rem; font-size: .85rem; opacity: .75; }
.cart-reassurance span::before { content: "✓ "; color: #2a9d4a; font-weight: 700; }

/* ============ CART DRAWER ============ */
.cart-drawer { position: fixed; inset: 0; pointer-events: none; z-index: 200; }
.cart-drawer[aria-hidden="false"] { pointer-events: auto; }
.cart-drawer__backdrop { position: absolute; inset: 0; background: rgba(31,31,35,.45); opacity: 0; transition: opacity .2s ease; }
.cart-drawer[aria-hidden="false"] .cart-drawer__backdrop { opacity: 1; }
.cart-drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(440px, 90vw); background: #fff;
  border-radius: 24px 0 0 24px;
  padding: 1.5rem;
  transform: translateX(100%); transition: transform .25s ease;
  display: flex; flex-direction: column;
}
.cart-drawer[aria-hidden="false"] .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cart-drawer__close { font-size: 2rem; line-height: 1; color: var(--color-text); }
.cart-drawer__empty { text-align: center; padding: 2rem; opacity: .55; }

/* ============ FOOTER ============ */
.site-footer { background: var(--color-accent); color: #fff; margin-top: 6rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 3.5rem 1.5rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 2.5rem; }
.footer-col h3, .footer-col h4 { color: #fff; font-size: 1rem; font-family: var(--font-heading); }
.footer-col a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col a:hover { color: var(--color-primary); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.footer-brand { color: #fff; font-size: 1.5rem; font-family: var(--font-heading); }
.footer-brand em { color: var(--color-primary); font-style: italic; font-weight: 500; }
.footer-tagline { color: rgba(255,255,255,.65); margin-top: .5rem; font-size: .92rem; line-height: 1.5; }
.footer-socials { display: flex; gap: .5rem; margin-top: 1.25rem; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; transition: background .2s; }
.footer-socials a:hover { background: var(--color-primary); }
.newsletter-inline { display: flex; gap: .5rem; margin-top: .85rem; }
.newsletter-inline input { flex: 1; padding: .65rem 1rem; border-radius: 999px; border: 0; font: inherit; background: rgba(255,255,255,.08); color: #fff; }
.newsletter-inline input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-inline button { padding: .65rem 1.25rem; border-radius: 999px; background: var(--color-primary); color: #fff; font-weight: 600; }
.newsletter-note { font-size: .78rem; opacity: .55; margin-top: .5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); opacity: .65; flex-wrap: wrap; gap: .5rem; font-size: .85rem; }
.footer-payment-icons { display: flex; gap: .35rem; opacity: .55; font-size: .8rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ PAGE ============ */
.page { max-width: 800px; }
.page-inner { background: #fff; padding: clamp(2rem, 4vw, 3rem); border-radius: 24px; border: 1px solid rgba(31,31,35,.06); }
.rte p { margin: .85em 0; }
.rte a { color: var(--color-primary); text-decoration: underline; }
.rte h2, .rte h3 { margin-top: 1.5em; }

/* ============ SEARCH ============ */
.search-form { display: flex; gap: .5rem; margin: 1rem 0 2rem; }
.search-form input { flex: 1; padding: .9rem 1.2rem; border-radius: 999px; border: 1.5px solid rgba(31,31,35,.12); background: #fff; font: inherit; }

/* ============ STORE LOCATOR (kept for completeness) ============ */
.store-locator { background: var(--color-secondary); border-radius: 28px; padding: clamp(2rem, 5vw, 4rem); }
.store-locator__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.store-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.store-info-grid h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; opacity: .55; }
.store-info-grid p { margin: 0; }
.store-locator__map iframe, .store-locator__map > * { border-radius: 22px; width: 100%; min-height: 360px; border: 0; }
.store-locator__map-placeholder { background: #fff; border-radius: 22px; min-height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; border: 1px dashed rgba(31,31,35,.15); }
.store-locator__map-placeholder span { font-size: 4rem; opacity: .4; }
@media (max-width: 800px) { .store-locator__grid { grid-template-columns: 1fr; } }

/* ============ PRODUCT BULLETS & PAYMENT (V9) ============ */
.product-bullets { list-style: none; padding: 0; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .85rem; }
.product-bullets li { display: flex; gap: .75rem; align-items: flex-start; font-size: 1rem; line-height: 1.45; }
.product-bullet__icon { flex-shrink: 0; font-size: 1.15rem; line-height: 1.2; color: var(--color-primary); font-weight: 700; min-width: 18px; }
.product-payment-icons { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; margin-top: 1.25rem; }
.pay-badge { padding: .35rem .65rem; border: 1px solid rgba(31,31,35,.12); border-radius: 6px; font-size: .72rem; font-weight: 700; color: var(--color-accent); background: #fff; letter-spacing: .02em; }
.pay-badge--klarna { background: #FFB3C7; border-color: #FFB3C7; color: #000; }
.pay-badge--paypal { background: #003087; border-color: #003087; color: #fff; }
.pay-badge--visa { background: #1A1F71; border-color: #1A1F71; color: #fff; }
.hero--no-image { grid-template-columns: 1fr !important; text-align: center; min-height: 380px; }
.hero--no-image .hero-content { max-width: 720px; margin: 0 auto; }
.hero--no-image .hero-cta, .hero--no-image .hero-trust { justify-content: center; }

/* WS1 PDP upload fixes */
.pdp-grid{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);gap:clamp(1.5rem,4vw,4rem);align-items:start;padding:clamp(1.25rem,3vw,3rem) 1rem}.pdp-media{position:sticky;top:110px}.pdp-main-image{background:#fff;border-radius:24px;overflow:hidden;box-shadow:0 18px 50px rgba(31,31,35,.10)}.pdp-main-image img{width:100%;aspect-ratio:1/1;object-fit:cover}.pdp-placeholder{min-height:420px;display:grid;place-items:center;padding:2rem}.pdp-thumbs{display:grid;grid-template-columns:repeat(6,1fr);gap:.55rem;margin-top:.7rem}.pdp-thumb{border-radius:12px;overflow:hidden;background:#fff;border:1px solid rgba(31,31,35,.10);padding:0}.pdp-thumb img{width:100%;aspect-ratio:1/1;object-fit:cover}.pdp-info{background:rgba(255,255,255,.72);border:1px solid rgba(31,31,35,.08);border-radius:28px;padding:clamp(1.25rem,3vw,2rem);box-shadow:0 20px 60px rgba(31,31,35,.08)}.pdp-badge{display:inline-flex;background:var(--color-secondary);color:var(--color-accent);border-radius:999px;padding:.45rem .8rem;font-weight:800;font-size:.85rem;margin-bottom:1rem}.pdp-subtitle{font-size:1.08rem;color:rgba(31,31,35,.78)}.pdp-rating{display:flex;gap:.6rem;align-items:center;margin:1rem 0;font-weight:700}.stars,.review-card__stars{color:#f2a900;letter-spacing:.05em}.pdp-price{display:flex;align-items:baseline;gap:.8rem;margin:1rem 0}.pdp-price__current{font-size:2rem;font-weight:900}.pdp-price__compare{text-decoration:line-through;color:rgba(31,31,35,.45);font-size:1.2rem}.pdp-bullets{display:grid;gap:.65rem;margin:1.2rem 0}.pdp-bullet{display:flex;gap:.6rem;align-items:flex-start;font-weight:700}.pdp-bullet span{color:var(--color-primary);font-weight:900}.variant-label{display:block;font-weight:800;margin:.75rem 0 .4rem}.variant-select{width:100%;border:1px solid rgba(31,31,35,.15);background:#fff;border-radius:14px;padding:.9rem;margin-bottom:1rem;font:inherit}.pdp-mini-trust{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;margin-top:1rem;font-size:.82rem;font-weight:700;text-align:center}.pdp-mini-trust span{background:#fff;border-radius:999px;padding:.5rem .35rem}.pdp-note{font-size:.9rem;color:rgba(31,31,35,.68);text-align:center;margin-top:.8rem}.site-footer{background:var(--color-accent);color:#fff;padding:2rem 1rem;margin-top:2rem}.footer-inner{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap}.bundle-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center}@media(max-width:900px){.pdp-grid,.bundle-grid{grid-template-columns:1fr}.pdp-media{position:relative;top:auto}.pdp-info{padding:1rem}.pdp-mini-trust{grid-template-columns:1fr}.pdp-thumbs{grid-template-columns:repeat(4,1fr)}}

/* Mama-Reisehacks inspired Product Hero refinement */
.pdp-info--mama-style{
  background:#fff;
  border:0;
  border-radius:0;
  box-shadow:none;
  padding:clamp(1.4rem,3vw,2rem) clamp(1.2rem,3vw,1.7rem);
}
.pdp-info--mama-style h1{
  font-family:var(--font-heading-family, inherit);
  font-size:clamp(2.05rem,4.2vw,3.35rem);
  line-height:1.02;
  letter-spacing:-.035em;
  margin:0 0 1.15rem;
  color:#8a430f;
  font-weight:800;
}
.pdp-rating--mama{
  gap:.55rem;
  margin:0 0 1.25rem;
  font-size:1.15rem;
  font-weight:400;
  color:#17171f;
}
.pdp-rating--mama .stars{
  color:#f4c52d;
  letter-spacing:0;
  font-size:1.25rem;
  line-height:1;
}
.pdp-price--mama{
  gap:.55rem;
  margin:0 0 .22rem;
  line-height:1;
}
.pdp-price--mama .pdp-price__current{
  font-size:1.38rem;
  font-weight:400;
  color:#111118;
}
.pdp-price--mama .pdp-price__compare{
  font-size:1.36rem;
  color:#9c9c9c;
  text-decoration-thickness:2px;
}
.pdp-tax-note{
  color:#666;
  font-size:1.08rem;
  line-height:1.12;
  white-space:pre-line;
  margin:0 0 2.75rem;
}
.pdp-bullets--mama{
  display:grid;
  gap:1.55rem;
  margin:0 0 2.35rem;
}
.pdp-bullet--mama{
  display:grid;
  grid-template-columns:1.55rem minmax(0,1fr);
  gap:.55rem;
  align-items:start;
  color:#17171f;
  font-size:1.34rem;
  line-height:1.35;
  font-weight:400;
}
.pdp-bullet--mama .pdp-bullet__icon{
  color:inherit;
  font-size:1.15rem;
  line-height:1.55;
  font-weight:400;
}
.product-form--mama{margin:0;}
.btn--mama{
  width:100%;
  min-height:72px;
  border-radius:999px;
  background:#8fbb05;
  color:#fff;
  border:0;
  box-shadow:none;
  font-size:1.22rem;
  font-weight:400;
  letter-spacing:.02em;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding:1rem 1.5rem;
}
.btn--mama:hover{background:#82ad00;transform:none;box-shadow:none;}
.btn--mama-icon{font-size:1.05em;line-height:1;}
.pdp-payment-icons{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:.55rem .75rem;
  margin:1.25rem auto 0;
  max-width:520px;
}
.pdp-payment-icon{
  width:48px;
  height:31px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:4px;
  background:#fff;
}
@media(max-width:900px){
  .pdp-info--mama-style{padding:1.3rem 1rem;}
  .pdp-info--mama-style h1{font-size:2.25rem;}
  .pdp-tax-note{margin-bottom:2.35rem;}
  .pdp-bullet--mama{font-size:1.22rem;grid-template-columns:1.45rem 1fr;}
  .btn--mama{min-height:66px;font-size:1.08rem;}
}



/* ===== MOBILE PRODUCT IMAGE SWIPE FIX ===== */
@media (max-width: 768px) {
  .product__media-list,
  .product-media-container,
  .slider,
  .pdp-gallery,
  .bb-product-gallery {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .product__media-item,
  .product__media-list > *,
  .pdp-gallery > *,
  .bb-product-gallery > * {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    scroll-snap-align: start !important;
  }

  .product__media-list img,
  .product__media-item img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .product__media-list {
    padding-bottom: 8px !important;
  }
}