:root {
  --background-hsl: 30 33% 98%;
  --foreground-hsl: 0 0% 10%;
  --card-hsl: 0 0% 100%;
  --primary-hsl: 174 58% 26%;
  --primary-dark-hsl: 174 62% 20%;
  --primary-light-hsl: 174 50% 38%;
  --primary-foreground-hsl: 0 0% 100%;
  --secondary-hsl: 28 30% 92%;
  --muted-hsl: 28 20% 94%;
  --muted-foreground-hsl: 0 0% 40%;
  --border-hsl: 28 20% 88%;
  --destructive-hsl: 0 84% 60%;
  --obsidian-hsl: 0 0% 10%;
  --petal-hsl: 340 82% 88%;
  --sky-hsl: 213 94% 82%;
  --amber-hsl: 43 96% 58%;

  --background: hsl(var(--background-hsl));
  --foreground: hsl(var(--foreground-hsl));
  --card: hsl(var(--card-hsl));
  --primary: hsl(var(--primary-hsl));
  --primary-dark: hsl(var(--primary-dark-hsl));
  --primary-light: hsl(var(--primary-light-hsl));
  --primary-foreground: hsl(var(--primary-foreground-hsl));
  --secondary: hsl(var(--secondary-hsl));
  --muted: hsl(var(--muted-hsl));
  --muted-foreground: hsl(var(--muted-foreground-hsl));
  --border: hsl(var(--border-hsl));
  --destructive: hsl(var(--destructive-hsl));
  --obsidian: hsl(var(--obsidian-hsl));
  --petal: hsl(var(--petal-hsl));
  --sky: hsl(var(--sky-hsl));
  --amber: hsl(var(--amber-hsl));

  --radius: 1.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.05);
  --shadow-md: 0 8px 24px -18px rgb(0 0 0 / 0.35);
  --shadow-lg: 0 18px 38px -24px rgb(0 0 0 / 0.38);
  --shadow-primary: 0 16px 34px -18px hsl(var(--primary-hsl) / 0.45);
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-heading: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Outfit", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
  font: inherit;
}

body :where(p, a, li, button, input, textarea, select, label, summary, small) {
  font-family: var(--font-body);
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

:where(h1, h2, h3, h4, h5, h6) :where(span, strong, em, b) {
  font-family: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  z-index: 999;
  top: 0.5rem;
  left: 0.5rem;
  transform: translateY(-140%);
  border-radius: var(--radius-xl);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-width,
.page-width--wide {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}

.site-main {
  min-height: 60vh;
}

.announcement {
  width: 100%;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  min-height: 2.375rem;
  padding: 0.625rem 1rem;
}

.announcement__message {
  display: none;
}

.announcement__message.is-active {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(var(--background-hsl) / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo img {
  width: auto;
  max-height: 2.25rem;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground-hsl) / 0.72);
}

.header-nav a {
}

.header-nav a:hover {
  color: var(--primary);
}

.header-nav .btn {
  min-height: auto;
  border-radius: var(--radius-xl);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: white;
  box-shadow: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: hsl(var(--foreground-hsl) / 0.72);
}

.icon-button {
  position: relative;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  border-radius: var(--radius-xl);
}

.icon-button:hover {
  color: var(--primary);
  background: hsl(var(--secondary-hsl) / 0.8);
}

.cart-count {
  position: absolute;
  top: 0.05rem;
  right: 0.05rem;
  width: 1.125rem;
  height: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.625rem;
  font-weight: 800;
}

.mobile-menu {
  display: block;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu__panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 0.25rem);
  background: var(--background);
  border-top: 1px solid var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
}

.mobile-menu__panel a {
  display: block;
  border-radius: var(--radius-xl);
  padding: 0.85rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-menu__panel a:hover {
  background: var(--secondary);
}

.section {
  padding: 4rem 0;
}

.section--tight {
  padding-block: 3rem;
}

.section--card,
.section--pearl {
  background: var(--background);
}

.section--soft {
  background: hsl(var(--secondary-hsl) / 0.5);
}

.section-heading {
  font-size: 1.875rem;
  line-height: 1.18;
  font-weight: 800;
  text-align: center;
}

.section-copy {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.65;
}

.eyebrow {
  display: inline-block;
  border-radius: 999px;
  background: hsl(var(--primary-hsl) / 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  margin-bottom: 1.25rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background:
    linear-gradient(135deg, var(--background) 0%, hsl(var(--secondary-hsl) / 0.42) 52%, var(--background) 100%);
}

.hero__grid,
.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero__content {
  order: 2;
  display: grid;
  gap: 1.5rem;
}

.hero__content .eyebrow {
  margin-bottom: 0;
  justify-self: start;
}

.hero__title {
  font-size: 2.25rem;
  line-height: 1.12;
  font-weight: 800;
}

.text-brand {
  color: var(--primary);
}

.hero__copy {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 34rem;
}

.hero__buttons,
.button-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  border-radius: var(--radius-2xl);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 22px 42px -20px hsl(var(--primary-hsl) / 0.55);
}

.btn--secondary {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn--secondary:hover {
  border-color: hsl(var(--primary-hsl) / 0.4);
  background: hsl(var(--secondary-hsl) / 0.5);
}

.btn--cream {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.btn--cream:hover {
  background: var(--primary-light);
}

.btn:disabled,
.btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.625rem;
  border: 1px solid hsl(var(--border-hsl) / 0.5);
  border-radius: var(--radius-2xl);
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 0.625rem 0.75rem;
  color: hsl(var(--foreground-hsl) / 0.82);
  font-size: 0.75rem;
  font-weight: 600;
}

.chip .icon {
  color: var(--primary);
  width: 1rem;
  height: 1rem;
}

.hero__media {
  order: 1;
  position: relative;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 2rem;
  background: linear-gradient(135deg, hsl(var(--primary-hsl) / 0.1), hsl(var(--petal-hsl) / 0.28));
  transform: rotate(3deg);
}

.hero__media img,
.media-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: 0 25px 50px -22px hsl(var(--primary-hsl) / 0.35);
}

.hero__media img {
  aspect-ratio: 4 / 3;
}

.feature-strip {
  background: white;
  border-block: 1px solid hsl(var(--border-hsl) / 0.5);
}

.feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  padding-block: 2rem;
}

.feature-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.icon-box {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: var(--radius-2xl);
  background: hsl(var(--primary-hsl) / 0.1);
  color: var(--primary);
}

.icon {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon--star svg {
  stroke: none;
  fill: currentColor;
}

.problem-section {
  background: var(--background);
}

.problem-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.problem__content {
  display: grid;
  gap: 2rem;
}

.problem__intro {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.problem__title,
.compact-title {
  font-size: 1.875rem;
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 1rem;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}

.problem-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  border: 1px solid hsl(var(--border-hsl) / 0.5);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

.problem-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.problem-item__mark {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: var(--radius-xl);
  background: hsl(var(--destructive-hsl) / 0.1);
  color: var(--destructive);
  font-size: 1.125rem;
  font-weight: 800;
}

.problem__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-3xl);
  object-fit: cover;
  box-shadow: 0 24px 42px -22px rgb(0 0 0 / 0.35);
}

.section-heading--left {
  text-align: left;
  margin-bottom: 1rem;
}

.eyebrow--plain {
  justify-self: start;
  background: transparent;
  padding: 0;
  margin: 0 0 1rem;
}

.in-action-wrap,
.emotional-section,
.reviews-carousel {
  background: var(--background);
}

.in-action-row,
.solution-row,
.emotional-row {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.in-action-copy,
.solution-copy,
.emotional-copy {
  display: grid;
  gap: 1rem;
}

.in-action-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-3xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.solution-section {
  background: hsl(var(--secondary-hsl) / 0.5);
}

.solution-row {
  max-width: 64rem;
}

.solution-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-3xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.emotional-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-3xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.centered {
  text-align: center;
}

.centered .section-copy {
  margin-inline: auto;
  max-width: 48rem;
}

.meet-section {
  background: hsl(var(--secondary-hsl) / 0.5);
}

.meet-section .two-column {
  gap: 3rem;
}

.meet-media img {
  aspect-ratio: 1 / 1;
  border-radius: 2rem;
  box-shadow: 0 24px 42px -22px rgb(0 0 0 / 0.35);
}

.meet-copy {
  display: grid;
  gap: 1.5rem;
}

.meet-copy .eyebrow {
  margin: 0;
  justify-self: start;
  background: transparent;
  padding: 0;
}

.feature-grid,
.reviews-grid,
.bundles-grid,
.steps-grid,
.comparison-grid,
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-grid,
.bundles-grid,
.steps-grid,
.reviews-grid,
.comparison-grid {
  grid-template-columns: 1fr;
}

.features-section .section-heading,
.reviews-section .section-heading,
.bundles-section .section-heading,
.steps-section .section-heading,
.comparison-section .section-heading,
.faq-section .section-heading {
  margin-bottom: 3rem;
}

.card,
.review-card,
.bundle-card,
.step-card,
.accordion-card,
.contact-card,
.cart-card {
  background: white;
  border: 1px solid hsl(var(--border-hsl) / 0.5);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  padding: 1.5rem;
}

.feature-card:hover,
.bundle-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  margin-bottom: 1rem;
}

.feature-card h3,
.review-card h3,
.step-card h3,
.bundle-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p,
.step-card p,
.bundle-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.review-card {
  padding: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.review-card__text {
  color: hsl(var(--foreground-hsl) / 0.82);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: hsl(var(--primary-hsl) / 0.14);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 800;
}

.muted {
  color: var(--muted-foreground);
}

.small {
  font-size: 0.875rem;
}

.bundles-section {
  background: var(--obsidian);
  color: white;
}

.bundles-section .section-heading {
  color: white;
}

.bundle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem;
  background: rgb(255 255 255 / 0.05);
  border-color: rgb(255 255 255 / 0.12);
  color: white;
  box-shadow: none;
}

.bundle-card--highlight {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 22px 44px -25px hsl(var(--primary-hsl) / 0.8);
}

.bundle-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: white;
  color: var(--primary);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.bundle-badge--yellow {
  background: var(--amber);
  color: var(--obsidian);
}

.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.bundle-price strong {
  color: white;
  font-size: 1.875rem;
  font-weight: 800;
}

.old-price {
  color: rgb(255 255 255 / 0.45);
  text-decoration: line-through;
}

.bundle-card p,
.bundles-section .check-list {
  color: rgb(255 255 255 / 0.68);
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-list .icon {
  color: #4ade80;
}

.bundles-section .bundle-card .btn {
  margin-top: auto;
  background: var(--primary);
  color: white;
  border: 0;
  box-shadow: none;
}

.bundles-section .bundle-card .btn:hover {
  background: var(--primary-light);
}

.bundles-section .bundle-card--highlight .btn {
  background: white;
  color: var(--primary);
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
  padding-block: 5rem;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
}

.final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, hsl(var(--obsidian-hsl) / 0.82), hsl(var(--obsidian-hsl) / 0.62), hsl(var(--obsidian-hsl) / 0.42));
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  padding-block: 0;
}

.final-cta .section-copy {
  color: rgb(255 255 255 / 0.82);
  margin-block: 1rem 2rem;
}

.site-footer {
  background: var(--obsidian);
  color: rgb(255 255 255 / 0.8);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: 4rem 3rem;
}

.site-footer .brand-logo,
.site-footer h3 {
  color: white;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgb(255 255 255 / 0.62);
}

.site-footer a:hover {
  color: white;
}

.site-footer h4 {
  color: white;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  padding-top: 0.5rem;
}

.footer-social a {
  color: rgb(255 255 255 / 0.5);
}

.footer-social .icon svg[fill="currentColor"] {
  stroke: none;
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: var(--radius-xl);
  background: rgb(255 255 255 / 0.1);
  color: white;
  padding: 0.75rem 0.9rem;
  outline: 0;
}

.footer-newsletter input::placeholder {
  color: rgb(255 255 255 / 0.42);
}

.footer-newsletter .btn {
  min-height: 2.875rem;
  border-radius: var(--radius-xl);
  padding: 0.75rem 1rem;
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-block: 2rem;
}

.footer-trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(255 255 255 / 0.5);
  font-size: 0.75rem;
}

.site-footer__bottom {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-block: 1.5rem;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.4);
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.payment-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.payment-pills span:not(.muted) {
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 0.5rem;
  background: rgb(255 255 255 / 0.05);
  padding: 0.25rem 0.625rem;
  color: rgb(255 255 255 / 0.55);
  font-weight: 600;
}

.product {
  background: var(--background);
  padding: 2.5rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.product-info {
  display: grid;
  gap: 1.25rem;
}

.product-main-image {
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-3xl);
  background: var(--secondary);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.thumbnail {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  background: var(--secondary);
  opacity: 0.62;
  padding: 0;
}

.thumbnail.is-active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  opacity: 1;
}

.thumbnail:hover {
  opacity: 1;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rating-row .stars {
  margin-bottom: 0;
}

.product-title {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 800;
}

.product-description {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.65;
}

.product-price {
  color: var(--obsidian);
  font-size: 1.875rem;
  font-weight: 800;
}

.product-form {
  display: grid;
  gap: 1.25rem;
}

.option-label-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.option-label-row strong {
  font-weight: 700;
}

.swatches,
.radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.swatch {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--swatch-color, var(--primary));
  appearance: none;
  cursor: pointer;
  padding: 0;
}

.swatch:hover {
  transform: scale(1.05);
}

.swatch input,
.variant-pill input,
.bundle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.swatch.is-selected,
.swatch:has(input:checked) {
  border-color: var(--obsidian);
  transform: scale(1.08);
}

.swatch .icon {
  display: none;
  color: white;
  filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.4));
}

.swatch:has(input:checked) .icon,
.swatch.is-selected .icon {
  display: inline-flex;
}

.variant-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-2xl);
  background: white;
  padding: 0.65rem 1rem;
  font-weight: 700;
}

.variant-pill:has(input:checked) {
  border-color: var(--primary);
  background: hsl(var(--primary-hsl) / 0.05);
  color: var(--primary);
}

.bundle-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.bundle-heading h3 {
  font-size: 0.875rem;
  font-weight: 800;
}

.bundle-heading span {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
}

.bundle-options {
  display: grid;
  gap: 0.625rem;
}

.bundle-option {
  position: relative;
  display: block;
  overflow: hidden;
  border: 2px solid var(--border);
  border-radius: var(--radius-2xl);
  background: white;
  color: var(--foreground);
  padding: 0;
}

.bundle-option.is-selected,
.bundle-option:has(input:checked) {
  border-color: var(--primary);
  background: hsl(var(--primary-hsl) / 0.05);
  box-shadow: var(--shadow-md);
}

.bundle-option > .bundle-badge {
  position: static;
  transform: none;
  display: block;
  width: 100%;
  border-radius: 0;
  background: var(--primary);
  color: white;
  padding: 0.3rem 1rem;
  text-align: center;
}

.bundle-option > .bundle-badge--yellow {
  background: var(--amber);
  color: var(--obsidian);
}

.bundle-option__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.bundle-radio {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 2px solid var(--border);
  border-radius: 999px;
}

.bundle-option:has(input:checked) .bundle-radio,
.bundle-option.is-selected .bundle-radio {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.bundle-option__text {
  flex: 1;
}

.bundle-option__title {
  display: block;
  color: var(--obsidian);
  font-size: 0.875rem;
  font-weight: 800;
}

.bundle-option.is-selected .bundle-option__title {
  color: var(--primary);
}

.bundle-option__sub {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.bundle-option__price {
  min-width: 5rem;
  text-align: right;
  font-weight: 800;
}

.bundle-option__price strong {
  display: block;
  color: var(--obsidian);
  font-size: 1rem;
}

.bundle-option__price .old-price {
  color: var(--muted-foreground);
  font-size: 0.8125rem;
}

.bundle-save {
  display: block;
  color: #059669;
  font-size: 0.625rem;
  font-weight: 800;
}

.product-actions {
  display: grid;
  gap: 0.625rem;
}

.product-actions .btn {
  width: 100%;
  min-height: 3.75rem;
  border-radius: var(--radius-2xl);
  font-size: 1rem;
  font-weight: 800;
}

.multi-color-selector {
  display: grid;
  gap: 0.75rem;
}

.multi-color-selector h3 {
  font-size: 0.875rem;
  font-weight: 800;
}

.multi-color-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.multi-color-row.is-hidden {
  display: none;
}

.multi-color-row > span {
  width: 4.25rem;
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 800;
}

.multi-color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.color-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  background: white;
  color: var(--muted-foreground);
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.color-pill.is-selected {
  border-color: var(--primary);
  background: hsl(var(--primary-hsl) / 0.06);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.color-pill .icon {
  display: none;
  width: 0.75rem;
  height: 0.75rem;
}

.color-pill.is-selected .icon {
  display: inline-flex;
}

.color-dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 999px;
  display: inline-block;
}

.color-dot--pink {
  background: #f5a6b8;
}

.color-dot--blue {
  background: #6fa6e0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(var(--border-hsl) / 0.4);
  border-radius: var(--radius-xl);
  background: hsl(var(--secondary-hsl) / 0.7);
  color: hsl(var(--foreground-hsl) / 0.72);
  padding: 0.625rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.trust-item .icon {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--primary);
}

.inline-review {
  background: white;
  border: 1px solid hsl(var(--border-hsl) / 0.6);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.avatar--image {
  object-fit: cover;
}

.reviews-carousel__header {
  margin-bottom: 2.5rem;
}

.reviews-carousel__header .stars {
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.reviews-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.review-photo-card {
  width: min(80vw, 22rem);
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: white;
  border: 1px solid hsl(var(--border-hsl) / 0.5);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}

.review-photo-card__image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-2xl);
  background: var(--secondary);
}

.review-photo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-carousel__hint {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

.sticky-mobile-atc {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgb(255 255 255 / 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -12px 30px rgb(0 0 0 / 0.12);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
}

.sticky-mobile-atc div {
  display: grid;
  gap: 0.15rem;
}

.sticky-mobile-atc span {
  color: var(--primary);
  font-weight: 800;
}

.step-card {
  background: var(--background);
  padding: 1.5rem;
  text-align: center;
}

.step-card .icon-box {
  margin-bottom: 1rem;
}

.step-card__number {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.comparison-card {
  padding: 1.5rem;
}

.comparison-card:first-child {
  background: hsl(0 86% 97% / 0.72);
  border-color: hsl(0 72% 82% / 0.55);
}

.comparison-card--brand {
  background: hsl(var(--primary-hsl) / 0.05);
  color: var(--foreground);
  border-color: hsl(var(--primary-hsl) / 0.2);
}

.comparison-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.comparison-card:first-child h3,
.comparison-card:first-child .bad,
.comparison-card:first-child li {
  color: hsl(0 63% 39%);
}

.comparison-card--brand h3,
.comparison-card--brand .icon {
  color: var(--primary);
}

.comparison-list {
  display: grid;
  gap: 0.75rem;
}

.comparison-list li {
  display: flex;
  gap: 0.75rem;
  line-height: 1.45;
  font-size: 0.875rem;
}

.comparison-list .bad {
  font-weight: 800;
}

.verified-summary {
  text-align: center;
  margin-bottom: 2.5rem;
}

.verified-score {
  display: inline-flex;
  align-items: center;
  color: var(--obsidian);
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.faq-list {
  display: grid;
  gap: 0.5rem;
}

.accordion-card {
  padding-inline: 1.25rem;
}

.accordion-card summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--obsidian);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

.accordion-card summary::-webkit-details-marker {
  display: none;
}

.accordion-card summary::after {
  content: "+";
  color: var(--primary);
  font-weight: 800;
}

.accordion-card[open] summary::after {
  content: "-";
}

.accordion-card__content {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
  padding: 0 0 1rem;
}

.page-hero {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.page-hero h1 {
  font-size: 1.875rem;
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.faq-group {
  margin-bottom: 2.5rem;
}

.faq-group h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-page {
  background: var(--background);
  min-height: 60vh;
  padding-block: 3rem 5rem;
}

.contact-wrap {
  width: min(100% - 2rem, 42rem);
  margin-inline: auto;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  border-radius: var(--radius-3xl);
  padding: 1.5rem;
}

.contact-form .btn {
  width: 100%;
}

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: white;
  color: var(--foreground);
  padding: 0.75rem 1rem;
  outline: 0;
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(var(--primary-hsl) / 0.16);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
}

.contact-card .icon-box {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-xl);
}

.contact-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.contact-note a {
  color: var(--primary);
  font-weight: 700;
}

.form-status {
  border-radius: var(--radius-xl);
  padding: 1rem;
  background: hsl(var(--primary-hsl) / 0.1);
  color: var(--primary);
  font-weight: 700;
}

.form-errors {
  border-radius: var(--radius-xl);
  padding: 1rem;
  background: hsl(var(--destructive-hsl) / 0.1);
  color: var(--destructive);
  font-weight: 700;
}

.policy-page,
.track-page,
.about-page {
  background: var(--background);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  color: white;
  text-align: center;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, hsl(var(--obsidian-hsl) / 0.82), hsl(var(--obsidian-hsl) / 0.52));
}

.about-hero__content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin-inline: auto;
}

.about-hero h1 {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-hero p {
  color: rgb(255 255 255 / 0.82);
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-list,
.policy-list {
  display: grid;
  gap: 2rem;
}

.about-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-item__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-2xl);
  background: hsl(var(--primary-hsl) / 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-item h2,
.policy-item h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-item p,
.policy-item p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.track-form {
  width: min(100% - 2rem, 32rem);
  margin-inline: auto;
}

.track-icon {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-2xl);
  background: hsl(var(--primary-hsl) / 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
}

.cart-card {
  padding: 1.5rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding-block: 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-line img {
  border-radius: var(--radius-xl);
  background: var(--secondary);
}

.quantity-input {
  width: 5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0.5rem 0.75rem;
  text-align: center;
}

.cart-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.empty-state {
  text-align: center;
  padding: 5rem 1rem;
}

.product-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  border: 1px solid hsl(var(--border-hsl) / 0.5);
  border-radius: var(--radius-3xl);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-2xl);
  background: var(--secondary);
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h2 {
  font-size: 1.05rem;
  font-weight: 800;
}

.product-card__price {
  color: var(--primary);
  font-weight: 800;
  margin-top: 0.35rem;
}

.pagination {
  margin-top: 2rem;
  text-align: center;
}





@media (min-width: 640px) {
  .hero__buttons,
  .button-row {
    flex-direction: row;
  }

  .chips {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-grid,
  .reviews-grid,
  .bundles-grid,
  .steps-grid,
  .product-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .cart-line {
    grid-template-columns: 7rem 1fr auto;
  }

  .cart-footer {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .section {
    padding-block: 5rem;
  }

  .section-heading,
  .problem__title,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .about-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .about-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

@media (min-width: 960px) {
  .header__inner {
    min-height: 4.5rem;
  }

  .header-nav {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .hero {
    padding-block: 5rem;
  }

  .hero__grid,
  .two-column,
  .product-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .problem-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .in-action-row,
  .solution-row,
  .emotional-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .in-action-row--reverse .in-action-media {
    order: 2;
  }

  .in-action-row--reverse .in-action-copy {
    order: 1;
  }

  .hero__content {
    order: 1;
    gap: 2rem;
  }

  .hero__media {
    order: 2;
  }

  .hero__title {
    font-size: 3.75rem;
  }

  .section-heading,
  .problem__title,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .product {
    padding-block: 2.5rem;
  }

  .product-grid {
    gap: 3rem;
  }

  .product-gallery {
    position: sticky;
    top: 7rem;
    align-self: start;
  }

  .product-title {
    font-size: 2.25rem;
  }

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

  .reviews-carousel__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .review-photo-card {
    width: auto;
  }

  .reviews-carousel__hint,
  .sticky-mobile-atc {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .feature-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-grid,
  .bundles-grid,
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .page-width,
  .page-width--wide {
    width: min(100% - 2rem, 80rem);
  }

  .brand-logo {
    font-size: 1.35rem;
  }

  .header-actions {
    gap: 0.2rem;
  }

  .hero__title {
    font-size: 2.15rem;
  }

  .btn {
    width: 100%;
  }

  .thumbnail-grid {
    gap: 0.4rem;
  }

  .bundle-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .bundle-option__inner {
    align-items: flex-start;
  }

  .bundle-option__price {
    min-width: 4.5rem;
  }

  .trust-grid,
  .footer-trust {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom-inner {
    align-items: flex-start;
  }

  .payment-pills {
    justify-content: flex-start;
  }

  .cart-line__price {
    grid-column: 1 / -1;
  }
}

body :where(p, a, li, button, input, textarea, select, label, summary, small, .announcement, .header-nav, .hero__copy, .feature-strip__label, .section-subtitle) {
  font-family: var(--font-body) !important;
}

body :where(h1, h2, h3, h4, h5, h6, .brand-logo, .hero__title, .section-heading, .page-hero h1, .about-hero h1, .feature-card h3, .review-card h3, .step-card h3, .bundle-card h3, .site-footer h3, .site-footer h4) {
  font-family: var(--font-heading) !important;
}

body :where(h1, h2, h3, h4, h5, h6, .brand-logo, .hero__title, .section-heading) :where(span, strong, em, b) {
  font-family: inherit !important;
}

/* Conversion polish: motion, mobile rhythm, and stronger CTAs */
:root {
  --cta-glow: 0 18px 42px -18px hsl(var(--primary-hsl) / 0.8);
  --cta-glow-strong: 0 24px 54px -18px hsl(var(--primary-hsl) / 0.95);
}

html {
  scroll-behavior: smooth;
}

.btn,
.icon-button,
.thumbnail,
.card,
.problem-item,
.review-photo-card,
.accordion-card,
.trust-item {
  will-change: transform;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -65%;
  z-index: -1;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.34), transparent);
  opacity: 0;
}

.btn:hover::after,
.btn:focus-visible::after {
}

.btn--primary {
  box-shadow: var(--cta-glow);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: var(--cta-glow-strong);
}

[data-buy-now] {
  min-height: 4.45rem;
  border-radius: 1.35rem;
  font-size: clamp(1.18rem, 3vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 18px 38px -15px hsl(var(--primary-hsl) / 0.9), inset 0 1px 0 rgb(255 255 255 / 0.2);
}

[data-buy-now]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgb(255 255 255 / 0.18), transparent 36%, rgb(255 255 255 / 0.1));
  opacity: 0.8;
}

[data-buy-now]:hover,
[data-buy-now]:focus-visible {
  transform: translateY(-3px) scale(1.01);
}

[data-buy-now]:active {
  transform: translateY(0) scale(0.99);
}

.product-main-image,
.hero__media img,
.in-action-media img,
.solution-media img,
.emotional-media img,
.review-photo-card__image,
.final-cta__bg img {
  transform: translateZ(0);
}

.product-main-image img,
.hero__media img,
.in-action-media img,
.solution-media img,
.emotional-media img,
.review-photo-card__image img {
}

.product-main-image:hover img,
.hero__media:hover img,
.in-action-media:hover img,
.solution-media:hover img,
.emotional-media:hover img,
.review-photo-card:hover .review-photo-card__image img {
  transform: scale(1.035);
}

.card:hover,
.problem-item:hover,
.review-photo-card:hover,
.accordion-card:hover,
.trust-item:hover {
  transform: translateY(-3px);
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}





@media (max-width: 767px) {
  .page-width,
  .page-width--wide {
    width: min(100% - 1.5rem, 80rem);
  }

  .section {
    padding-block: 3.25rem;
  }

  .section-heading,
  .problem__title,
  .page-hero h1 {
    max-width: 22rem;
    margin-inline: auto;
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  .section-copy,
  .hero__copy,
  .product-description {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgb(255 255 255 / 0.9);
  }

  .header__inner {
    min-height: 4rem;
  }

  .announcement {
    font-size: 0.72rem;
    line-height: 1.3;
    padding-inline: 0.75rem;
  }

  .hero {
    padding-block: 1.75rem 3rem;
  }

  .hero__grid,
  .product-grid,
  .in-action-row,
  .solution-row,
  .emotional-row {
    gap: 1.5rem;
  }

  .hero__content,
  .product-info,
  .in-action-copy,
  .solution-copy,
  .emotional-copy {
    gap: 1rem;
  }

  .hero__content {
    text-align: center;
  }

  .hero__content .eyebrow,
  .product-info .eyebrow {
    margin-inline: auto;
  }

  .hero__title {
    font-size: clamp(2.35rem, 10.8vw, 3.1rem);
    line-height: 1.02;
  }

  .hero__media::before {
    inset: 0.75rem;
    border-radius: 1.4rem;
  }

  .hero__media img,
  .media-card img {
    border-radius: 1.35rem;
    box-shadow: 0 18px 36px -26px rgb(0 0 0 / 0.35);
  }

  .button-row {
    gap: 0.75rem;
  }

  .button-row .btn,
  .hero__buttons .btn {
    min-height: 3.35rem;
  }

  .chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .chip {
    min-height: 2.8rem;
    justify-content: center;
    padding: 0.65rem 0.55rem;
    font-size: 0.73rem;
  }

  .product {
    padding-block: 1rem 2.75rem;
  }

  .product-gallery {
    width: 100%;
  }

  .product-main-image {
    border-radius: 1.35rem;
    box-shadow: 0 22px 42px -30px rgb(0 0 0 / 0.45);
  }

  .thumbnail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.65rem;
  }

  .thumbnail {
    border-radius: 0.85rem;
  }

  .product-info {
    border: 1px solid hsl(var(--border-hsl) / 0.6);
    border-radius: 1.45rem;
    background: rgb(255 255 255 / 0.78);
    box-shadow: 0 18px 38px -30px rgb(0 0 0 / 0.35);
    padding: 1rem;
  }

  .rating-row {
    justify-content: center;
    row-gap: 0.35rem;
    text-align: center;
  }

  .product-title {
    text-align: center;
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.04;
  }

  .product-description {
    text-align: center;
  }

  .product-form {
    gap: 1rem;
  }

  .product-actions {
    position: sticky;
    bottom: 0.75rem;
    z-index: 20;
    margin-top: 0.15rem;
  }

  .product-actions .btn,
  [data-buy-now] {
    min-height: 4.65rem;
    border-radius: 1.35rem;
    font-size: clamp(1.25rem, 5vw, 1.55rem);
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .trust-item {
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.65rem 0.5rem;
    text-align: center;
    font-size: 0.72rem;
  }

  .inline-review {
    border-radius: 1.25rem;
    padding: 0.95rem;
  }

  .problem__intro {
    margin-bottom: 1.75rem;
  }

  .problem-list,
  .feature-grid,
  .steps-grid,
  .comparison-grid,
  .cards-grid {
    gap: 0.85rem;
  }

  .problem-item,
  .card,
  .step-card,
  .comparison-card,
  .accordion-card {
    border-radius: 1.25rem;
    padding: 1rem;
  }

  .problem-item {
    align-items: center;
  }

  .problem-item__mark,
  .icon-box {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.95rem;
  }

  .feature-card h3,
  .step-card h3,
  .comparison-card h3 {
    font-size: 1.05rem;
  }

  .in-action-media img {
    aspect-ratio: 4 / 5;
  }

  .in-action-copy,
  .solution-copy,
  .emotional-copy {
    text-align: center;
  }

  .section-heading--left {
    text-align: center;
  }

  .eyebrow--plain {
    margin-inline: auto;
  }

  .solution-media,
  .emotional-media {
    order: -1;
  }

  .solution-media img,
  .emotional-media img,
  .in-action-media img {
    border-radius: 1.35rem;
    box-shadow: 0 18px 36px -28px rgb(0 0 0 / 0.42);
  }

  .comparison-list {
    gap: 0.75rem;
  }

  .comparison-list li {
    align-items: flex-start;
    line-height: 1.45;
  }

  .reviews-carousel__header {
    margin-bottom: 1.5rem;
  }

  .reviews-carousel__track {
    gap: 0.85rem;
    margin-inline: -0.75rem;
    padding-inline: 0.75rem;
    scroll-padding-inline: 0.75rem;
  }

  .review-photo-card {
    width: min(84vw, 21rem);
    border-radius: 1.35rem;
    padding: 1rem;
  }

  .faq-list {
    gap: 0.7rem;
  }

  .accordion-card summary {
    min-height: 3.5rem;
    align-items: center;
    font-size: 0.96rem;
  }

  .final-cta {
    padding-block: 4rem;
  }

  .final-cta__inner {
    max-width: 24rem;
  }

  .final-cta .section-heading {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .final-cta .btn {
    min-height: 3.7rem;
    padding-inline: 1.6rem;
  }

  .site-footer__grid {
    gap: 2rem;
    padding-block: 3rem 2rem;
  }
}

@media (max-width: 380px) {
  .chips,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .product-title,
  .hero__title {
    font-size: 2.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* CSS-only repair: keep product templates untouched, fix mobile offer/CTA layout */
.product-price-row {
  align-items: center;
  border-color: hsl(var(--primary-hsl) / 0.16);
  border-radius: 1rem;
  background: linear-gradient(180deg, white 0%, hsl(var(--secondary-hsl) / 0.34) 100%);
  box-shadow: 0 10px 24px -22px rgb(0 0 0 / 0.28);
  padding: 0.85rem 0.95rem;
}

.product-price-row > div {
  min-width: 0;
}

.product-price-label {
  color: var(--muted-foreground);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.18rem;
}

.product-price-row .product-price {
  font-size: clamp(1.7rem, 6vw, 2.05rem);
  line-height: 1;
}

.btn--primary {
  box-shadow: 0 12px 26px -18px hsl(var(--primary-hsl) / 0.72);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 16px 32px -18px hsl(var(--primary-hsl) / 0.82);
}

[data-buy-now] {
  min-height: 3.95rem;
  border-radius: 1.05rem;
  font-size: clamp(1.05rem, 2.6vw, 1.22rem);
  box-shadow: 0 14px 28px -18px hsl(var(--primary-hsl) / 0.86), inset 0 1px 0 rgb(255 255 255 / 0.16);
}

[data-buy-now]:hover,
[data-buy-now]:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .site-main {
    padding-bottom: calc(4.4rem + env(safe-area-inset-bottom));
  }

  .product-actions {
    position: static;
    z-index: auto;
  }

  .product-actions .btn,
  [data-buy-now] {
    min-height: 3.9rem;
    border-radius: 1.05rem;
    font-size: clamp(1.05rem, 4.2vw, 1.2rem);
  }

  .sticky-mobile-atc {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(9.5rem, 1.25fr);
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 -10px 24px rgb(0 0 0 / 0.1);
    padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  }

  .sticky-mobile-atc div {
    min-width: 0;
    gap: 0;
  }

  .sticky-mobile-atc strong {
    min-width: 0;
    color: var(--obsidian);
    font-size: 0.88rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .sticky-mobile-atc span {
    display: none;
  }

  .sticky-mobile-atc .btn {
    width: 100%;
    min-height: 3.45rem;
    border-radius: 1.05rem;
    padding: 0.65rem 0.8rem;
    font-size: 0.98rem;
    line-height: 1.12;
    box-shadow: 0 12px 24px -16px hsl(var(--primary-hsl) / 0.8);
  }
}

/* Product landing rebuild */
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid hsl(var(--border-hsl) / 0.65);
  border-radius: var(--radius-2xl);
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 0.9rem 1rem;
}

.product-price-label {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.product-compare-price {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: line-through;
}

.product-benefit-list {
  display: grid;
  gap: 0.65rem;
}

.product-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: hsl(var(--foreground-hsl) / 0.84);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 650;
}

.product-benefit-list .icon {
  color: var(--primary);
  margin-top: 0.1rem;
}

.bundle-app-zone {
  border: 1px solid hsl(var(--primary-hsl) / 0.18);
  border-radius: var(--radius-2xl);
  background: hsl(var(--primary-hsl) / 0.04);
  padding: 0.75rem;
}

.features-section__copy,
.ugc-proof__header .section-copy,
.comparison-showcase__header .section-copy,
.use-cases__header .section-copy {
  max-width: 48rem;
  margin: -1.75rem auto 3rem;
  text-align: center;
}

.solution-steps {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.solution-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid hsl(var(--border-hsl) / 0.6);
  border-radius: var(--radius-2xl);
  background: white;
  padding: 0.8rem 0.9rem;
  box-shadow: var(--shadow-sm);
}

.solution-step span {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
}

.solution-step strong {
  min-width: 0;
  font-size: 0.98rem;
  line-height: 1.3;
}

.ugc-proof-section {
  background: hsl(var(--secondary-hsl) / 0.5);
}

.ugc-proof__header {
  margin-bottom: 0;
}

.ugc-proof__track,
.comparison-showcase__grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0 1rem;
}

.ugc-card,
.comparison-showcase-card,
.use-case-card {
  background: white;
  border: 1px solid hsl(var(--border-hsl) / 0.55);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.ugc-card {
  width: min(82vw, 21rem);
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.ugc-card__media,
.comparison-showcase-card__image,
.use-case-card__image {
  position: relative;
  overflow: hidden;
  background: hsl(var(--secondary-hsl) / 0.7);
}

.ugc-card__media {
  aspect-ratio: 4 / 5;
}

.ugc-card__media img,
.ugc-card__video,
.comparison-showcase-card__image img,
.use-case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ugc-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.ugc-card__body .stars {
  margin-bottom: 0;
}

.icon--muted {
  opacity: 0.24;
}

.ugc-card__quote {
  color: hsl(var(--foreground-hsl) / 0.84);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ugc-card__body strong,
.ugc-card__body span {
  display: block;
}

.ugc-card__body strong {
  font-size: 0.92rem;
}

.ugc-card__body span {
  color: var(--muted-foreground);
  font-size: 0.78rem;
}

.ugc-proof__hint,
.comparison-showcase__hint {
  color: var(--muted-foreground);
  font-size: 0.78rem;
  text-align: center;
}

.ovapet-comparison-showcase {
  background: var(--background);
}

.comparison-showcase-card {
  position: relative;
  width: min(86vw, 23rem);
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 1rem;
}

.comparison-showcase-card--best {
  border-color: hsl(var(--primary-hsl) / 0.35);
  box-shadow: var(--shadow-lg);
}

.comparison-showcase-card__badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-showcase-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-2xl);
  margin-bottom: 1rem;
}

.comparison-showcase-card__placeholder,
.use-case-card__placeholder {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-2xl);
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.comparison-showcase-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.comparison-showcase-list {
  display: grid;
  gap: 0.7rem;
}

.comparison-showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: hsl(var(--foreground-hsl) / 0.82);
  font-size: 0.88rem;
  line-height: 1.45;
}

.comparison-showcase-list .icon {
  color: var(--primary);
  margin-top: 0.05rem;
}

.comparison-showcase-list .bad {
  color: hsl(0 63% 39%);
  font-weight: 900;
  line-height: 1.2;
}

.use-cases-section {
  background: hsl(var(--secondary-hsl) / 0.5);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.use-case-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 0.78;
}

.use-case-card__body {
  padding: 1rem;
}

.use-case-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.use-case-card p {
  color: var(--muted-foreground);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .ugc-proof__track,
  .comparison-showcase__grid {
    display: grid;
    overflow: visible;
    padding-bottom: 0;
  }

  .ugc-proof__track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .comparison-showcase__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ugc-card,
  .comparison-showcase-card {
    width: auto;
  }

  .ugc-proof__hint,
  .comparison-showcase__hint {
    display: none;
  }

  .use-cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .product-price-row {
    text-align: left;
  }

  .product-benefit-list {
    text-align: left;
  }

  .features-section__copy,
  .ugc-proof__header .section-copy,
  .comparison-showcase__header .section-copy,
  .use-cases__header .section-copy {
    max-width: 24rem;
    margin: -1.65rem auto 1.75rem;
    font-size: 0.94rem;
  }

  .solution-steps {
    text-align: left;
  }

  .ugc-proof__track,
  .comparison-showcase__grid {
    margin-inline: -0.75rem;
    padding-inline: 0.75rem;
    scroll-padding-inline: 0.75rem;
  }

  .use-case-card {
    border-radius: 1.2rem;
  }
}

/* Final Shopify-safe visual polish. CSS only: templates, Liquid, schema, apps untouched. */
html,
body {
  overflow-x: hidden;
}

.product-price-row {
  min-height: auto;
  align-items: center;
  border: 1px solid hsl(var(--primary-hsl) / 0.16);
  border-left: 4px solid var(--primary);
  border-radius: 1rem;
  background: linear-gradient(180deg, white 0%, hsl(var(--secondary-hsl) / 0.32) 100%);
  box-shadow: 0 10px 24px -22px rgb(0 0 0 / 0.28);
  padding: 0.85rem 0.95rem;
}

.product-price-row > div {
  min-width: 0;
}

.product-price-label {
  color: var(--muted-foreground);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.18rem;
}

.product-price-row .product-price {
  font-size: clamp(1.7rem, 5vw, 2.05rem);
  line-height: 1;
}

.product-benefit-list li {
  align-items: flex-start;
  line-height: 1.42;
}

.btn--primary {
  box-shadow: 0 12px 26px -18px hsl(var(--primary-hsl) / 0.72);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 16px 32px -18px hsl(var(--primary-hsl) / 0.82);
}

[data-buy-now] {
  min-height: 3.95rem;
  border-radius: 1.05rem;
  font-size: clamp(1.05rem, 2.6vw, 1.22rem);
  box-shadow: 0 14px 28px -18px hsl(var(--primary-hsl) / 0.86), inset 0 1px 0 rgb(255 255 255 / 0.16);
}

[data-buy-now]::before {
  opacity: 0.28;
}

[data-buy-now]:hover,
[data-buy-now]:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .site-main {
    padding-bottom: calc(4.35rem + env(safe-area-inset-bottom));
  }

  .product-info {
    gap: 0.95rem;
    padding: 0.95rem;
  }

  .product-title {
    font-size: clamp(1.78rem, 8.2vw, 2.2rem);
    line-height: 1.06;
  }

  .product-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .product-price-row {
    gap: 0.65rem;
    padding: 0.78rem 0.85rem;
    border-radius: 0.95rem;
  }

  .product-price-label {
    font-size: 0.64rem;
  }

  .product-price-row .product-price {
    font-size: 1.82rem;
  }

  .product-benefit-list {
    gap: 0.55rem;
  }

  .product-benefit-list li {
    gap: 0.55rem;
    font-size: 0.9rem;
  }

  .product-actions {
    position: static;
    z-index: auto;
    bottom: auto;
  }

  .product-actions .btn,
  [data-buy-now] {
    min-height: 3.75rem;
    border-radius: 1.05rem;
    font-size: clamp(1rem, 4vw, 1.15rem);
  }

  .sticky-mobile-atc {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(8.8rem, 1.25fr);
    align-items: center;
    gap: 0.7rem;
    min-height: 4rem;
    box-shadow: 0 -10px 24px rgb(0 0 0 / 0.1);
    padding: 0.52rem 0.72rem calc(0.52rem + env(safe-area-inset-bottom));
  }

  .sticky-mobile-atc div {
    min-width: 0;
    gap: 0;
  }

  .sticky-mobile-atc strong {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    color: var(--obsidian);
    font-size: 0.86rem;
    line-height: 1.12;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .sticky-mobile-atc span {
    display: none;
  }

  .sticky-mobile-atc .btn {
    width: 100%;
    min-height: 3.35rem;
    border-radius: 1rem;
    padding: 0.62rem 0.75rem;
    font-size: 0.95rem;
    line-height: 1.12;
    white-space: normal;
    box-shadow: 0 12px 24px -16px hsl(var(--primary-hsl) / 0.8);
  }

  .ugc-card,
  .review-photo-card {
    width: min(82vw, 20rem);
  }

  .comparison-showcase-card {
    width: min(84vw, 21.5rem);
  }
}

@media (max-width: 380px) {
  .sticky-mobile-atc {
    grid-template-columns: minmax(0, 0.82fr) minmax(8.1rem, 1.18fr);
    gap: 0.55rem;
  }

  .sticky-mobile-atc strong {
    font-size: 0.8rem;
  }

  .sticky-mobile-atc .btn {
    min-height: 3.15rem;
    font-size: 0.88rem;
    padding-inline: 0.6rem;
  }
}

/* Final spacing repair for landing section headers. CSS only. */
.features-section__copy,
.ugc-proof__header .section-copy,
.comparison-showcase__header .section-copy,
.use-cases__header .section-copy {
  max-width: 44rem;
  margin: 0.75rem auto 2.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  text-align: center;
}

.ugc-proof__header,
.comparison-showcase__header,
.use-cases__header {
  margin-bottom: 0;
}

.ugc-proof__header .section-heading,
.comparison-showcase__header .section-heading,
.use-cases__header .section-heading {
  max-width: 46rem;
  margin: 0 auto;
  line-height: 1.12;
}

.ugc-proof__track,
.comparison-showcase__grid {
  scrollbar-width: none;
}

.ugc-proof__track::-webkit-scrollbar,
.comparison-showcase__grid::-webkit-scrollbar {
  display: none;
}

.final-cta .btn {
  width: min(100%, 21rem);
  margin-inline: auto;
}

@media (max-width: 767px) {
  .features-section__copy,
  .ugc-proof__header .section-copy,
  .comparison-showcase__header .section-copy,
  .use-cases__header .section-copy {
    max-width: 21rem;
    margin: 0.65rem auto 1.65rem;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .ugc-proof__header .section-heading,
  .comparison-showcase__header .section-heading,
  .use-cases__header .section-heading {
    max-width: 21rem;
    font-size: clamp(1.65rem, 7.4vw, 2.1rem);
    line-height: 1.1;
  }

  .ugc-proof-section,
  .ovapet-comparison-showcase,
  .use-cases-section {
    padding-block: 3rem;
  }

  .ugc-proof__track,
  .comparison-showcase__grid {
    padding-top: 0;
  }
}

/* Product media and honest inventory urgency polish. */
.product-urgency {
  display: grid;
  gap: 0.55rem;
  margin-bottom: -0.2rem;
}

.product-stock-alert {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 0.5rem;
  border: 1px solid hsl(var(--destructive-hsl) / 0.2);
  border-radius: 999px;
  background: hsl(var(--destructive-hsl) / 0.07);
  color: hsl(var(--foreground-hsl) / 0.92);
  padding: 0.58rem 0.82rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-stock-alert[hidden] {
  display: none;
}

/* ── Live viewers badge ── */
.product-viewers-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid hsl(var(--foreground-hsl) / 0.15);
  border-radius: 999px;
  background: hsl(var(--foreground-hsl) / 0.05);
  color: hsl(var(--foreground-hsl) / 0.9);
  padding: 0.52rem 0.82rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.2;
}

.product-viewers-badge__dot {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #e63946;
  box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5);
}

.product-viewers-badge__count {
  font-weight: 700;
  min-width: 1.6ch;
  display: inline-block;
}



/* ── Low stock warning strip ── */
.product-low-stock-warning {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid hsl(34 90% 50% / 0.3);
  border-radius: 999px;
  background: hsl(34 90% 50% / 0.08);
  color: hsl(var(--foreground-hsl) / 0.92);
  padding: 0.52rem 0.82rem;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .product-viewers-badge,
  .product-low-stock-warning {
    width: 100%;
    justify-content: center;
    padding: 0.62rem 0.75rem;
    text-align: center;
  }
}

/* ── Urgent stock notice (persuasive alert under CTA) ── */
.product-urgent-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  margin-top: 1.2rem;
  border: 2px solid #e63946;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.08) 0%, rgba(230, 57, 70, 0.04) 100%);
}

.product-urgent-note__dot {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  flex: 0 0 auto;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: #e63946;
  box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5);
}

.product-urgent-note__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.product-urgent-note__content strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e63946;
  line-height: 1.3;
}

.product-urgent-note__content p {
  margin: 0;
  font-size: 0.88rem;
  color: hsl(var(--foreground-hsl) / 0.88);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .product-urgent-note {
    padding: 0.9rem 0.85rem;
    gap: 0.6rem;
  }
  
  .product-urgent-note__content strong {
    font-size: 0.9rem;
  }
  
  .product-urgent-note__content p {
    font-size: 0.82rem;
  }
}

.product-stock-alert__dot {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: hsl(var(--destructive-hsl));
  box-shadow: 0 0 0 0.32rem hsl(var(--destructive-hsl) / 0.12);
}

.ugc-card__body .stars,
.rating-row .stars,
.inline-review .stars {
  color: #d9a329;
}

.ugc-card__body .stars .icon--star,
.rating-row .stars .icon--star,
.inline-review .stars .icon--star {
  color: #d9a329;
}

.ugc-card__body .stars .icon--star svg,
.rating-row .stars .icon--star svg,
.inline-review .stars .icon--star svg {
  fill: currentColor;
}

.solution-media__demo {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 960px) {
  .solution-media__demo {
    max-height: 38rem;
  }
}

@media (max-width: 767px) {
  .product-stock-alert {
    width: 100%;
    justify-content: center;
    padding: 0.62rem 0.75rem;
    text-align: center;
  }

  .solution-media__demo {
    aspect-ratio: 3 / 4;
  }
}


/* OvaPet product page mobile premium polish — 2026-06-20 */
@media (max-width: 767px) {
  .announcement {
    min-height: 2.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0;
  }

  .header__inner {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
    align-items: center;
    min-height: 3.85rem;
    padding-inline: 0.8rem;
  }

  .brand-logo {
    grid-column: 2;
    justify-self: center;
    font-size: 1.08rem;
    line-height: 1;
  }

  .brand-logo img {
    max-height: 1.8rem;
    width: auto;
  }

  .header-actions {
    display: contents;
  }

  .mobile-menu {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .header-actions > .icon-button[href*="cart"] {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .icon-button {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
  }

  .product {
    padding-block: 0.85rem 2rem;
    background:
      radial-gradient(circle at 12% 4%, hsl(var(--primary-hsl) / 0.08), transparent 30%),
      linear-gradient(180deg, #fbf8f3 0%, #f7f2eb 100%);
  }

  .product-grid {
    gap: 1rem;
  }

  .product-gallery {
    background: transparent;
  }

  .product-main-image {
    border: 1px solid hsl(var(--border-hsl) / 0.75);
    border-radius: 1.35rem;
    background: #fffaf3;
    box-shadow: 0 18px 45px -32px rgb(29 29 31 / 0.42);
  }

  .product-main-image img {
    object-fit: cover;
  }

  .thumbnail-grid {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0.05rem 0.05rem 0.35rem;
  }

  .thumbnail-grid::-webkit-scrollbar {
    display: none;
  }

  .thumbnail {
    flex: 0 0 4.75rem;
    width: 4.75rem;
    border-radius: 0.9rem;
    border-width: 1px;
    background: white;
    opacity: 0.72;
    scroll-snap-align: start;
    box-shadow: 0 8px 22px -20px rgb(29 29 31 / 0.45);
  }

  .thumbnail.is-active {
    border: 2px solid #c6963b;
    box-shadow: 0 10px 24px -18px rgb(29 29 31 / 0.55);
    opacity: 1;
  }

  .product-info {
    gap: 0.9rem;
    padding: 1.05rem 1rem 1.15rem;
    border: 1px solid hsl(var(--border-hsl) / 0.7);
    border-radius: 1.45rem;
    background: rgb(255 255 255 / 0.86);
    box-shadow: 0 18px 45px -34px rgb(29 29 31 / 0.35);
    backdrop-filter: blur(8px);
    text-align: left;
  }

  .product-kicker-row {
    display: grid;
    gap: 0.55rem;
  }

  .product-info .eyebrow {
    width: fit-content;
    margin: 0;
    border-color: hsl(var(--primary-hsl) / 0.16);
    background: hsl(var(--primary-hsl) / 0.07);
    color: var(--primary-dark);
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .rating-row {
    gap: 0.35rem;
    font-size: 0.87rem;
    line-height: 1.2;
  }

  .rating-row .stars {
    gap: 0.08rem;
  }

  .rating-row .stars .icon {
    width: 0.86rem;
    height: 0.86rem;
  }

  .rating-row .muted {
    color: hsl(var(--foreground-hsl) / 0.55);
  }

  .product-title {
    max-width: 20rem;
    margin: 0;
    font-size: clamp(1.55rem, 7.2vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .product-description {
    max-width: 21.5rem;
    color: hsl(var(--foreground-hsl) / 0.62);
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .product-price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.05rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .product-price-label {
    display: block;
    margin-bottom: 0.2rem;
    color: hsl(var(--foreground-hsl) / 0.54);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  .product-price-row .product-price {
    font-size: clamp(1.85rem, 7vw, 2.25rem);
    font-weight: 900;
    letter-spacing: -0.04em;
  }

  .product-price-row__right {
    display: grid;
    justify-items: end;
    gap: 0.3rem;
  }

  .product-compare-price {
    font-size: 0.9rem;
  }

  .product-offer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.85rem;
    border: 1px solid #dcc087;
    border-radius: 999px;
    background: #fff6df;
    color: #9a6c11;
    padding: 0.34rem 0.62rem;
    font-size: 0.72rem;
    font-weight: 850;
    white-space: nowrap;
  }

  .product-viewers-badge {
    width: 100%;
    justify-content: flex-start;
    border-color: #f2ccd2;
    background: #fff3f5;
    color: hsl(var(--foreground-hsl) / 0.82);
    padding: 0.7rem 0.82rem;
    font-size: 0.84rem;
  }

  .product-benefit-list {
    gap: 0.55rem;
    padding-top: 0.1rem;
  }

  .product-benefit-list li {
    display: grid;
    grid-template-columns: 1rem 1fr;
    align-items: start;
    gap: 0.56rem;
    font-size: 0.9rem;
    color: hsl(var(--foreground-hsl) / 0.78);
  }

  .product-benefit-list .icon {
    width: 0.92rem;
    height: 0.92rem;
    margin-top: 0.16rem;
  }

  .bundle-app-zone,
  .product-form kaching-bundles,
  .product-form .kaching-bundles,
  .product-form [class*="kaching" i] {
    border-radius: 1.25rem !important;
  }

  .product-actions .btn,
  [data-buy-now] {
    min-height: 3.65rem;
    border-radius: 1.05rem;
    font-size: 1.03rem;
    font-weight: 900;
    box-shadow: 0 15px 32px -18px hsl(var(--primary-hsl) / 0.86);
  }

  .product-urgent-note {
    align-items: center;
    margin-top: 0.25rem;
    padding: 0.85rem 0.9rem;
    border: 1px solid #ff4054;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fff2f4 0%, #fffafa 100%);
  }

  .product-urgent-note__content strong {
    color: #e6374d;
    font-size: 0.88rem;
  }

  .product-urgent-note__content p {
    color: hsl(var(--foreground-hsl) / 0.72);
    font-size: 0.82rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .trust-item {
    justify-content: center;
    min-height: 2.65rem;
    border-radius: 0.85rem;
    background: #f5efe7;
    padding: 0.55rem 0.6rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 750;
  }

  .inline-review {
    border-radius: 1.15rem;
    padding: 0.9rem;
    box-shadow: 0 16px 36px -30px rgb(29 29 31 / 0.5);
  }

  .site-main {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }

  .sticky-mobile-atc {
    display: grid;
    grid-template-columns: minmax(6.2rem, 0.72fr) minmax(8.8rem, 1fr);
    gap: 0.75rem;
    align-items: center;
    min-height: 4.75rem;
    border-top: 1px solid hsl(var(--border-hsl) / 0.75);
    background: rgb(255 255 255 / 0.94);
    backdrop-filter: blur(16px);
    box-shadow: 0 -18px 36px -28px rgb(29 29 31 / 0.55);
    padding: 0.62rem 0.95rem calc(0.62rem + env(safe-area-inset-bottom));
  }

  .sticky-mobile-atc__info,
  .sticky-mobile-atc div {
    display: grid;
    min-width: 0;
    gap: 0.12rem;
  }

  .sticky-mobile-atc__price,
  .sticky-mobile-atc strong {
    color: var(--obsidian);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.05;
    white-space: nowrap;
  }

  .sticky-mobile-atc span {
    display: block;
    color: hsl(var(--foreground-hsl) / 0.56);
    font-size: 0.67rem;
    font-weight: 750;
    line-height: 1.1;
  }

  .sticky-mobile-atc .btn,
  .sticky-mobile-atc__button {
    width: 100%;
    min-height: 3.2rem;
    border-radius: 0.9rem;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .thumbnail {
    flex-basis: 4.25rem;
    width: 4.25rem;
  }

  .product-info {
    padding-inline: 0.9rem;
  }

  .product-title {
    font-size: clamp(1.45rem, 7.6vw, 1.85rem);
  }

  .product-offer-pill {
    font-size: 0.66rem;
    padding-inline: 0.5rem;
  }

  .sticky-mobile-atc {
    grid-template-columns: minmax(5.4rem, 0.62fr) minmax(8.25rem, 1fr);
    gap: 0.55rem;
    padding-inline: 0.7rem;
  }

  .sticky-mobile-atc__price,
  .sticky-mobile-atc strong {
    font-size: 1.02rem;
  }

  .sticky-mobile-atc .btn,
  .sticky-mobile-atc__button {
    min-height: 3rem;
    padding-inline: 0.75rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .product-kicker-row {
    display: grid;
    gap: 0.75rem;
  }

  .product-price-row__right {
    display: grid;
    justify-items: end;
    gap: 0.35rem;
  }

  .product-offer-pill {
    display: inline-flex;
    border: 1px solid #dcc087;
    border-radius: 999px;
    background: #fff6df;
    color: #9a6c11;
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 850;
    white-space: nowrap;
  }
}


/* ── Native bundle picker + improved buy CTAs ───────────────────────────── */
.btn-inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.55rem;
}

.btn-inline-icon .icon {
  width: 1rem;
  height: 1rem;
}

.custom-bundle-picker {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.1rem;
}

.custom-bundle-picker__heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
}

.custom-bundle-picker__heading span {
  height: 1px;
  background: hsl(var(--primary-hsl) / 0.32);
}

.custom-bundle-picker__heading h3 {
  margin: 0;
  color: hsl(var(--primary-hsl));
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.custom-bundle-list {
  display: grid;
  gap: 0.75rem;
}

.custom-bundle-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 3.35rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1rem 1rem 0.9rem;
  border: 1.5px solid hsl(var(--border-hsl) / 0.9);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 14px 32px -28px rgb(29 29 31 / 0.18);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.custom-bundle-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px -26px rgb(29 29 31 / 0.24);
}

.custom-bundle-card.is-selected {
  border-color: hsl(var(--primary-hsl));
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
  box-shadow: 0 22px 42px -28px hsl(var(--primary-hsl) / 0.32);
}

.custom-bundle-card input[type='radio'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-bundle-card__radio {
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 0.55rem;
  border: 2px solid hsl(var(--foreground-hsl) / 0.24);
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 0.3rem #fff;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.custom-bundle-card.is-selected .custom-bundle-card__radio {
  border-color: hsl(var(--primary-hsl));
  background: hsl(var(--primary-hsl));
}

.custom-bundle-card__media {
  position: relative;
  width: 3.35rem;
  min-height: 3.35rem;
}

.custom-bundle-card__media img {
  position: absolute;
  width: 2.9rem;
  height: 2.9rem;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border-hsl) / 0.7);
  background: #fff;
}

.custom-bundle-card__media--stack-1 img:nth-child(1) { left: 0.15rem; top: 0.2rem; }
.custom-bundle-card__media--stack-2 img:nth-child(1) { left: 0; top: 0.26rem; }
.custom-bundle-card__media--stack-2 img:nth-child(2) { left: 0.8rem; top: 0; }
.custom-bundle-card__media--stack-3 img:nth-child(1) { left: 0; top: 0.3rem; }
.custom-bundle-card__media--stack-3 img:nth-child(2) { left: 0.68rem; top: 0.04rem; }
.custom-bundle-card__media--stack-3 img:nth-child(3) { left: 1.16rem; top: 0.38rem; }

.custom-bundle-card__content {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.custom-bundle-card__title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: start;
}

.custom-bundle-card h4,
.custom-bundle-card__price {
  margin: 0;
}

.custom-bundle-card h4 {
  color: var(--obsidian);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.05;
}

.custom-bundle-card p {
  margin: 0;
  color: hsl(var(--foreground-hsl) / 0.72);
  font-size: 0.88rem;
  line-height: 1.38;
}

.custom-bundle-card__subcopy {
  margin-top: 0.2rem !important;
}

.custom-bundle-card__price-wrap {
  display: grid;
  justify-items: end;
  gap: 0.22rem;
}

.custom-bundle-card__price {
  color: var(--obsidian);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.custom-bundle-card__compare {
  color: hsl(var(--foreground-hsl) / 0.46);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: line-through;
}

.custom-bundle-card__save-pill,
.custom-bundle-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.7rem;
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 850;
  white-space: nowrap;
}

.custom-bundle-card__save-pill {
  margin-top: 0.35rem;
  background: #eaf4f3;
  color: hsl(var(--primary-hsl));
}

.custom-bundle-card__badge--gold {
  background: #f8e8bc;
  color: #9a6c11;
}

.custom-bundle-card__badge--mint {
  background: #e7f3f1;
  color: hsl(var(--primary-hsl));
}

.custom-bundle-config {
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem;
  border: 1px solid hsl(var(--border-hsl) / 0.7);
  border-radius: 1.15rem;
  background: #fffdf9;
}

.custom-bundle-config__title {
  color: var(--obsidian);
  font-size: 0.92rem;
  font-weight: 850;
}

.custom-bundle-config__list {
  display: grid;
  gap: 0.65rem;
}

.custom-bundle-config__row {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
}

.custom-bundle-config__row.is-hidden {
  display: none;
}

.custom-bundle-config__thumb {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  border: 1px solid #f1d6da;
  background: #fff7f8;
  overflow: hidden;
}

.custom-bundle-config__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-bundle-card__select {
  width: 100%;
  min-height: 2.75rem;
  border: 1px solid hsl(var(--border-hsl));
  border-radius: 0.9rem;
  background: #fff;
  color: var(--obsidian);
  padding: 0 0.95rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.bundle-app-zone[hidden] {
  display: none !important;
}

.sticky-mobile-atc {
  grid-template-columns: minmax(0, 1fr) minmax(8.4rem, auto);
  gap: 0.8rem;
  padding-top: 0.72rem;
  padding-bottom: calc(0.72rem + env(safe-area-inset-bottom));
}

.sticky-mobile-atc__product {
  display: grid;
  grid-template-columns: 3.35rem minmax(0, 1fr);
  gap: 0.72rem;
  align-items: center;
  min-width: 0;
}

.sticky-mobile-atc__thumb {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 0.95rem;
  overflow: hidden;
  background: #fff7f8;
  border: 1px solid hsl(var(--border-hsl) / 0.78);
}

.sticky-mobile-atc__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-mobile-atc__title {
  display: block;
  color: var(--obsidian);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.15;
}

.sticky-mobile-atc__info {
  gap: 0.12rem;
}

@media (max-width: 767px) {
  .product-actions .btn,
  [data-buy-now] {
    min-height: 3.95rem;
    border-radius: 1.12rem;
    font-size: 1.04rem;
  }

  .sticky-mobile-atc .btn,
  .sticky-mobile-atc__button {
    min-height: 3.25rem;
    border-radius: 1rem;
    font-size: 0.98rem;
  }
}

@media (max-width: 420px) {
  .custom-bundle-card {
    grid-template-columns: auto 3rem minmax(0, 1fr);
    padding: 0.9rem 0.85rem 0.9rem 0.8rem;
    gap: 0.75rem;
  }

  .custom-bundle-card__title-row {
    gap: 0.5rem;
  }

  .custom-bundle-card h4,
  .custom-bundle-card__price {
    font-size: 1.02rem;
  }

  .custom-bundle-card__badge,
  .custom-bundle-card__save-pill {
    font-size: 0.68rem;
    padding-inline: 0.58rem;
  }

  .sticky-mobile-atc {
    grid-template-columns: minmax(0, 1fr) minmax(7.4rem, auto);
    gap: 0.6rem;
  }

  .sticky-mobile-atc__product {
    grid-template-columns: 2.85rem minmax(0, 1fr);
    gap: 0.55rem;
  }

  .sticky-mobile-atc__thumb {
    width: 2.85rem;
    height: 2.85rem;
  }

  .sticky-mobile-atc__title {
    font-size: 0.8rem;
  }
}


/* --- Bundle + button fixes (June 2026) --- */
.btn--primary,
.btn--primary:hover,
.btn--primary:focus-visible,
.product-actions .btn,
.sticky-mobile-atc__button,
[data-buy-now] {
  color: #ffffff !important;
}

.product-actions .btn .icon,
.sticky-mobile-atc__button .icon,
[data-buy-now] .icon {
  color: #ffffff !important;
  stroke: currentColor;
}

.sticky-mobile-atc {
  z-index: 35;
}

.sticky-mobile-atc__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-mobile-atc__info > span {
  color: hsl(var(--foreground-hsl) / 0.56) !important;
}

.sticky-mobile-atc__button span,
.sticky-mobile-atc__button strong,
.sticky-mobile-atc__button .btn-inline-icon,
.product-actions .btn span {
  color: #ffffff !important;
}

.product-info {
  overflow: hidden;
}

.custom-bundle-card {
  overflow: hidden;
}

.custom-bundle-card__media {
  width: 3.6rem;
  min-width: 3.6rem;
  min-height: 3.6rem;
}

.custom-bundle-card__media--single img {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
  border: none;
  border-radius: 0.9rem;
  background: transparent;
}

.custom-bundle-card__content {
  min-width: 0;
}

.custom-bundle-card__title-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.custom-bundle-card__title-row > div:first-child,
.custom-bundle-card__price-wrap {
  min-width: 0;
}

.custom-bundle-card__price-wrap {
  max-width: 9.3rem;
}

.custom-bundle-card__badge,
.custom-bundle-card__save-pill {
  line-height: 1.15;
  text-align: center;
}

.custom-bundle-card__compare,
.custom-bundle-card__price,
.custom-bundle-card p,
.custom-bundle-card h4 {
  word-break: normal;
  overflow-wrap: anywhere;
}

.custom-bundle-config {
  margin-top: 0.1rem;
}

.custom-bundle-card__select {
  appearance: auto;
  -webkit-appearance: menulist;
  background-color: #fff;
}

.thumbnail-grid {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.thumbnail {
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .product-kicker-row {
    gap: 0.7rem;
  }

  .product-title {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    line-height: 1.02;
  }

  .product-description {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .product-price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: end;
  }

  .product-offer-pill {
    font-size: 0.75rem;
    padding-inline: 0.72rem;
  }

  .custom-bundle-card {
    grid-template-columns: auto 3.6rem minmax(0, 1fr);
    gap: 0.78rem;
    padding: 0.92rem 0.85rem 0.92rem 0.78rem;
    border-radius: 1.2rem;
  }

  .custom-bundle-card__title-row {
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }

  .custom-bundle-card__price-wrap {
    justify-items: start;
    max-width: 100%;
  }

  .custom-bundle-card__price,
  .custom-bundle-card h4 {
    font-size: 1.04rem;
  }

  .custom-bundle-card p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .custom-bundle-card__badge,
  .custom-bundle-card__save-pill {
    min-height: 1.55rem;
    font-size: 0.68rem;
    padding: 0.2rem 0.6rem;
  }

  .custom-bundle-card__compare {
    font-size: 0.8rem;
  }

  .custom-bundle-config {
    padding: 0.82rem;
    border-radius: 1rem;
  }

  .custom-bundle-config__title {
    font-size: 0.9rem;
  }

  .custom-bundle-config__row {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    gap: 0.6rem;
  }

  .custom-bundle-config__thumb {
    width: 2.6rem;
    height: 2.6rem;
  }

  .custom-bundle-card__select {
    min-height: 2.6rem;
    font-size: 0.92rem;
  }

  .sticky-mobile-atc {
    grid-template-columns: minmax(0, 1fr) minmax(7.8rem, auto);
  }

  .sticky-mobile-atc__button {
    font-size: 0.92rem;
  }
}

@media (max-width: 380px) {
  .custom-bundle-card {
    grid-template-columns: auto 3.2rem minmax(0, 1fr);
  }

  .custom-bundle-card__media {
    width: 3.2rem;
    min-width: 3.2rem;
    min-height: 3.2rem;
  }

  .sticky-mobile-atc__product {
    grid-template-columns: 2.6rem minmax(0, 1fr);
  }

  .sticky-mobile-atc__button {
    min-width: 7.2rem;
    padding-inline: 0.75rem;
  }
}


/* --- Responsive overflow hard-fix (June 2026) --- */
@media (max-width: 767px) {
  .page-width,
  .page-width--wide,
  .site-main > section,
  .product-grid,
  .product-gallery,
  .product-info,
  .product-main-image,
  .thumbnail-grid,
  .custom-bundle-picker,
  .custom-bundle-list,
  .custom-bundle-card,
  .custom-bundle-config,
  .product-actions,
  .product-urgent-note,
  .trust-grid,
  .inline-review,
  .reviews-carousel__track,
  .ugc-proof__track,
  .comparison-showcase__grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .product-main-image img,
  .thumbnail img,
  .custom-bundle-card img,
  .custom-bundle-config__thumb img,
  .inline-review img,
  .review-photo-card img,
  .ugc-card img {
    max-width: 100%;
    height: auto;
  }

  .product-main-image img {
    width: 100%;
    height: 100%;
    object-position: center center;
  }

  .custom-bundle-card,
  .product-urgent-note,
  .trust-item,
  .inline-review,
  .rating-row,
  .product-viewers-badge {
    overflow: hidden;
  }

  .custom-bundle-card__content,
  .custom-bundle-card__title-row,
  .custom-bundle-card__price-wrap,
  .product-urgent-note__content,
  .review-card__content,
  .inline-review__content,
  .trust-item span {
    min-width: 0;
    max-width: 100%;
  }

  .custom-bundle-card h4,
  .custom-bundle-card p,
  .custom-bundle-card__price,
  .custom-bundle-card__compare,
  .product-urgent-note__content p,
  .inline-review p,
  .review-card__text,
  .trust-item span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .sticky-mobile-atc {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 430px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 2.45rem;
    font-size: 0.78rem;
    justify-content: flex-start;
    text-align: left;
    padding-inline: 0.8rem;
  }

  .inline-review {
    padding: 0.82rem;
  }

  .custom-bundle-card {
    align-items: start;
  }

  .custom-bundle-card__title-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .custom-bundle-card__price-wrap {
    justify-items: start;
  }

  .sticky-mobile-atc {
    grid-template-columns: minmax(0, 1fr) minmax(6.9rem, auto);
    gap: 0.55rem;
    padding-inline: 0.65rem;
  }

  .sticky-mobile-atc__product {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.48rem;
  }

  .sticky-mobile-atc__thumb {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.78rem;
  }

  .sticky-mobile-atc__title {
    font-size: 0.74rem;
    line-height: 1.05;
  }

  .sticky-mobile-atc__price {
    font-size: 0.94rem !important;
  }

  .sticky-mobile-atc__button {
    min-width: 0;
    min-height: 2.95rem;
    font-size: 0.88rem;
    padding-inline: 0.68rem;
  }
}


/* --- Mobile clarity + conversion polish (June 2026) --- */
@media (max-width: 767px) {
  .product {
    padding-block: 1rem 2rem;
  }

  .product-grid {
    gap: 1rem;
  }

  .product-gallery {
    gap: 0.7rem;
  }

  .product-main-image {
    aspect-ratio: auto;
    min-height: 20rem;
    max-height: 26rem;
    padding: 0.35rem;
    border-radius: 1.55rem;
    background: #f6f1ea;
  }

  .product-main-image img {
    object-fit: contain !important;
    object-position: center top;
    width: 100%;
    height: 100%;
  }

  .thumbnail-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.45rem;
    margin-top: 0.7rem;
    padding-bottom: 0.05rem;
  }

  .thumbnail {
    width: 4.35rem;
    min-width: 4.35rem;
    aspect-ratio: 1 / 1;
    border-radius: 0.95rem;
  }

  .product-info {
    gap: 0.9rem;
    padding: 1rem 1rem 1.15rem;
    border: 1px solid hsl(var(--border-hsl) / 0.65);
    border-radius: 1.55rem;
    background: #ffffff;
    box-shadow: 0 16px 34px -28px rgb(29 29 31 / 0.18);
  }

  .product-kicker-row {
    gap: 0.55rem;
    justify-items: center;
  }

  .product-info .eyebrow {
    margin-inline: 0;
    min-height: 1.95rem;
    padding-inline: 0.9rem;
    font-size: 0.74rem;
  }

  .rating-row {
    gap: 0.35rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .rating-row strong {
    font-size: 1rem;
  }

  .rating-row .muted {
    font-size: 0.92rem;
  }

  .product-title {
    max-width: 13ch;
    margin-inline: auto;
    text-wrap: balance;
    font-size: clamp(2rem, 8vw, 2.45rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .product-description {
    max-width: 22rem;
    margin-inline: auto;
    text-align: center;
    color: hsl(var(--foreground-hsl) / 0.72);
    font-size: 1rem;
    line-height: 1.55;
  }

  .product-price-row {
    align-items: center;
    padding: 0.8rem 0.9rem;
    gap: 0.65rem;
    border-left-width: 0;
    border: 1px solid hsl(var(--primary-hsl) / 0.16);
    border-radius: 1.05rem;
    background: #fcfbf8;
    box-shadow: none;
  }

  .product-price-row .product-price {
    font-size: clamp(2rem, 8vw, 2.4rem);
    line-height: 0.95;
  }

  .product-price-label {
    font-size: 0.76rem;
    margin-bottom: 0.15rem;
  }

  .product-price-row__right {
    display: grid;
    justify-items: end;
    gap: 0.35rem;
  }

  .product-offer-pill {
    min-height: 2rem;
    padding-inline: 0.78rem;
    font-size: 0.76rem;
    font-weight: 800;
  }

  .product-urgency {
    display: flex;
    justify-content: center;
  }

  .product-viewers-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: auto;
    max-width: 100%;
    margin-inline: auto;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: #fff7f8;
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .product-viewers-badge__count {
    min-width: 0;
  }

  .product-benefit-list {
    gap: 0.72rem;
    margin: 0.05rem 0 0;
  }

  .product-benefit-list li {
    align-items: flex-start;
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .custom-bundle-picker {
    gap: 0.75rem;
    margin-top: 0.3rem;
  }

  .custom-bundle-picker__heading h3 {
    font-size: 0.88rem;
    letter-spacing: 0.03em;
  }

  .custom-bundle-list {
    gap: 0.7rem;
  }

  .custom-bundle-card {
    padding: 0.9rem 0.85rem 0.9rem 0.8rem;
    border-radius: 1.2rem;
  }

  .custom-bundle-card__radio {
    margin-top: 0.35rem;
  }

  .custom-bundle-card__price,
  .custom-bundle-card h4 {
    font-size: 1.12rem;
  }

  .custom-bundle-card p {
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .custom-bundle-card__badge,
  .custom-bundle-card__save-pill {
    white-space: normal;
  }

  .product-actions {
    margin-top: 0.25rem;
  }

  .product-actions .btn,
  [data-buy-now] {
    min-height: 3.8rem;
    font-size: 1.08rem;
    border-radius: 1.15rem;
  }

  .product-urgent-note {
    padding: 0.82rem 0.9rem;
  }

  .trust-grid {
    gap: 0.55rem;
  }

  .inline-review {
    margin-top: 0.1rem;
  }

  .site-main {
    padding-bottom: calc(6rem + env(safe-area-inset-bottom));
  }

  .sticky-mobile-atc {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 4.5rem;
    gap: 0.65rem;
    padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgb(255 255 255 / 0.98);
    backdrop-filter: blur(12px);
  }

  .sticky-mobile-atc__product {
    grid-template-columns: 2.7rem minmax(0, 1fr);
    gap: 0.5rem;
    align-items: center;
  }

  .sticky-mobile-atc__thumb {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.78rem;
  }

  .sticky-mobile-atc__title {
    font-size: 0.8rem;
    line-height: 1.05;
  }

  .sticky-mobile-atc__price {
    font-size: 1.1rem !important;
    line-height: 1;
  }

  .sticky-mobile-atc__info > span {
    font-size: 0.67rem;
  }

  .sticky-mobile-atc__button {
    min-width: 7.35rem;
    min-height: 3.05rem;
    padding-inline: 0.95rem;
    border-radius: 1rem;
    font-size: 0.94rem;
  }
}

@media (max-width: 420px) {
  .product-main-image {
    min-height: 18.5rem;
    max-height: 23rem;
    border-radius: 1.35rem;
  }

  .product-info {
    padding: 0.95rem 0.9rem 1.05rem;
    border-radius: 1.35rem;
  }

  .product-title {
    max-width: 12ch;
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }

  .product-description {
    font-size: 0.97rem;
  }

  .product-price-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .product-price-row__right {
    justify-items: start;
  }

  .product-viewers-badge {
    width: 100%;
    justify-content: flex-start;
    border-radius: 1rem;
    font-size: 0.88rem;
  }

  .product-benefit-list li {
    font-size: 0.93rem;
  }

  .custom-bundle-card {
    grid-template-columns: auto 3.25rem minmax(0, 1fr);
    gap: 0.72rem;
  }

  .custom-bundle-card__media {
    width: 3.25rem;
    min-width: 3.25rem;
    min-height: 3.25rem;
  }

  .custom-bundle-card__price,
  .custom-bundle-card h4 {
    font-size: 1.05rem;
  }

  .custom-bundle-card p {
    font-size: 0.84rem;
  }

  .sticky-mobile-atc {
    gap: 0.5rem;
  }

  .sticky-mobile-atc__button {
    min-width: 6.95rem;
    padding-inline: 0.8rem;
    font-size: 0.9rem;
  }
}


/* --- Final mobile product fixes: no crop, no shipping pill, clean bundles --- */
.product-price-row__right:empty,
.product-offer-pill {
  display: none !important;
}

@media (max-width: 767px) {
  .product {
    padding-block: 0.75rem 2rem;
  }

  .product-grid {
    gap: 0.8rem;
  }

  .product-gallery,
  .product-main-image,
  .thumbnail-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .product-main-image {
    aspect-ratio: 1 / 1;
    min-height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    border-radius: 1.35rem;
    background: #f7f2ea;
    overflow: hidden;
  }

  .product-main-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: inherit;
  }

  .thumbnail-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0.45rem;
    margin-top: 0.65rem;
    padding: 0 0.1rem 0.2rem;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .thumbnail {
    flex: 0 0 4.15rem !important;
    width: 4.15rem !important;
    height: 4.15rem !important;
    min-width: 4.15rem !important;
    padding: 0.18rem !important;
    border-radius: 0.82rem;
    background: #fff;
    scroll-snap-align: start;
  }

  .thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 0.65rem;
  }

  .product-info {
    gap: 0.82rem;
    padding: 1rem 1rem 1.1rem;
    border-radius: 1.35rem;
    text-align: left;
  }

  /* убрать верхний бейдж WALK-READY HYDRATION */
  .product-info .eyebrow {
    display: none !important;
  }

  .product-kicker-row {
    display: block;
  }

  .rating-row {
    justify-content: flex-start !important;
    gap: 0.36rem;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
  }

  .rating-row .muted {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-title {
    max-width: none !important;
    margin: 0 !important;
    text-align: left !important;
    font-size: clamp(2.1rem, 8.9vw, 2.65rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .product-description {
    max-width: none !important;
    margin: 0 !important;
    text-align: left !important;
    font-size: 1.03rem !important;
    line-height: 1.55 !important;
    color: hsl(var(--foreground-hsl) / 0.7);
  }

  /* убрать рамку вокруг цены и free shipping $50+ */
  .product-price-row {
    display: block !important;
    padding: 0 !important;
    border: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .product-price-row .product-price {
    font-size: clamp(2.15rem, 9vw, 2.6rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.05em;
  }

  .product-price-label {
    display: block;
    margin-bottom: 0.16rem;
    font-size: 0.78rem !important;
  }

  .product-viewers-badge {
    width: 100%;
    justify-content: flex-start;
    border-radius: 1rem;
    padding: 0.72rem 0.9rem;
    font-size: 0.91rem;
  }

  .product-benefit-list {
    gap: 0.68rem;
  }

  .product-benefit-list li {
    font-size: 0.97rem !important;
    line-height: 1.38;
  }

  .custom-bundle-picker {
    gap: 0.72rem;
    margin-top: 0.2rem;
  }

  .custom-bundle-picker__heading {
    gap: 0.65rem;
  }

  .custom-bundle-picker__heading h3 {
    font-size: 0.86rem;
    letter-spacing: 0.035em;
  }

  .custom-bundle-card {
    grid-template-columns: auto 3.55rem minmax(0, 1fr) !important;
    gap: 0.75rem !important;
    align-items: start;
    padding: 0.95rem 0.85rem !important;
    overflow: hidden;
  }

  .custom-bundle-card__radio {
    width: 1.42rem;
    height: 1.42rem;
    margin-top: 0.28rem;
  }

  .custom-bundle-card__media {
    width: 3.55rem !important;
    min-width: 3.55rem !important;
    min-height: 3.55rem !important;
  }

  .custom-bundle-card__media--single img,
  .custom-bundle-card__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .custom-bundle-card__title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 0.45rem 0.65rem;
    align-items: start;
  }

  .custom-bundle-card__title-row > div:first-child,
  .custom-bundle-card__content,
  .custom-bundle-card__price-wrap {
    min-width: 0;
  }

  .custom-bundle-card h4 {
    font-size: 1.18rem !important;
    line-height: 1.05;
    overflow-wrap: normal;
  }

  .custom-bundle-card p {
    font-size: 0.96rem !important;
    line-height: 1.32;
  }

  .custom-bundle-card__price {
    font-size: 1.13rem !important;
    line-height: 1.05;
    white-space: nowrap;
  }

  .custom-bundle-card__compare {
    font-size: 0.86rem !important;
  }

  .custom-bundle-card__price-wrap {
    justify-items: end !important;
    max-width: 8.5rem;
  }

  .custom-bundle-card__badge,
  .custom-bundle-card__save-pill {
    min-height: 1.55rem;
    padding: 0.2rem 0.58rem;
    font-size: 0.72rem !important;
    white-space: normal;
    text-align: center;
  }

  .custom-bundle-card__save-pill {
    margin-top: 0.34rem;
  }

  .custom-bundle-config {
    padding: 0.85rem;
    border-radius: 1rem;
  }

  .custom-bundle-config__title {
    font-size: 0.96rem !important;
  }

  .custom-bundle-card__select {
    font-size: 0.98rem !important;
    font-weight: 800;
  }

  .site-main {
    padding-bottom: calc(6.4rem + env(safe-area-inset-bottom)) !important;
  }

  .sticky-mobile-atc {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 0.55rem !important;
    padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom)) !important;
  }

  .sticky-mobile-atc__product {
    grid-template-columns: 2.6rem minmax(0, 1fr) !important;
    gap: 0.5rem;
  }

  .sticky-mobile-atc__thumb {
    width: 2.6rem !important;
    height: 2.6rem !important;
  }

  .sticky-mobile-atc__title {
    max-width: 100%;
    font-size: 0.78rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-mobile-atc__price {
    font-size: 1.04rem !important;
  }

  .sticky-mobile-atc__button {
    min-width: 7rem !important;
    min-height: 3rem !important;
    padding-inline: 0.82rem !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 420px) {
  .thumbnail {
    flex-basis: 3.75rem !important;
    width: 3.75rem !important;
    height: 3.75rem !important;
    min-width: 3.75rem !important;
  }

  .product-info {
    padding-inline: 0.9rem;
  }

  .product-title {
    font-size: clamp(1.95rem, 9.2vw, 2.32rem) !important;
  }

  .custom-bundle-card {
    grid-template-columns: auto 3.1rem minmax(0, 1fr) !important;
    gap: 0.62rem !important;
    padding: 0.85rem 0.75rem !important;
  }

  .custom-bundle-card__media {
    width: 3.1rem !important;
    min-width: 3.1rem !important;
    min-height: 3.1rem !important;
  }

  .custom-bundle-card__title-row {
    grid-template-columns: 1fr !important;
    gap: 0.28rem;
  }

  .custom-bundle-card__price-wrap {
    justify-items: start !important;
    max-width: 100%;
  }

  .custom-bundle-card h4 {
    font-size: 1.08rem !important;
  }

  .custom-bundle-card p {
    font-size: 0.88rem !important;
  }

  .sticky-mobile-atc__button {
    min-width: 6.75rem !important;
    font-size: 0.86rem !important;
  }
}


/* --- Bundle badges + rating + CTA polish (June 2026) --- */
.rating-row .stars {
  gap: 0.12rem;
}

.rating-row .stars .icon,
.rating-row .stars .icon--star,
.rating-row .stars .icon--star svg {
  width: 1rem !important;
  height: 1rem !important;
}

.rating-row .muted {
  color: hsl(var(--foreground-hsl) / 0.58);
  font-weight: 600;
}

.custom-bundle-card--featured {
  grid-template-columns: auto 3.6rem minmax(0, 1fr);
}

.custom-bundle-card__top-badge {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  margin: -0.9rem -0.85rem 0.1rem -0.8rem;
  padding: 0.45rem 0.9rem;
  border-radius: 1.15rem 1.15rem 0.9rem 0.9rem;
  background: #f4d990;
  color: #7d5610;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.custom-bundle-card--featured .custom-bundle-card__radio,
.custom-bundle-card--featured .custom-bundle-card__media,
.custom-bundle-card--featured .custom-bundle-card__content {
  margin-top: 0.15rem;
}

.custom-bundle-card__price-wrap {
  align-self: start;
}

.custom-bundle-card__price {
  font-size: 1.32rem;
}

.custom-bundle-card__compare {
  font-size: 0.95rem;
}

.product-actions .btn,
[data-buy-now] {
  position: relative;
  overflow: hidden;
  min-height: 4rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, hsl(var(--primary-light-hsl)) 0%, hsl(var(--primary-hsl)) 100%);
  box-shadow: 0 18px 36px -18px hsl(var(--primary-hsl) / 0.55);
  letter-spacing: -0.01em;
}

.product-actions .btn:hover,
[data-buy-now]:hover,
.product-actions .btn:focus-visible,
[data-buy-now]:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px -18px hsl(var(--primary-hsl) / 0.62);
}

.sticky-mobile-atc__info > span[data-selected-bundle-name] {
  font-size: 0.72rem;
  font-weight: 800;
  color: hsl(var(--primary-hsl)) !important;
}

@media (max-width: 767px) {
  .rating-row {
    gap: 0.42rem;
    font-size: 0.95rem;
  }

  .rating-row strong {
    font-size: 1.05rem;
  }

  .rating-row .muted {
    font-size: 0.92rem;
  }

  .custom-bundle-card__top-badge {
    min-height: 1.9rem;
    font-size: 0.76rem;
  }

  .custom-bundle-card__price {
    font-size: 1.26rem;
  }

  .product-actions .btn,
  [data-buy-now] {
    font-size: 1.08rem;
  }
}

@media (max-width: 420px) {
  .custom-bundle-card__top-badge {
    margin-left: -0.72rem;
    margin-right: -0.72rem;
    font-size: 0.72rem;
  }

  .sticky-mobile-atc__info > span[data-selected-bundle-name] {
    font-size: 0.68rem;
  }
}


/* --- CTA + bundle polish + tighter UGC spacing (June 2026) --- */
.product-actions .btn,
[data-buy-now],
.sticky-mobile-atc__button,
.final-cta .btn {
  background: hsl(var(--primary-hsl)) !important;
  background-image: none !important;
  box-shadow: 0 14px 30px -18px hsl(var(--primary-hsl) / 0.42) !important;
}

[data-buy-now]::before,
.sticky-mobile-atc__button::before,
.final-cta .btn::before {
  display: none !important;
}

.custom-bundle-card--featured {
  border-color: #e4c36d;
  background: linear-gradient(180deg, #fffef9 0%, #ffffff 100%);
  box-shadow: 0 18px 34px -28px rgb(125 86 16 / 0.22);
}

.custom-bundle-card__top-badge {
  min-height: 1.65rem;
  margin: -0.9rem -0.85rem 0.6rem -0.8rem;
  padding: 0.32rem 0.75rem;
  border-radius: 1rem 1rem 0.85rem 0.85rem;
  background: #ecd182;
  color: #7a5611;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.custom-bundle-card--featured .custom-bundle-card__content {
  gap: 0.34rem;
}

.custom-bundle-card--featured .custom-bundle-card__title-row {
  align-items: start;
}

.custom-bundle-card__save-pill {
  margin-top: 0.42rem;
}

.custom-bundle-card__price-wrap {
  gap: 0.16rem;
}

.custom-bundle-card__price {
  letter-spacing: -0.04em;
}

.custom-bundle-card__compare {
  opacity: 0.78;
}

.ugc-proof-section {
  padding-block: 2rem !important;
}

.ugc-proof__header,
.comparison-showcase__header,
.use-cases__header {
  margin-bottom: 0.35rem !important;
}

.ugc-proof__header .section-copy,
.comparison-showcase__header .section-copy,
.use-cases__header .section-copy {
  margin: 0.45rem auto 0.95rem !important;
}

.ugc-proof__track,
.comparison-showcase__grid {
  gap: 0.8rem;
  padding: 0.1rem 0 0.45rem;
}

.ugc-card__body {
  gap: 0.6rem;
  padding: 0.85rem;
}

.ugc-proof__hint,
.comparison-showcase__hint {
  margin-top: 0.35rem;
}

@media (max-width: 767px) {
  .product-actions .btn,
  [data-buy-now] {
    min-height: 3.85rem;
    font-size: 1.02rem;
  }

  .custom-bundle-card--featured .custom-bundle-card__price {
    font-size: 1.28rem;
  }

  .custom-bundle-card__top-badge {
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
  }

  .ugc-proof-section,
  .ovapet-comparison-showcase,
  .use-cases-section {
    padding-block: 2rem !important;
  }

  .ugc-proof__header .section-copy,
  .comparison-showcase__header .section-copy,
  .use-cases__header .section-copy {
    margin-bottom: 0.9rem !important;
  }

  .ugc-proof__track {
    gap: 0.75rem;
    padding-bottom: 0.35rem;
  }

  .ugc-card {
    width: min(80vw, 20rem);
  }

  .sticky-mobile-atc__button {
    background: hsl(var(--primary-hsl)) !important;
  }
}

/* --- Smart site gutters + carousel overflow fix (June 2026) --- */
:root {
  --site-mobile-gutter: clamp(16px, 4.8vw, 24px);
  --site-tablet-gutter: clamp(22px, 4vw, 36px);
}

@media (max-width: 959px) {
  .page-width,
  .page-width--wide {
    width: calc(100% - (var(--site-tablet-gutter) * 2)) !important;
    max-width: 80rem;
  }
}

@media (max-width: 767px) {
  .page-width,
  .page-width--wide {
    width: calc(100% - (var(--site-mobile-gutter) * 2)) !important;
    max-width: 80rem;
  }

  /* Keep horizontal swipe sections inside the screen instead of pulling them to the viewport edge. */
  .ugc-proof__track,
  .reviews-carousel__track,
  .comparison-showcase__grid {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    padding-inline: 0 0.35rem !important;
    scroll-padding-inline: 0 !important;
    box-sizing: border-box;
  }

  .ugc-card,
  .review-photo-card,
  .comparison-showcase-card {
    scroll-snap-align: start;
  }

  .ugc-card:first-child,
  .review-photo-card:first-child,
  .comparison-showcase-card:first-child {
    margin-left: 0 !important;
  }

  .ugc-card:last-child,
  .review-photo-card:last-child,
  .comparison-showcase-card:last-child {
    margin-right: 0.35rem !important;
  }

  /* Cards should feel padded, but still show the next card as a swipe hint. */
  .ugc-card {
    width: min(calc(100vw - (var(--site-mobile-gutter) * 2) - 0.25rem), 20.5rem) !important;
  }

  .review-photo-card {
    width: min(calc(100vw - (var(--site-mobile-gutter) * 2) - 0.25rem), 21rem) !important;
  }

  .comparison-showcase-card {
    width: min(calc(100vw - (var(--site-mobile-gutter) * 2) - 0.25rem), 22rem) !important;
  }

  .ugc-proof-section,
  .reviews-carousel,
  .use-cases-section,
  .ovapet-comparison-showcase,
  .features-section,
  .problem-section,
  .solution-section,
  .faq-section,
  .final-cta {
    overflow-x: clip;
  }

  .use-cases-grid,
  .features-grid,
  .problem-grid,
  .trust-grid {
    max-width: 100%;
    box-sizing: border-box;
  }

  .use-case-card,
  .feature-card,
  .problem-card,
  .ugc-card,
  .review-photo-card {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  :root {
    --site-mobile-gutter: 16px;
  }

  .use-cases-grid {
    gap: 0.75rem;
  }
}


/* --- Bundle image picker + mobile alignment fix (v10) --- */
@media (max-width: 767px) {
  .product-info,
  .product-form,
  .custom-bundle-picker,
  .custom-bundle-list,
  .custom-bundle-card,
  .custom-bundle-config {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .custom-bundle-picker {
    margin-inline: 0 !important;
    padding-inline: 0 !important;
    overflow: visible !important;
  }

  .custom-bundle-list {
    margin-inline: 0 !important;
    padding-inline: 0 !important;
    gap: 0.78rem !important;
  }

  .custom-bundle-card {
    margin-inline: 0 !important;
    border-radius: 1.15rem !important;
    padding: 0.9rem 0.85rem !important;
    grid-template-columns: 1.4rem 3.75rem minmax(0, 1fr) !important;
    column-gap: 0.72rem !important;
    overflow: hidden !important;
  }

  .custom-bundle-card--featured {
    padding-top: 0 !important;
  }

  .custom-bundle-card__top-badge {
    grid-column: 1 / -1 !important;
    width: calc(100% + 1.7rem) !important;
    margin: 0 -0.85rem 0.72rem -0.85rem !important;
    border-radius: 1.15rem 1.15rem 0.75rem 0.75rem !important;
  }

  .custom-bundle-card__radio {
    margin-top: 0.25rem !important;
  }

  .custom-bundle-card__media {
    width: 3.75rem !important;
    min-width: 3.75rem !important;
    height: 3.75rem !important;
    min-height: 3.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border-radius: 0.82rem !important;
    background: #fff8f4 !important;
  }

  .custom-bundle-card__media--single img,
  .custom-bundle-card__media img,
  .custom-bundle-card__media picture,
  .custom-bundle-card__media picture img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    border: 0 !important;
    background: transparent !important;
  }

  .custom-bundle-card__content {
    min-width: 0 !important;
    width: 100% !important;
  }

  .custom-bundle-card__title-row {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 0.5rem !important;
    align-items: start !important;
  }

  .custom-bundle-card__price-wrap {
    justify-items: end !important;
    max-width: 7.5rem !important;
  }

  .custom-bundle-card h4 {
    font-size: 1.16rem !important;
    line-height: 1.05 !important;
    white-space: normal !important;
  }

  .custom-bundle-card p {
    font-size: 0.92rem !important;
    line-height: 1.34 !important;
  }

  .custom-bundle-card__price {
    font-size: 1.22rem !important;
    white-space: nowrap !important;
  }

  .custom-bundle-card__compare {
    font-size: 0.86rem !important;
  }

  .custom-bundle-config {
    margin-inline: 0 !important;
    padding: 0.85rem !important;
  }
}

@media (max-width: 380px) {
  .custom-bundle-card {
    grid-template-columns: 1.3rem 3.25rem minmax(0, 1fr) !important;
    column-gap: 0.58rem !important;
    padding-inline: 0.72rem !important;
  }

  .custom-bundle-card__top-badge {
    width: calc(100% + 1.44rem) !important;
    margin-inline: -0.72rem !important;
  }

  .custom-bundle-card__media {
    width: 3.25rem !important;
    min-width: 3.25rem !important;
    height: 3.25rem !important;
    min-height: 3.25rem !important;
  }

  .custom-bundle-card__title-row {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 0.4rem !important;
  }

  .custom-bundle-card__price-wrap {
    max-width: 6.4rem !important;
  }

  .custom-bundle-card h4 {
    font-size: 1.05rem !important;
  }

  .custom-bundle-card p {
    font-size: 0.84rem !important;
  }

  .custom-bundle-card__price {
    font-size: 1.08rem !important;
  }
}


/* --- Product/bundle alignment + clickable bundle cards + color thumbnail sync (v11) --- */
@media (max-width: 767px) {
  .product .page-width--wide {
    width: calc(100% - 32px) !important;
    margin-inline: auto !important;
  }

  .product-info {
    padding-inline: 1.05rem !important;
    overflow: hidden !important;
  }

  .custom-bundle-picker {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    overflow: hidden !important;
  }

  .custom-bundle-picker__heading {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
    gap: 0.65rem !important;
  }

  .custom-bundle-list {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
  }

  .custom-bundle-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    padding: 0.95rem 1rem !important;
    grid-template-columns: 1.45rem 4.25rem minmax(0, 1fr) !important;
    column-gap: 0.78rem !important;
    align-items: start !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent;
  }

  .custom-bundle-card--featured {
    padding-top: 0 !important;
  }

  .custom-bundle-card__top-badge {
    width: calc(100% + 2rem) !important;
    margin: 0 -1rem 0.78rem -1rem !important;
  }

  .custom-bundle-card__radio {
    margin-top: 0.45rem !important;
    pointer-events: none !important;
  }

  .custom-bundle-card__media {
    width: 4.25rem !important;
    min-width: 4.25rem !important;
    height: 4.25rem !important;
    min-height: 4.25rem !important;
    pointer-events: none !important;
  }

  .custom-bundle-card__media img,
  .custom-bundle-card__media picture,
  .custom-bundle-card__media picture img {
    pointer-events: none !important;
  }

  .custom-bundle-card__content {
    min-width: 0 !important;
    padding-right: 0.08rem !important;
  }

  .custom-bundle-card__title-row {
    grid-template-columns: minmax(0, 1fr) max-content !important;
    gap: 0.9rem !important;
    align-items: start !important;
  }

  .custom-bundle-card__price-wrap {
    justify-items: end !important;
    max-width: 5.5rem !important;
    text-align: right !important;
  }

  .custom-bundle-card h4 {
    font-size: 1.15rem !important;
    line-height: 1.1 !important;
  }

  .custom-bundle-card p {
    max-width: 100% !important;
    font-size: 0.9rem !important;
    line-height: 1.34 !important;
  }

  .custom-bundle-card__price {
    font-size: 1.17rem !important;
    line-height: 1.05 !important;
  }

  .custom-bundle-config {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    padding: 0.9rem 1rem !important;
  }

  .custom-bundle-config__row {
    grid-template-columns: 3.1rem minmax(0, 1fr) !important;
  }

  .custom-bundle-config__thumb {
    width: 3.1rem !important;
    height: 3.1rem !important;
  }

  .custom-bundle-card__select {
    min-width: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 420px) {
  .product .page-width--wide {
    width: calc(100% - 28px) !important;
  }

  .product-info {
    padding-inline: 0.95rem !important;
  }

  .custom-bundle-card {
    grid-template-columns: 1.35rem 3.85rem minmax(0, 1fr) !important;
    column-gap: 0.64rem !important;
    padding-inline: 0.84rem !important;
  }

  .custom-bundle-card__top-badge {
    width: calc(100% + 1.68rem) !important;
    margin-inline: -0.84rem !important;
  }

  .custom-bundle-card__media {
    width: 3.85rem !important;
    min-width: 3.85rem !important;
    height: 3.85rem !important;
    min-height: 3.85rem !important;
  }

  .custom-bundle-card__title-row {
    gap: 0.62rem !important;
  }

  .custom-bundle-card__price-wrap {
    max-width: 5rem !important;
  }

  .custom-bundle-card h4 {
    font-size: 1.05rem !important;
  }

  .custom-bundle-card p {
    font-size: 0.84rem !important;
  }

  .custom-bundle-card__price {
    font-size: 1.06rem !important;
  }
}


/* --- Bundle color buttons instead of selects --- */
.custom-bundle-color-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.custom-bundle-color-button {
  appearance: none;
  border: 1px solid hsl(var(--border-hsl));
  background: #fff;
  color: var(--obsidian);
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border-radius: 0.9rem;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: all 0.18s ease;
}

.custom-bundle-color-button:hover {
  border-color: hsl(var(--primary-hsl) / 0.6);
  background: #f8fcfb;
}

.custom-bundle-color-button.is-selected {
  border-color: hsl(var(--primary-hsl));
  background: hsl(var(--primary-hsl));
  color: #fff;
  box-shadow: 0 8px 18px -12px hsl(var(--primary-hsl) / 0.45);
}

.custom-bundle-card__select { display: none !important; }

@media (max-width: 767px) {
  .custom-bundle-color-buttons {
    gap: 0.45rem;
  }

  .custom-bundle-color-button {
    min-height: 2.55rem;
    padding: 0.6rem 0.9rem;
    font-size: 0.92rem;
  }
}


/* --- Force clear purchase CTA text --- */
.product-actions .btn,
[data-buy-now],
.sticky-mobile-atc__button {
  color: #ffffff !important;
}

.product-actions .btn span,
[data-buy-now] span,
.sticky-mobile-atc__button span {
  color: #ffffff !important;
}


/* --- Remove white gap before footer under final CTA --- */
.final-cta {
  margin-bottom: 0 !important;
  padding-bottom: 2.75rem !important;
}

.final-cta__inner {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.final-cta + .site-footer,
.site-main + .site-footer,
.site-footer {
  margin-top: 0 !important;
}

@media (max-width: 767px) {
  .final-cta {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
  }
}


/* --- v15 hard fixes: force CTA text styles and remove footer white gap --- */

/* The white strip was caused by global bottom padding on .site-main for the sticky ATC.
   Keep the sticky bar, but do not create empty white space before the footer. */
.site-main,
.template-product .site-main {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.final-cta,
.site-main > .final-cta,
.final-cta:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 2.25rem !important;
}

.final-cta + .site-footer,
.site-footer {
  margin-top: 0 !important;
}

/* Clear Buy Now button appearance everywhere */
.product-actions .btn,
[data-buy-now],
.sticky-mobile-atc__button,
.final-cta .btn {
  background: hsl(var(--primary-hsl)) !important;
  background-image: none !important;
  color: #ffffff !important;
}

.product-actions .btn span,
[data-buy-now] span,
.sticky-mobile-atc__button span,
.final-cta .btn {
  color: #ffffff !important;
}

/* Safety: if old text is still cached in a saved setting, visually replace only on the product CTA */
.product-actions [data-buy-now] > span:not(.btn-inline-icon) {
  font-size: 0 !important;
}

.product-actions [data-buy-now] > span:not(.btn-inline-icon)::after {
  content: "Buy Now";
  font-size: 1.08rem;
  font-weight: 900;
  color: #ffffff;
}

/* Do not create desktop/mobile blank gutter under the last section */
@media (max-width: 767px) {
  .site-main,
  .template-product .site-main {
    padding-bottom: 0 !important;
  }

  .final-cta {
    padding-bottom: 1.75rem !important;
  }

  .site-footer__grid {
    padding-top: 2.25rem !important;
  }
}

/* ── OvaPet product page patch (v6) ── */

/* Bundle card product images are transparent PNGs — never paint a background behind them */
.custom-bundle-card__media,
.custom-bundle-card__media--single,
.custom-bundle-card__media img,
.custom-bundle-card__media--single img,
.custom-bundle-card__media picture,
.custom-bundle-card__media picture img {
  background: transparent !important;
}

/* Main Product section: full-bleed on mobile, no side gutter on the white content area */
@media (max-width: 767px) {
  .product .page-width--wide {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
  }
}

/* Trust badges: compact multi-column grid on mobile so it doesn't eat vertical space */
@media (max-width: 767px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.5rem !important;
  }

  .trust-item {
    padding: 0.5rem 0.65rem !important;
    font-size: 0.72rem !important;
    min-height: 2.2rem !important;
  }
}

/* Hero product photo: no rounding, no separate card look -- blend into the white content block.
   Rebuilt as a transform-driven carousel (v10): position is always an explicit JS-set
   translateX, never native browser scrollLeft, so it can never start on the wrong slide or
   get stuck fighting a "remembered" scroll position. The next photo still peeks at the edge
   to hint that it's swipeable. */
.product .product-main-image {
  position: relative !important;
  overflow: hidden !important;
  aspect-ratio: auto !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.product .product-main-image__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0.6rem !important;
  will-change: transform;
  transition: transform 0.35s ease;
  touch-action: pan-y;
  cursor: grab;
}
.product .product-main-image__slide {
  flex: 0 0 88%;
  width: 88%;
  max-width: 88%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product .product-main-image__slide img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
  border-radius: 0 !important;
  position: static !important;
  pointer-events: none;
}
@media (min-width: 768px) {
  .product .product-main-image__slide {
    flex-basis: 92%;
    width: 92%;
    max-width: 92%;
  }
}

.product .product-main-image__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  color: #111;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}
.product .product-main-image__nav--prev {
  left: 0.5rem;
}
.product .product-main-image__nav--next {
  right: 0.5rem;
}
.product .product-main-image__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Merge gallery + text into one continuous block (no gap, no separate card boundaries) on mobile */
@media (max-width: 767px) {
  .product .product-grid {
    gap: 0 !important;
    background: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .product .product-gallery {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .product .product-info {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}

/* Bundle-card save pill / compare price: force real hide when JS sets [hidden],
   even if another rule elsewhere sets a display value on the same element. */
.custom-bundle-card__save-pill[hidden],
.custom-bundle-card__compare[hidden],
[data-bundle-price-was][hidden],
[data-bundle-save-pill][hidden] {
  display: none !important;
}
