/* ==========================================================================
   PAWZENA - Styles CSS
   ========================================================================== */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1b1a;
  --cream: #fff4dc;
  --butter: rgb(252, 222, 64);
  --mint: #bfead9;
  --coral: #ff8a70;
  --paper: #ffffff;
  --bordeaux: #6B5534;
  --red-promo: #BE3144;
  --green: #5b9d8b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: var(--red-promo);
  color: white;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: background-color 0.4s ease;
}

.announcement-texts {
  position: relative;
  height: 20px;
  min-width: 300px;
}

.announcement-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  white-space: nowrap;
  display: inline-block;
  line-height: 20px;
}

.announcement-text--with-mascot {
  padding-left: 74px;
}

.announcement-mascot {
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 62px;
  max-width: 62px;
  object-fit: contain;
  pointer-events: none;
}

.announcement-mascot--small {
  left: 14px;
  height: 46px;
  max-width: 46px;
}

.announcement-text.active {
  opacity: 1;
}

.announcement-arrow {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.announcement-arrow:hover {
  background: rgba(255,255,255,0.3);
}

/* ---------- Header ---------- */
.header {
  background: var(--paper);
  padding: 14px 0;
  margin-top: 48px; /* Space for fixed announcement bar */
  overflow: hidden;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-left {
  justify-self: start;
  margin-left: 0;
  transform: translateX(-40%);
}

.logo {
  justify-self: center;
}

.nav-right {
  justify-self: end;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--bordeaux);
}

.header .nav-left {
  gap: 14px;
}

.header .nav-left .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid #5f4b32;
  background: #fdf0c8;
  box-shadow: 0 3px 0 #5f4b32;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  color: #3d3020;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.header .nav-left .nav-link:hover,
.header .nav-left .nav-link.active {
  color: #3d3020;
  background: #f8dd69;
  transform: translateY(-1px);
}

.logo img {
  height: 60px;
  transform: scale(1.2);
  transform-origin: center;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: border-color 0.3s;
}

.icon-btn:hover {
  border-color: var(--ink);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  stroke-width: 2;
  fill: none;
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: stretch;
}

.dogs-landing-page .hero,
.cats-landing-page .hero,
.all-landing-page .hero {
  min-height: calc((100vh - 120px) * 0.8);
}

/* Left panel - orange with cards */
.hero-left-panel {
  flex: 1;
  display: flex;
}

/* Right panel - image */
.hero-right-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-right-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-right-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-right-image.is-active {
  opacity: 1;
}

.hero-scroll-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.hero-scroll-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.25);
}

.hero-scroll-dot.is-active {
  background: rgba(0,0,0,0.75);
}

/* Orange background wrapper */
.hero-orange-bg {
  background-color: #e8892a;
  background-image: url("../images/fond d'ecran section1 index/abstract-liquid-orange-gradient-dark-background_667461-4388.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 30px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

/* Arc shapes - no glow */
.hero-orange-bg::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border: 70px solid rgba(200,120,30,0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orange-bg::after {
  content: '';
  position: absolute;
  bottom: -250px;
  right: -150px;
  width: 550px;
  height: 550px;
  border: 60px solid rgba(190,110,25,0.18);
  border-radius: 50%;
  pointer-events: none;
}

/* Main card box */
.hero-card-box {
  position: relative;
  z-index: 1;
  background: #f4f1ee;
  border-radius: 20px;
  padding: 92px 40px 30px;
  text-align: center;
  border: 3px solid var(--bordeaux);
  width: 100%;
  max-width: 92%;
}

.trustpilot-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(252, 222, 64);
  color: #2f2a25;
  padding: 8px 20px;
  border-radius: 999px;
  border: 3px solid var(--bordeaux);
  box-shadow: 0 4px 0 #5a4324;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1;
  margin: 0;
}

.hero-card-box h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}

.hero-card-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 22px;
}

.btn-hero-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: rgb(252, 222, 64);
  color: #3d3428;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.9px;
  border: 3px solid var(--bordeaux);
  box-shadow: 0 3px 0 #5a4324;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #5a4324;
}

.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: #555;
}

.hero-tags u {
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

/* Hero review card */
.hero-review-card {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 12px;
  padding: 18px 22px;
  border: 2px solid #8a7a2e;
  width: 100%;
  max-width: 92%;
}

.hero-review-quote {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 12px;
  font-style: italic;
  flex: 1;
}

.hero-review-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-review-products {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-review-product-photo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.15);
}

.hero-review-product-mascot {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hero-review-product-mascot[src*="sleep dog"] {
  transform: scale(1.55);
  transform-origin: center;
}

.hero-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e0d8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink);
}

.hero-review-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}

.hero-review-verified {
  font-size: 0.72rem;
  color: #00b67a;
  font-weight: 600;
  background: #e6f9f0;
  padding: 3px 10px;
  border-radius: 20px;
}

.btn-primary {
  display: inline-block;
  background: var(--butter);
  color: var(--ink);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,211,106,0.4);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--ink);
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--ink);
  color: white;
}

/* Hero Image Card */
.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 20px;
}

.hero-card {
  position: relative;
  background: white;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  max-width: 380px;
  z-index: 2;
}

/* Shadow card behind */
.hero-card::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: -30px;
  bottom: -30px;
  background: #f5d6c8;
  border-radius: 30px;
  z-index: -1;
}

.hero-card-inner {
  border: 2px dashed #bbb;
  border-radius: 20px;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: white;
}

.hero-card-inner img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.placeholder-text {
  color: #888;
  font-size: 0.95rem;
}

.hero-card-badge {
  position: absolute;
  bottom: 20px;
  right: -30px;
  background: #f5a089;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(245,160,137,0.4);
  z-index: 3;
}

/* ---------- Marquee ---------- */
.marquee {
  background: rgb(85, 64, 37);
  color: white;
  padding: 28px 0;
  overflow: hidden;
  width: 100%;
  min-width: 100%;
}

.marquee-track {
  display: flex;
  animation: scroll 10s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 50px;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 500;
}

.marquee-item svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Shop by Collection ---------- */
.shop-collection {
  background: rgb(252, 222, 64);
  padding: 46px 20px 52px;
}

.shop-collection-container {
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-collection-heading-card {
  background: #ececec;
  border-radius: 20px;
  border: 3px solid #5e4b32;
  box-shadow: 0 6px 0 #5e4b32;
  padding: 14px 26px 12px;
  text-align: center;
  margin-bottom: 28px;
  min-width: 450px;
}

.shop-collection-heading-card h2 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.15;
  color: #3c332c;
}

.shop-collection-heading-card p {
  margin: 4px 0 0;
  font-size: 1.05rem;
  color: #4a4540;
}

.shop-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  width: 100%;
  max-width: 780px;
}

.shop-collection-card {
  background: #ececec;
  border-radius: 20px;
  border: 3px solid #5e4b32;
  box-shadow: 0 6px 0 #5e4b32;
  padding: 16px 16px 18px;
  text-align: center;
}

.shop-collection-image {
  height: 166px;
  border-radius: 14px;
  border: 2px solid #5e4b32;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
}

.shop-collection-image--dog {
  background: #a8a925;
}

.shop-collection-image--cat {
  background: #f46339;
}

.shop-collection-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.shop-collection-mascot {
  width: 102px;
  height: 102px;
  object-fit: contain;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.25));
}

.shop-collection-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(252, 222, 64);
  border: 2px solid #5e4b30;
  color: transparent;
  font-size: 0;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 2px 0 #5e4b30;
}

.shop-collection-arrow::before {
  content: '➜';
  color: #2f271e;
  font-size: 1.55rem;
  line-height: 1;
  transform: translateY(-1px);
}

.shop-collection-card h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.2;
  color: #232323;
  letter-spacing: 0.2px;
}

.shop-collection-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 999px;
  border: 3px solid #5e4b30;
  background: rgb(252, 222, 64);
  box-shadow: 0 4px 0 #5e4b30;
  color: #3c3429;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: none;
}

.shop-collection-btn:hover {
  transform: translateY(1px);
  box-shadow: 0 3px 0 #5e4b30;
}

/* ---------- Top Picks Carousel ---------- */
.top-picks {
  padding: 80px 0;
  background: rgb(235, 230, 226);
  overflow-x: hidden;
  overflow-y: visible;
}

.top-picks .container {
  max-width: 1900px;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--ink);
}

.top-picks-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 3rem;
}

.top-picks-header .section-title {
  margin-bottom: 0;
}

.top-picks-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-container {
  position: relative;
  overflow: visible;
  padding-bottom: 10px;
  cursor: default;
  user-select: none;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.carousel-arrow {
  position: static;
  transform: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(31, 27, 26, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: var(--paper);
}

.carousel-container.is-dragging {
  cursor: default;
}

.carousel {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  overflow: visible;
  padding: 20px 0;
  width: 100%;
  cursor: auto;
}

.carousel-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1240px) {
  .top-picks .carousel-container {
    width: 100%;
    max-width: none;
  }
}

.carousel-card {
  flex: 0 1 calc((100% - 80px) / 5);
  max-width: 370px;
  min-width: 0;
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.top-picks-arrows,
.carousel-dots {
  display: none;
}

.carousel-card:hover {
  transform: translateY(-5px);
}

.carousel-card-image {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.carousel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.carousel-card-image img.product-image-dezoom {
  object-fit: contain;
}

.carousel-card-image img.product-image-zoom-lite {
  transform: scale(1.13);
  transform-origin: center;
}

.carousel-card-image img.product-image-zoom-more {
  transform: scale(1.33);
}

.carousel-card-image img.product-image-zoom-plus {
  transform: scale(1.18);
}

.carousel-card-image img.product-image-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--coral);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.carousel-card-content {
  padding: 25px;
}

.carousel-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.stars {
  color: var(--butter);
  margin-bottom: 15px;
}

.stars span {
  color: #888;
  font-size: 0.85rem;
  margin-left: 5px;
}

.features {
  margin-bottom: 20px;
}

.features li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: #555;
}

.price {
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.btn-add {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-add:hover {
  background: #333;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.28;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.carousel-dot.active {
  opacity: 0.75;
  transform: scale(1.06);
}

/* ---------- Over 1 Million Claims ---------- */
.million-claims {
  background: #ffffff;
  padding: 46px 0 52px;
}

.million-claims-container {
  max-width: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 3.2vw, 54px);
  align-items: stretch;
  padding-left: clamp(16px, 4vw, 72px);
  padding-right: clamp(8px, 1.4vw, 22px);
}

.million-claims-content {
  padding: 8px 8px 0;
  justify-self: stretch;
  align-self: start;
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.million-claims-heading {
  text-align: left;
  margin-bottom: 20px;
}

.million-claims-title {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: clamp(2rem, 2vw, 3rem);
  line-height: 1.1;
  color: #1f232b;
}

.million-claims-highlight {
  background: rgb(246, 146, 36);
  color: #fff;
  border: 2px solid #5f4b32;
  border-radius: 999px;
  box-shadow: 0 2px 0 #5f4b32;
  padding: 2px 14px 4px;
  font-size: 0.78em;
  transform: rotate(-4deg);
  display: inline-flex;
}

.million-claims-subtitle {
  margin: 14px 0 0;
  color: #5c5f67;
  font-size: 1.05rem;
}

.million-claims-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.million-claims-column h3 {
  margin: 0 0 10px;
  color: #3a3d44;
  font-size: 1.9rem;
  font-weight: 700;
}

.million-claims-column-title {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.million-claims-title-mascot {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.million-claims-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.million-claims-column li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0 10px;
  border-bottom: 2px solid #b1a79d;
}

.million-claims-column strong {
  font-size: 3.5rem;
  line-height: 1;
  color: #1f232b;
}

.million-claims-column span {
  font-size: 1.18rem;
  line-height: 1.25;
  color: #4f535b;
}

.million-claims-note {
  margin: 24px 0 0;
  text-align: left;
  color: #6f6f72;
  font-size: 0.78rem;
}

.million-claims-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 18px);
  min-height: 0;
  height: auto;
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
}

.million-claims-rail {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: auto;
  min-height: 100%;
}

.million-claims-track {
  display: flex;
  flex-direction: column;
  --million-claims-loop-shift: -50%;
  will-change: transform;
}

.million-claims-track.is-extended-loop {
  --million-claims-loop-shift: -33.333333%;
}

.million-claims-set {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1vw, 16px);
  padding-bottom: 0;
}

.million-claims-set + .million-claims-set {
  margin-top: clamp(10px, 1vw, 16px);
}

.million-claims-rail--up .million-claims-track {
  animation: millionClaimsScrollUp 18s linear infinite;
}

.million-claims-rail--down .million-claims-track {
  animation: millionClaimsScrollDown 18s linear infinite;
}

.million-claims-item {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
}

.million-claims-item.is-sm {
  height: clamp(150px, 16vh, 210px);
}

.million-claims-item.is-md {
  height: clamp(230px, 24vh, 320px);
}

.million-claims-item.is-lg {
  height: clamp(300px, 32vh, 430px);
}

.million-claims-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  background: transparent;
}

@keyframes millionClaimsScrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--million-claims-loop-shift));
  }
}

@keyframes millionClaimsScrollDown {
  from {
    transform: translateY(var(--million-claims-loop-shift));
  }
  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .million-claims-rail--up .million-claims-track,
  .million-claims-rail--down .million-claims-track {
    animation: none;
  }
}

/* ---------- Happy Customers Reviews ---------- */
.reviews-section {
  background: rgb(252, 222, 64);
  padding: 54px 0 14px;
  overflow: hidden;
}

.reviews-header-wrap {
  text-align: center;
  margin-bottom: 22px;
}

.reviews-title {
  margin: 0;
  color: #1f232b;
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
}

.reviews-grid {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 16px 8px;
  box-sizing: border-box;
  cursor: grab;
  user-select: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.reviews-grid.is-dragging {
  cursor: grabbing;
}

.review-card {
  flex: 0 0 292px;
  width: 292px;
  border: 3px solid #6b5434;
  border-radius: 18px;
  overflow: hidden;
  background: #ececed;
  box-shadow: 0 4px 0 #6b5434;
  display: flex;
  flex-direction: column;
}

.review-media {
  padding: 10px 10px 0;
}

.review-photo {
  width: 100%;
  height: 198px;
  object-fit: cover;
  display: block;
  border: 2px solid #6b5434;
  border-radius: 12px;
}

.review-content {
  padding: 8px 12px 12px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  margin: 0 0 14px;
  font-size: 1.12rem;
  color: rgb(252, 222, 64);
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 700;
}

.review-meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.review-name {
  margin: 0;
  color: #25262a;
  font-size: 1.02rem;
  line-height: 1.1;
  font-weight: 700;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid #69c6a0;
  background: #dff4eb;
  color: #1f9a6d;
  font-size: 0.73rem;
  line-height: 1;
  font-weight: 700;
}

.review-text {
  margin: 10px 0 0;
  color: #2f333a;
  font-size: 0.91rem;
  line-height: 1.45;
}

.reviews-dots {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 18px;
}

.reviews-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(53, 50, 45, 0.3);
  cursor: pointer;
}

.reviews-dot.is-active {
  background: #3f392f;
}

/* ---------- Product Happy Customers (static) ---------- */
.happy-dog-reviews-section {
  background: rgb(252, 222, 64);
  padding: 54px 0 48px;
}

.happy-dog-reviews-header-wrap {
  text-align: center;
  margin-bottom: 38px;
}

.happy-dog-reviews-title {
  margin: 0;
  color: #1f232b;
  font-size: clamp(2rem, 2.4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
}

.happy-dog-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 292px));
  justify-content: center;
  gap: 24px;
}

.happy-dog-review-card {
  border: 3px solid #6b5434;
  border-radius: 18px;
  overflow: hidden;
  background: #ececed;
  box-shadow: 0 4px 0 #6b5434;
  display: flex;
  flex-direction: column;
}

.happy-dog-review-media {
  padding: 10px 10px 0;
}

.happy-dog-review-photo {
  width: 100%;
  height: 198px;
  object-fit: cover;
  display: block;
  border: 2px solid #6b5434;
  border-radius: 12px;
}

.happy-dog-review-content {
  padding: 8px 12px 12px;
  display: flex;
  flex-direction: column;
}

.happy-dog-review-stars {
  margin: 0 0 14px;
  font-size: 1.12rem;
  color: rgb(252, 222, 64);
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 700;
}

.happy-dog-review-meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.happy-dog-review-name {
  margin: 0;
  color: #25262a;
  font-size: 1.02rem;
  line-height: 1.1;
  font-weight: 700;
}

.happy-dog-review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid #69c6a0;
  background: #dff4eb;
  color: #1f9a6d;
  font-size: 0.73rem;
  line-height: 1;
  font-weight: 700;
}

.happy-dog-review-text {
  margin: 10px 0 0;
  color: #2f333a;
  font-size: 0.91rem;
  line-height: 1.45;
}

/* ---------- Video Stories Section ---------- */
.video-stories {
  background: rgb(252, 222, 64);
  padding: 54px 0 24px;
  overflow: hidden;
}

.video-stories-header-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 28px;
}

.video-stories-title {
  margin: 0;
  color: #1f232b;
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 800;
}

.video-stories-subtitle {
  margin: 8px 0 0;
  color: #30343c;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 500;
}

.video-stories-controls {
  position: absolute;
  right: 20px;
  bottom: -2px;
  display: flex;
  gap: 8px;
}

.video-stories-arrow {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: #634d30;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}

.video-stories-arrow:hover {
  background: #4f3d25;
}

.video-stories-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  padding: 6px 0 12px;
}

.video-stories-viewport::-webkit-scrollbar {
  display: none;
}

.video-stories-viewport.is-dragging {
  cursor: grabbing;
}

.video-stories-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 20px;
  margin: 0 auto;
}

.video-story-card {
  flex: 0 0 308px;
  width: 308px;
  border-radius: 22px;
  border: 3px solid #6b5434;
  background: #f3f2f1;
  box-shadow: 0 4px 0 #6b5434;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-story-media {
  position: relative;
  border-bottom: 2px solid #6b5434;
  background: #ddd;
  aspect-ratio: 3 / 4;
}

.video-story-poster,
.video-story-inline-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-story-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.video-story-play svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linejoin: round;
  transform: none;
  display: block;
}

.video-story-play:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
}

.video-story-play:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
}

.video-story-card.is-playing .video-story-poster,
.video-story-card.is-playing .video-story-play {
  display: none;
}

.video-story-content {
  background: #f4f4f4;
  padding: 18px 12px 11px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 166px;
  position: relative;
}

.video-story-content h3 {
  margin: 6px 0 0;
  font-size: 1.88rem;
  line-height: 1.15;
  color: #2e2f33;
  font-weight: 800;
  min-height: 2.3em;
}

.video-story-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-right: 0;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 248, 214, 0.95);
  border: 1px solid rgba(95, 75, 50, 0.35);
  box-shadow: 0 1px 0 rgba(95, 75, 50, 0.28);
  overflow: hidden;
  z-index: 2;
}

.video-story-mascot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16);
  transform-origin: center;
  filter: contrast(1.12) saturate(1.2) drop-shadow(0 0 1px rgba(0, 0, 0, 0.28));
}

.video-story-content p {
  margin: 2px 0 8px;
  font-size: 0.92rem;
  line-height: 1.2;
  color: #4a4a4a;
  min-height: 2.4em;
}

.video-story-btn {
  display: block;
  width: 100%;
  margin-top: auto;
  border-radius: 999px;
  border: 2px solid #6b5434;
  background: rgb(252, 222, 64);
  color: #5a482f;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  padding: 10px 12px;
  box-shadow: 0 1px 0 #6b5434;
}

.video-story-btn:hover {
  background: rgb(252, 222, 64);
}

.video-stories-dots {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 18px;
}

.video-stories-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(53, 50, 45, 0.3);
  cursor: pointer;
}

.video-stories-dot.is-active {
  background: #3f392f;
}

.customer-reviews-section {
  background: #efefef;
  padding: 48px 20px 52px;
}

.customer-reviews-inner {
  max-width: 940px;
  margin: 0 auto;
}

.customer-reviews-title {
  margin: 0;
  text-align: center;
  color: #1f232b;
  font-size: 2.95rem;
  line-height: 1.05;
  font-weight: 700;
}

.customer-reviews-summary {
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.customer-reviews-score p {
  margin: 0;
  color: #2f333b;
  font-size: 0.95rem;
  line-height: 1.28;
}

.customer-reviews-score-stars {
  color: #f5be13;
  letter-spacing: 1px;
  font-size: 1rem;
}

.customer-reviews-score strong {
  color: #1f232b;
  font-size: 1rem;
  font-weight: 700;
}

.customer-reviews-divider {
  width: 1px;
  height: 42px;
  background: #b8aea0;
}

.customer-reviews-write {
  height: 42px;
  min-width: 190px;
  padding: 0 22px;
  border-radius: 999px;
  border: 3px solid #5f4b32;
  background: #f4d83f;
  color: #3a2f20;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 2px 0 #5f4b32;
}

.customer-reviews-media-strip {
  margin-top: 18px;
  padding: 0;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 4px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: grab;
  user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.customer-reviews-media-strip::-webkit-scrollbar {
  display: none;
}

.customer-reviews-media-strip.is-dragging {
  cursor: grabbing;
}

.customer-reviews-media-strip img {
  flex: 0 0 94px;
  width: 94px;
  height: 98px;
  object-fit: cover;
  display: block;
  background: transparent;
  border-radius: 10px;
  pointer-events: none;
}

.customer-reviews-filters {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.customer-reviews-filter {
  min-width: 170px;
  padding: 0 0 8px;
  border-bottom: 1px solid #575757;
  color: #4a4d56;
  font-size: 0.9rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.customer-reviews-filter span {
  color: #333;
  font-size: 0.76rem;
}

.customer-reviews-check {
  color: #4a4d56;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.customer-reviews-check input {
  width: 14px;
  height: 14px;
}

.customer-reviews-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.customer-review-card {
  border: 2px solid #7b6144;
  border-radius: 20px;
  background: #efefef;
  padding: 10px 12px 12px;
  min-height: 176px;
}

.customer-review-card h3 {
  margin: 0;
  color: #1f232b;
  font-size: 1.06rem;
  line-height: 1.15;
  font-weight: 700;
}

.customer-review-body {
  margin: 6px 0 0;
  color: #282d34;
  font-size: 0.95rem;
  line-height: 1.3;
}

.customer-review-stars {
  margin: 8px 0 0;
  color: #f3ba13;
  letter-spacing: 1px;
  font-size: 1rem;
  line-height: 1;
}

.customer-review-meta {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.customer-review-author {
  color: #1f232b;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.customer-review-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #4e4a47;
  background: #d6e0ec;
  color: #384455;
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.customer-review-verified {
  color: #6b4f33;
  font-size: 0.7rem;
}

.customer-review-time {
  color: #666;
  font-size: 0.85rem;
  white-space: nowrap;
}

.customer-reviews-more {
  margin: 14px auto 0;
  display: block;
  min-width: 140px;
  height: 40px;
  border-radius: 999px;
  border: 3px solid #5f4b32;
  background: #f4d83f;
  color: #3a2f20;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 2px 0 #5f4b32;
}

@media (max-width: 1024px) {
  .happy-dog-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 292px));
  }

  .customer-reviews-title {
    font-size: 2.4rem;
  }

  .customer-reviews-media-strip img {
    flex-basis: 90px;
    width: 90px;
  }

  .customer-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .happy-dog-reviews-section {
    padding: 38px 0 34px;
  }

  .happy-dog-reviews-header-wrap {
    margin-bottom: 22px;
  }

  .happy-dog-reviews-title {
    font-size: 1.9rem;
  }

  .happy-dog-reviews-grid {
    grid-template-columns: minmax(0, 292px);
    gap: 16px;
  }

  .customer-reviews-section {
    padding: 34px 12px 40px;
  }

  .customer-reviews-title {
    font-size: 1.9rem;
  }

  .customer-reviews-summary {
    flex-direction: column;
    gap: 10px;
  }

  .customer-reviews-divider {
    width: 70px;
    height: 1px;
  }

  .customer-reviews-write {
    min-width: 170px;
  }

  .customer-reviews-media-strip img {
    flex-basis: 82px;
    width: 82px;
    height: 82px;
  }

  .customer-reviews-filter {
    min-width: 140px;
    font-size: 0.84rem;
  }

  .customer-reviews-check {
    font-size: 0.84rem;
  }

  .customer-reviews-grid {
    grid-template-columns: 1fr;
  }
}

.trusted-products {
  background: #ffffff;
  padding: 76px 20px 86px;
}

.trusted-products-container {
  max-width: 1560px;
}

.trusted-products-title {
  margin: 0 0 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 3.32rem;
  line-height: 1.12;
  color: #1f232b;
  font-weight: 800;
}

.trusted-products-title-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.trusted-products-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 5px 18px 7px;
  border-radius: 999px;
  background: rgb(246, 146, 36);
  border: 3px solid #5f4b32;
  box-shadow: 0 3px 0 #5f4b32;
  color: #fff;
  font-size: 0.82em;
  font-weight: 800;
  transform: rotate(-4deg);
}

.trusted-products-title-mascot {
  display: none;
}

.trusted-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.trusted-product-card {
  position: relative;
}

.trusted-product-top {
  position: relative;
  height: 136px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0;
  z-index: 2;
}

.trusted-product-number {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  font-size: 12.4rem;
  font-weight: 800;
  line-height: 0.78;
  color: #5c452b;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
  z-index: 3;
}

.trusted-product-item {
  position: relative;
  width: 198px;
  height: 198px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.18));
  transform: translate(50%, 20px);
  z-index: 1;
}

.trusted-product-card:nth-child(2) .trusted-product-number {
  transform: translate(-50%, -10%);
}

.trusted-product-card:nth-child(2) .trusted-product-item {
  transform: translate(35%, -10%);
}

.trusted-product-card:nth-child(3) .trusted-product-item {
  transform: translate(60%, 20px);
}

.trusted-product-content {
  background: #e7e3de;
  border: 3px solid #6b5434;
  border-radius: 20px;
  box-shadow: 0 4px 0 #6b5434;
  padding: 24px 22px 22px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.trusted-product-rating {
  margin: 0 0 14px;
  font-size: 1.12rem;
  color: rgb(252, 222, 64);
  letter-spacing: 1px;
  font-weight: 700;
}

.trusted-product-rating span {
  color: #3f434a;
  font-weight: 500;
  letter-spacing: 0;
}

.trusted-product-content h3 {
  margin: 0 0 16px;
  color: #1e242d;
  font-size: 2.26rem;
  line-height: 1.26;
  font-weight: 800;
  min-height: 2.52em;
}

.trusted-product-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 188px;
}

.trusted-product-content li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: #3f434a;
  font-size: 1.56rem;
  line-height: 1.45;
}

.trusted-product-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(252, 222, 64);
  border: 1px solid #7a633d;
  transform: translateY(-50%);
}

.trusted-product-btn {
  margin-top: auto;
  width: 100%;
  height: 58px;
  border-radius: 999px;
  border: 3px solid #5f4b32;
  background: rgb(252, 222, 64);
  color: #5a482f;
  font-size: 1.08rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 0 #5f4b32;
}

.trusted-product-btn:hover {
  background: rgb(252, 222, 64);
}

@media (max-width: 1024px) {
  .video-stories {
    padding: 46px 0 20px;
  }
  .video-stories-title {
    font-size: 2.35rem;
  }
  .video-stories-track {
    gap: 16px;
  }
  .video-story-card {
    flex: 0 0 282px;
    width: 282px;
  }

  .trusted-products {
    padding: 58px 20px 64px;
  .carousel-card,
  .dogs-product-card,
  .product-card,
  .trusted-product-card {
    cursor: pointer;
  }
  }

  .trusted-products-title {
    font-size: 2.9rem;
    margin-bottom: 108px;
  }

  .trusted-products-grid {
    gap: 28px;
  }

  .trusted-product-number {
    font-size: 10.2rem;
    top: -8px;
  }

  .trusted-product-item {
    width: 148px;
    height: 148px;
    transform: translate(50%, 14px);
  }

  .trusted-product-card:nth-child(3) .trusted-product-item {
    transform: translate(60%, 14px);
  }

  .trusted-product-card:nth-child(2) .trusted-product-item {
    transform: translate(35%, -10%);
  }

  .trusted-product-content {
    padding: 20px 18px 18px;
    min-height: 376px;
  }

  .trusted-product-top {
    height: 118px;
  }

  .trusted-product-content h3 {
    font-size: 1.88rem;
    line-height: 1.22;
    min-height: 2.44em;
  }

  .trusted-product-content li {
    font-size: 1.26rem;
    line-height: 1.38;
  }

  .trusted-product-content ul {
    min-height: 150px;
  }

  .trusted-product-btn {
    font-size: 1.56rem;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .video-stories {
    padding: 34px 0 16px;
  }
  .video-stories-title {
    font-size: 1.85rem;
  }
  .video-stories-subtitle {
    font-size: 0.98rem;
  }
  .video-stories-controls {
    position: static;
    justify-content: center;
    margin-top: 10px;
  }
  .video-stories-track {
    padding: 0 16px;
  }
  .video-story-card {
    flex: 0 0 248px;
    width: 248px;
  }
  .video-story-content h3 {
    font-size: 1.08rem;
    min-height: 2.35em;
  }
  .video-story-content {
    min-height: 152px;
  }
  .video-story-content p {
    min-height: 2.35em;
  }
  .video-story-btn {
    font-size: 0.82rem;
  }

  .trusted-products {
    padding: 38px 16px 44px;
  }

  .trusted-products-title {
    font-size: 2.02rem;
    margin-bottom: 74px;
  }

  .trusted-products-title-line {
    gap: 8px;
    flex-wrap: wrap;
  }

  .trusted-products-title-mascot {
    width: 46px;
    height: 46px;
  }

  .trusted-products-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin: 0 auto;
    gap: 16px;
  }

  .trusted-product-top {
    height: 100px;
  }

  .trusted-product-number {
    font-size: 8.2rem;
    top: -5px;
  }

  .trusted-product-item {
    width: 98px;
    height: 98px;
    transform: translate(50%, 10px);
  }

  .trusted-product-card:nth-child(3) .trusted-product-item {
    transform: translate(60%, 10px);
  }

  .trusted-product-card:nth-child(2) .trusted-product-item {
    transform: translate(35%, -10%);
  }

  .trusted-product-content {
    min-height: 0;
  }

  .trusted-product-content h3,
  .trusted-product-content ul {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .trusted-products-title {
    font-size: 1.7rem;
  }

  .trusted-products-highlight {
    padding: 4px 13px 5px;
    border-width: 2px;
    box-shadow: 0 2px 0 #5f4b32;
  }

  .trusted-product-content h3 {
    font-size: 1.35rem;
  }

  .trusted-product-content li {
    font-size: 1rem;
  }

  .trusted-product-btn {
    font-size: 1.08rem;
    height: 42px;
  }

  .video-story-card {
    flex: 0 0 232px;
    width: 232px;
  }
  .video-story-play {
    width: 34px;
    height: 34px;
  }
}

/* ---------- Vets Endorsements Section ---------- */
.vets-section {
  position: relative;
  padding: 48px 20px 46px;
  background: #e6e3e3;
  border-top: none;
}

.vets-container {
  max-width: 1120px;
}

.vets-title-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.vets-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(1.8rem, 2.2vw, 2.75rem);
  line-height: 1.08;
  font-weight: 800;
  color: #1f2226;
  background: rgb(246, 146, 36);
  border: 3px solid #5b452f;
  border-radius: 999px;
  box-shadow: 0 2px 0 #5b452f;
  padding: 10px 34px 12px;
}

.vets-title-mascot {
  position: absolute;
  top: -52px;
  right: 16%;
  width: 84px;
  height: 84px;
  object-fit: contain;
  transform: rotate(8deg);
  z-index: 2;
}

.vets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.vets-card {
  background: #f6f6f6;
  border: 2px solid #5b452f;
  border-radius: 18px;
  box-shadow: 0 4px 0 #5b452f;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.vets-quote {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.52;
  text-align: center;
  color: #3c3d41;
  min-height: 132px;
}

.vets-photo {
  width: 100%;
  height: 148px;
  border-radius: 17px;
  border: 2px solid #5b452f;
  object-fit: cover;
  object-position: center;
  margin: 14px 0 14px;
}

.vets-name {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #313238;
  text-align: center;
}

.vets-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32bfff;
  box-shadow: 0 0 0 1px rgba(30, 126, 170, 0.2);
}

.vets-role {
  margin: 2px 0 0;
  text-align: center;
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  color: #6e6b69;
  text-transform: uppercase;
}

.vets-disclaimer {
  margin: 58px 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: #4a5a7c;
  letter-spacing: 0.03em;
}

/* ---------- Claims Section ---------- */
.claims-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 72px 20px 52px;
}

.claims-container {
  max-width: 1120px;
  position: relative;
  z-index: 2;
}

.claims-title {
  margin: 0 0 42px;
  text-align: center;
  font-size: 3.05rem;
  line-height: 1.15;
  color: #222834;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.claims-reasons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.claim-reason {
  text-align: left;
}

.claim-reason-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: rgb(252, 222, 64);
  border: 3px solid #4e4633;
  color: #201c13;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.claim-reason h3 {
  margin: 0 0 6px;
  color: #232832;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.15;
}

.claim-reason p {
  margin: 0;
  color: #3f4a5d;
  font-size: 1.02rem;
  line-height: 1.38;
  max-width: 31ch;
}

.claims-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 280px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.claims-rail--left {
  left: 34px;
}

.claims-rail--right {
  right: 34px;
}

.claims-rail-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  will-change: transform;
}

.claims-rail-track--up {
  animation: claimsRailUp 19s linear infinite;
}

.claims-rail-track--down {
  transform: translateY(-50%);
  animation: claimsRailDown 21s linear infinite;
}

.claims-rail-image {
  width: 240px;
  object-fit: contain;
  display: block;
}

.claims-rail-image + .claims-rail-image {
  margin-top: -12px;
}

.claims-rail-image.is-tilt-1 {
  transform: rotate(-8deg);
}

.claims-rail-image.is-tilt-2 {
  transform: rotate(3deg);
}

.claims-rail-image.is-tilt-3 {
  transform: rotate(-5deg);
}

.claims-rail-image.is-tilt-4 {
  transform: rotate(9deg);
}

.claims-rail-image.is-tilt-5 {
  transform: rotate(-2deg);
}

.claims-rail-image.is-tilt-6 {
  transform: rotate(6deg);
}

@keyframes claimsRailUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes claimsRailDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .claims-rail-track--up,
  .claims-rail-track--down {
    animation: none;
    transform: none;
  }
}

/* ---------- Benefits Section ---------- */
.benefits-section {
  background: #ffffff;
  text-align: center;
}

.benefits-section > .container {
  padding: 50px 20px 0;
}

.benefits-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 2.25rem;
  line-height: 1.2;
  color: #222;
  margin-bottom: 54px;
  letter-spacing: 0.1px;
}

.benefits-title-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.benefits-number {
  font-weight: 700;
}

.benefits-highlight {
  background: rgb(246, 146, 36);
  color: #fff;
  padding: 4px 14px 5px;
  border-radius: 999px;
  border: 2px solid #6f5233;
  box-shadow: 0 3px 0 #6f5233;
  font-style: normal;
  font-weight: 800;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto -90px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 0;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgb(252, 222, 64);
  border: 2px solid #5e4b30;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-icon svg {
  width: 15px;
  height: 15px;
  stroke: #232323;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 2px;
  line-height: 1.2;
}

.benefit-text p {
  font-size: 1.48rem;
  color: #4a4a4a;
  line-height: 1.35;
}

.benefits-mascot {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 6;
  transform: translateY(62px);
}

.benefits-mascot-image {
  width: 672px;
  height: 276px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.32));
}

/* Trust Bar */
.trust-bar {
  background: rgb(246, 146, 36);
  position: relative;
  z-index: 1;
  padding: 96px 20px 48px;
  margin-top: 0;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ececec;
  border-radius: 20px;
  border: 3px solid #5f4b32;
  box-shadow: 0 6px 0 #5f4b32;
  padding: 17px 22px;
}

.trust-badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #5d482f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badge-text h4 {
  font-size: 1.95rem;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 2px;
  line-height: 1.15;
}

.trust-badge-text p {
  font-size: 1.42rem;
  color: #3f3f3f;
  line-height: 1.4;
}

.trust-badge-text strong {
  color: #2c2c2c;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .benefits-title {
    font-size: 1.45rem;
    margin-bottom: 34px;
  }
  .benefits-title-line {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .benefit-text h3 {
    font-size: 1.25rem;
  }
  .benefit-text p {
    font-size: 1rem;
  }
  .benefits-mascot {
    transform: translateY(27px);
  }
  .benefits-mascot-image {
    width: 432px;
    height: 175px;
  }
  .trust-badges {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .trust-badge {
    border-radius: 16px;
    padding: 14px 16px;
  }
  .trust-badge-icon {
    width: 48px;
    height: 48px;
  }
  .trust-badge-text h4 {
    font-size: 1.2rem;
  }
  .trust-badge-text p {
    font-size: 0.95rem;
  }
}

/* ---------- Collection Hero ---------- */
.collection-hero {
  padding: 64px 20px 40px;
  background: var(--cream);
  text-align: center;
}

.collection-hero h1 {
  font-size: 3rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.collection-hero p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Products Grid ---------- */
.products {
  padding: 50px 20px 80px;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* ---------- Info Pages (Aide / Légal) ---------- */
.info-page-main {
  background: #f8f6f2;
  padding: 44px 20px 70px;
}

.info-page-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.info-page-card {
  background: #fff;
  border: 2px solid #d8d1c9;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.info-page-card + .info-page-card {
  margin-top: 18px;
}

.info-page-card h2 {
  font-size: 1.55rem;
  margin: 0 0 10px;
  color: #2b2622;
}

.info-page-card h3 {
  font-size: 1.1rem;
  margin: 14px 0 8px;
  color: #3a332d;
}

.info-page-card p,
.info-page-card li {
  color: #4a433d;
  font-size: 1rem;
  line-height: 1.6;
}

.info-page-card ul {
  list-style: disc;
  padding-left: 20px;
}

.info-page-meta {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #655b52;
}

.product-image {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.product-placeholder {
  font-size: 80px;
}

.product-content {
  padding: 25px;
}

.product-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* ---------- Help Contact Section ---------- */
.help-contact {
  background: #e7e3de;
  padding: 84px 20px 52px;
}

.help-contact-container {
  display: flex;
  justify-content: center;
}

.help-contact-card {
  width: min(100%, 560px);
  border: 2px solid #6b5434;
  border-radius: 10px;
  padding: 24px 26px 22px;
  text-align: center;
  background: #f4f3f1;
  color: #1e242d;
}

.help-contact-card h2 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 800;
}

.help-contact-card p {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.36;
}

.help-contact-card p + p {
  margin-top: 2px;
}

.help-contact-card a {
  color: #1e242d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bordeaux);
  color: white;
  padding: 60px 20px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 15px;
  filter: none;
}

.footer-brand p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  color: #aaa;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
}

/* ---------- Dogs Landing Page ---------- */
.dogs-landing-page {
  background: #e4e1de;
  color: #29231f;
}

.cats-landing-page {
  background: #e4e1de;
  color: #29231f;
}

.all-landing-page {
  background: #e4e1de;
  color: #29231f;
}

.dogs-top-header {
  background: #f4f4f4;
  border-bottom: 1px solid rgba(50, 40, 30, 0.25);
}

.dogs-top-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 34px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.dogs-top-nav {
  display: flex;
  gap: 14px;
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dogs-top-nav--left {
  justify-content: flex-start;
}

.dogs-top-nav--right {
  justify-content: flex-end;
}

.dogs-top-nav a {
  opacity: 0.78;
}

.dogs-top-nav a:hover,
.dogs-top-nav a.is-active {
  opacity: 1;
}

.dogs-top-logo {
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.dogs-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 660px;
}

.dogs-hero-left {
  background: #f0d73a;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 140px;
}

.dogs-trust-card {
  width: min(520px, 86%);
  background: #f5f3ef;
  border: 3px solid #5d4a2f;
  border-radius: 20px;
  box-shadow: 0 5px 0 #5d4a2f;
  padding: 24px 24px 20px;
}

.dogs-trust-line {
  margin: 0;
  font-size: 1rem;
  color: #706860;
  font-weight: 700;
}

.dogs-trust-card h1 {
  margin: 14px 0 14px;
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 800;
}

.dogs-trust-card ul {
  margin: 0;
  padding-left: 24px;
}

.dogs-trust-card li {
  margin-bottom: 9px;
  font-size: 1.12rem;
  color: #4a433d;
}

.dogs-hero-right {
  overflow: hidden;
}

.dogs-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dogs-shop-zone {
  background: #e4e1de;
  padding: 34px 24px 64px;
}

.dogs-filter-row {
  display: flex;
  justify-content: center;
  gap: 90px;
  margin-bottom: 36px;
}

.dogs-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 390px;
  height: 74px;
  border-radius: 999px;
  border: 2px solid #5d4a2f;
  background: #f5f3ef;
  font-size: 2.05rem;
  padding: 0 22px;
  font-weight: 700;
  color: #3a322b;
  cursor: pointer;
  box-shadow: 0 5px 0 #5d4a2f;
  text-align: center;
}

.dogs-filter-pill--active {
  background: #fff8d2;
}

.dogs-cards-grid {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.dogs-bottom-mascot-wrap {
  max-width: 1520px;
  margin: 18px auto 0;
}

.dogs-cards-grid .dogs-bottom-mascot-wrap {
  grid-column: 1 / -1;
}

.dogs-bottom-mascot {
  width: 210px;
  height: auto;
  display: block;
}

.dogs-product-card {
  border: 2px solid #5d4a2f;
  border-radius: 20px;
  background: #f9f8f6;
  box-shadow: 0 4px 0 #5d4a2f;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dogs-product-media {
  position: relative;
  height: 250px;
  background: #b3c878;
  border-bottom: 1px solid rgba(80, 63, 40, 0.4);
  overflow: hidden;
}

.dogs-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.dogs-landing-page .dogs-product-card:first-child .dogs-product-media img {
  transform: translateX(-10%) scale(1.44);
  transform-origin: center;
}

.dogs-landing-page .dogs-product-card:nth-child(2) .dogs-product-media img {
  transform: scale(1.20);
  transform-origin: center;
}

.dogs-landing-page .dogs-product-card:nth-child(3) .dogs-product-media img {
  object-fit: cover;
  transform: translateY(6%) scale(1.20);
  transform-origin: center;
}

.cats-landing-page .dogs-product-card:first-child .dogs-product-media img {
  transform: scale(1.20);
  transform-origin: center;
}

.cats-landing-page .dogs-product-card:nth-child(3) .dogs-product-media img {
  transform: translateY(6%) scale(1.20);
  transform-origin: center;
}

.dogs-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 999px;
  background: #f0d73a;
  border: 1px solid #5d4a2f;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.dogs-product-content {
  padding: 18px 16px 18px;
  display: grid;
  grid-template-rows: minmax(0, auto) minmax(0, auto) 1fr minmax(0, auto) minmax(0, auto);
  flex: 1;
}

.dogs-product-content h2 {
  margin: 0 0 8px;
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 800;
  min-height: 2.4em;
}

.dogs-product-stars {
  margin: 0 0 10px;
  color: #f2b40e;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
}

.dogs-product-stars span {
  color: #7a6f63;
}

.dogs-product-content ul {
  margin: 0 0 12px;
  padding-left: 20px;
  min-height: 6.6em;
}

.dogs-product-content li {
  margin-bottom: 7px;
  font-size: 1.1rem;
  line-height: 1.35;
  color: #4c443d;
}

.dogs-product-price {
  margin: 0 0 12px;
  font-size: 2.2rem;
  color: #4c443d;
  font-weight: 700;
}

.dogs-shop-btn {
  display: block;
  text-align: center;
  border-radius: 999px;
  border: 2px solid #5d4a2f;
  background: #f0d73a;
  padding: 14px 16px;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 4px 0 #5d4a2f;
  margin-top: auto;
}

.dogs-mini-footer {
  position: relative;
  background: #5a4324;
  color: #fff;
  padding: 18px 12px 20px;
  text-align: center;
}

.dogs-footer-mascot {
  width: 66px;
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
}

.dogs-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 2px;
  font-size: 0.45rem;
  font-weight: 700;
}

.dogs-footer-copy {
  margin: 7px 0 0;
  font-size: 0.42rem;
  opacity: 0.82;
}

/* ---------- Product Detail (Kit Chien) ---------- */
.product-detail-main {
  background: rgb(246, 246, 246);
  padding: 24px 18px 42px;
}

.product-detail-wrap {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.product-detail-gallery {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.product-detail-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 102px;
  max-height: min(1100px, calc(100vh - 80px));
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: sticky;
  top: 118px;
  align-self: flex-start;
}

.product-detail-thumbs::-webkit-scrollbar {
  display: none;
}

.product-detail-thumb {
  border: 1px solid #cfc8b9;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-detail-thumb.is-active {
  border-color: #5c4a30;
  box-shadow: 0 0 0 1px #5c4a30;
}

.product-detail-thumb img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  border-radius: 8px;
}

.product-detail-stage {
  flex: 1;
  border: 2px solid #5c4a30;
  border-radius: 16px;
  background: #ecd45c;
  padding: 16px;
  position: sticky;
  top: 118px;
  align-self: flex-start;
}

.product-detail-stage-media {
  border-radius: 20px;
  background: #f4f3f0;
  border: 1px solid #ddd6ca;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.product-detail-stage-media img {
  width: 100%;
  max-width: 760px;
  height: auto;
  object-fit: contain;
}

.product-detail-note {
  margin-top: 8px;
  text-align: center;
  font-size: 0.72rem;
  color: #5b544d;
}

.product-detail-panel {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-detail-rating {
  color: #e6aa00;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.product-detail-rating span {
  color: #5e5851;
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: 0;
}

.product-detail-title {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
  font-weight: 800;
  color: #212121;
}

.product-detail-quote {
  border: 1px solid #cfc9bf;
  background: #f2f1ef;
  border-radius: 8px;
  padding: 13px 15px;
  margin-bottom: 0;
}

.product-detail-quote p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.25;
  color: #35322f;
}

.product-detail-quote-author-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-detail-quote-author {
  font-size: 0.74rem;
  color: #45403a;
  font-weight: 700;
}

.product-detail-vet-badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #4dac80;
  color: #1f7c58;
  background: #e8fff2;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 0 8px;
}

.product-detail-pack-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
}

.product-detail-pack {
  border: 1px solid #cbc4b6;
  border-radius: 6px;
  background: #f4f3ef;
  padding: 8px;
  text-align: center;
  cursor: pointer;
  min-height: 108px;
}

.product-detail-pack.is-active {
  border-color: #7f785f;
  background: #dce4be;
}

.product-detail-pack-discount {
  display: inline-flex;
  border-radius: 999px;
  background: #f0d73c;
  border: 1px solid #5d4a2f;
  font-size: 0.5rem;
  line-height: 1;
  padding: 3px 8px;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
}

.product-detail-pack strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  color: #20201f;
}

.product-detail-pack small {
  display: block;
  color: #343434;
  font-size: 0.96rem;
  line-height: 1.05;
  font-weight: 700;
}

.product-detail-pack em {
  display: block;
  margin-top: 2px;
  color: #444;
  font-size: 0.62rem;
  font-style: normal;
}

.product-detail-pack-meta {
  background: #dfdfd8;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0 6px;
  overflow: hidden;
  margin-bottom: 0;
}

.product-detail-pack-meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  font-size: 0.78rem;
  color: #2f2d2b;
}

.product-detail-pack-meta-icon {
  font-size: 0.9rem;
}

.product-detail-pack-meta-image {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  margin: -31px 0;
}

.product-detail-pack-meta-item:first-child .product-detail-pack-meta-image {
  max-width: 135px;
  transform: translateY(-5px);
}

.product-detail-pack-meta-item:nth-child(2) .product-detail-pack-meta-image {
  transform: translateY(3px);
}

.product-detail-plan {
  border: 1px solid #cbc4b8;
  border-radius: 7px;
  background: #fff;
  padding: 13px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
  cursor: pointer;
}

.product-detail-plan--sub {
  background: #dce4be;
}

.product-detail-plan-left {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: #2f2b27;
}

.product-detail-plan-head {
  display: flex;
  align-items: center;
}

.product-detail-plan-head input {
  margin-right: 6px;
}

.product-detail-plan-head label {
  font-weight: 700;
}

.product-detail-plan-left p {
  margin: 0 0 0 22px;
  font-size: 0.8rem;
  color: #4a4a43;
  line-height: 1.25;
}

.product-detail-plan-left p::before {
  content: "✓ ";
  color: #4f9a63;
  font-weight: 700;
}

.product-detail-plan-price {
  text-align: right;
  font-size: 1.05rem;
  color: #1f1d1b;
  font-weight: 800;
  white-space: nowrap;
}

.product-detail-plan-price s {
  color: #938b7c;
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 4px;
}

.product-detail-cart-btn {
  width: 100%;
  border-radius: 999px;
  border: 3px solid #4f4028;
  background: #f5d72d;
  color: #2d261f;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  height: 54px;
  box-shadow: 0 2px 0 #4f4028;
  margin-top: 0;
  cursor: pointer;
}

.product-detail-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  text-align: center;
}

.product-detail-benefit {
  font-size: 0.74rem;
  color: #403b35;
  line-height: 1.18;
}

.product-detail-benefit span {
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
}

.product-detail-benefit-mascot {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 auto 9px;
  padding: 5px;
  border-radius: 999px;
  background: #fff8dc;
  border: 1px solid #d8cda2;
  box-shadow: 0 4px 10px rgba(60, 47, 28, 0.28);
  transform: scale(1.08);
}

.product-detail-accordion {
  border-top: 1px solid #cbc2b7;
}

.product-detail-accordion details {
  border-bottom: 1px solid #cbc2b7;
}

.product-detail-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 13px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2f2b27;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-detail-accordion summary::after {
  content: "▾";
  font-size: 0.82rem;
  color: #3f3a34;
}

.product-detail-accordion details[open] summary::after {
  transform: rotate(180deg);
}

.product-detail-accordion summary::-webkit-details-marker {
  display: none;
}

.product-detail-accordion p {
  margin: 0 0 12px;
  font-size: 0.86rem;
  color: #4d4640;
  line-height: 1.45;
}

.product-detail-accordion ul {
  margin: 0 0 12px 18px;
  padding: 0;
  list-style: disc;
}

.product-detail-accordion li {
  font-size: 0.86rem;
  color: #4d4640;
  line-height: 1.35;
  margin-bottom: 3px;
}

/* ---------- Product Issues Section ---------- */
.product-issues-section {
  background: rgb(235, 230, 226);
  padding: 78px 24px 74px;
}

.product-issues-inner {
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}

.product-issues-inner h2 {
  margin: 0 0 38px;
  font-size: 2.45rem;
  line-height: 1.15;
  color: #24252a;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.product-issues-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px 10px;
  border-radius: 999px;
  background: #f29a24;
  border: 3px solid #6b5434;
  box-shadow: 0 3px 0 #6b5434;
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
}

.product-issues-brand {
  font-size: 1.24em;
  font-weight: 900;
  line-height: 1;
}

.product-issues-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.product-issues-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-issues-icon-wrap {
  width: 142px;
  height: 142px;
  border-radius: 28px;
  background: #E2D7D4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.product-issues-icon-wrap img {
  width: 106px;
  height: 106px;
  object-fit: contain;
}

.product-issues-item p {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.2;
  color: #272c35;
  font-weight: 600;
}

@media (max-width: 900px) {
  .product-issues-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .product-issues-inner h2 {
    font-size: 1.7rem;
    margin-bottom: 22px;
  }

  .product-issues-highlight {
    padding: 6px 18px 8px;
    border-width: 2px;
    box-shadow: 0 2px 0 #6b5434;
  }
}

@media (max-width: 520px) {
  .product-issues-section {
    padding: 42px 14px 40px;
  }

  .product-issues-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Product Happy Customers ---------- */
.product-happy-section {
  background: rgb(252, 222, 64);
  padding: 56px 0 50px;
}

.product-happy-header-wrap {
  text-align: center;
  margin-bottom: 26px;
}

.product-happy-title {
  margin: 0;
  color: #1f232b;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
}

.product-happy-grid {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.product-happy-card {
  border: 3px solid #6b5434;
  border-radius: 18px;
  overflow: hidden;
  background: #ececed;
  box-shadow: 0 4px 0 #6b5434;
  display: flex;
  flex-direction: column;
}

.product-happy-media {
  padding: 10px 10px 0;
}

.product-happy-photo {
  width: 100%;
  height: 196px;
  object-fit: cover;
  display: block;
  border: 2px solid #6b5434;
  border-radius: 12px;
}

.product-happy-content {
  padding: 8px 12px 12px;
  display: flex;
  flex-direction: column;
}

.product-happy-stars {
  margin: 0 0 8px;
  font-size: 1.06rem;
  color: rgb(252, 222, 64);
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 700;
}

.product-happy-meta {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-happy-name {
  margin: 0;
  color: #25262a;
  font-size: 1.02rem;
  line-height: 1.1;
  font-weight: 700;
}

.product-happy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid #69c6a0;
  background: #dff4eb;
  color: #1f9a6d;
  font-size: 0.73rem;
  line-height: 1;
  font-weight: 700;
}

.product-happy-text {
  margin: 10px 0 0;
  color: #2f333a;
  font-size: 0.91rem;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .product-happy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .product-happy-section {
    padding: 40px 0 36px;
  }

  .product-happy-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 420px;
  }

  .product-happy-photo {
    height: 168px;
  }
}

/* ---------- Product How To Use ---------- */
.product-expect-section {
  background: #e3ddda;
  padding: 70px 24px 62px;
}

.product-expect-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.product-expect-title {
  margin: 0;
  color: #1f252e;
  font-size: 2.9rem;
  line-height: 1.08;
  font-weight: 700;
}

.product-expect-subtitle {
  margin: 14px auto 44px;
  max-width: 760px;
  color: #2c3239;
  font-size: 1.22rem;
  line-height: 1.35;
  font-weight: 500;
}

.product-expect-grid {
  --expect-gap: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--expect-gap);
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

.product-expect-grid::before,
.product-expect-grid::after {
  content: "➜";
  position: absolute;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid #6b5434;
  background: #f29a24;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 0 #6b5434;
  z-index: 4;
  pointer-events: none;
}

.product-expect-grid::before {
  left: calc((100% - (2 * var(--expect-gap))) / 3 + (var(--expect-gap) / 2));
}

.product-expect-grid::after {
  left: calc((((100% - (2 * var(--expect-gap))) / 3) * 2) + (var(--expect-gap) * 1.5));
}

.product-expect-card {
  border: 3px solid #7a654f;
  border-radius: 22px;
  background: #f0efea;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-expect-media-wrap {
  position: relative;
  background: #ddd7d2;
}

.product-expect-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 2px solid #81522d;
  background: #f69a26;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.product-expect-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  background: #d5cfcb;
}

.product-expect-content {
  border-top: 1px solid #b9b2ab;
  padding: 14px 16px 16px;
  min-height: 170px;
  text-align: left;
}

.product-expect-content h3 {
  margin: 0 0 8px;
  color: #363534;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 800;
  text-align: center;
}

.product-expect-content p {
  margin: 0;
  color: #404346;
  font-size: 1.03rem;
  line-height: 1.28;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .product-expect-title {
    font-size: 2.3rem;
  }

  .product-expect-subtitle {
    font-size: 1.04rem;
    margin-bottom: 32px;
  }

  .product-expect-grid {
    --expect-gap: 22px;
    max-width: 980px;
  }

  .product-expect-content h3 {
    font-size: 1.6rem;
  }

  .product-expect-content p {
    font-size: 0.92rem;
  }

  .product-expect-grid::before,
  .product-expect-grid::after {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .product-expect-section {
    padding: 42px 12px 38px;
  }

  .product-expect-title {
    font-size: 1.95rem;
  }

  .product-expect-subtitle {
    margin: 10px auto 20px;
    font-size: 0.96rem;
  }

  .product-expect-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 18px;
  }

  .product-expect-grid::before,
  .product-expect-grid::after {
    content: none;
  }

  .product-expect-content {
    min-height: 0;
  }
}

/* ---------- Product Claims + Vertical Carousel ---------- */
.product-claims-section {
  background: #ffffff;
  padding: 78px 0;
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  overflow: hidden;
}

.product-claims-inner {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 50vw);
  gap: clamp(22px, 1.9vw, 34px);
  align-items: start;
  padding-left: clamp(16px, 5vw, 120px);
  padding-right: 0;
}

.product-claims-copy {
  max-width: min(980px, 100%);
  min-width: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  transform: translateY(10%);
}

.product-claims-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 16px;
}

.product-claims-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #f29a24;
  border: 2px solid #6b5434;
  box-shadow: 0 3px 0 #6b5434, 0 5px 10px rgba(31, 27, 26, 0.16);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-4deg);
  margin: 0 0 12px;
}

.product-claims-title-row h2 {
  margin: 0;
  color: #1f2530;
  font-size: clamp(1.85rem, 2.05vw, 2.95rem);
  line-height: 1.16;
  font-weight: 600;
  max-width: none;
  white-space: nowrap;
  overflow-wrap: anywhere;
  text-align: center;
}

.product-claims-subtitle {
  margin: 0 0 16px;
  color: #525861;
  font-size: 1.04rem;
  line-height: 1.55;
  font-weight: 400;
  max-width: 980px;
  text-align: center;
}

.product-claims-label {
  margin: 0 0 24px;
  color: #303640;
  font-size: 1.04rem;
  line-height: 1.2;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-align: center;
}

.product-claims-label-mascot {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex: 0 0 auto;
}

.product-claims-metrics {
  border-top: 0;
  max-width: 980px;
  margin: 0 auto;
}

.product-claims-metric {
  padding: 20px 0 18px;
  border-bottom: 1px solid #b6aca0;
}

.product-claims-metric h3 {
  margin: 0;
  color: #1d232e;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
}

.product-claims-metric p {
  margin: 10px 0 0;
  color: #58606b;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 400;
}

.product-claims-footnote {
  margin: 26px 0 0;
  color: #6b727c;
  font-size: 0.76rem;
  line-height: 1.55;
  font-weight: 400;
  max-width: 980px;
  text-align: center;
}

.product-claims-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: -86px;
  margin-bottom: -86px;
  height: calc(clamp(560px, 64vh, 760px) + 172px);
  min-height: 0;
  transform: translateX(-3%);
}

.product-claims-column {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  height: 100%;
}

.product-claims-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: productClaimsScroll 22s linear infinite;
  will-change: transform;
  min-height: max-content;
}

.product-claims-column--right .product-claims-track {
  animation-delay: -7s;
  margin-top: -46px;
}

.product-claims-track img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 850;
  object-fit: cover;
  border-radius: 18px;
}

@keyframes productClaimsScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 10px));
  }
}

@media (max-width: 1200px) {
  .product-claims-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-claims-copy {
    padding: 0;
    max-width: 820px;
    transform: translateY(10%);
  }

  .product-claims-title-row h2 {
    font-size: 2.35rem;
    white-space: normal;
  }

  .product-claims-title-row {
    flex-wrap: wrap;
  }

  .product-claims-gallery {
    height: clamp(520px, 60vh, 700px);
    max-width: 560px;
  }
}

@media (max-width: 1520px) {
  .product-claims-title-row h2 {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .product-claims-section {
    padding: 52px 0;
  }

  .product-claims-title-row {
    gap: 8px;
  }

  .product-claims-pill {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.92rem;
    box-shadow: 0 2px 0 #6b5434;
  }

  .product-claims-title-row h2 {
    font-size: 1.78rem;
  }

  .product-claims-pill {
    transform: rotate(-3deg);
  }

  .product-claims-subtitle,
  .product-claims-label {
    font-size: 0.95rem;
  }

  .product-claims-label-mascot {
    width: 62px;
    height: 62px;
  }

  .product-claims-metric {
    padding: 16px 0 14px;
  }

  .product-claims-metric h3 {
    font-size: 2.05rem;
  }

  .product-claims-metric p {
    font-size: 0.9rem;
  }

  .product-claims-gallery {
    gap: 12px;
    margin-top: -57px;
    margin-bottom: -57px;
    height: 614px;
    max-width: none;
  }

  .product-claims-track {
    gap: 12px;
    animation-duration: 18s;
  }

  .product-claims-column--right .product-claims-track {
    margin-top: -30px;
  }

  .product-claims-track img {
    height: 160px;
    border-radius: 16px;
  }

  .product-claims-track img:nth-child(4n + 2),
  .product-claims-track img:nth-child(4n + 3) {
    height: 184px;
  }

  .product-claims-column--right .product-claims-track img,
  .product-claims-column--right .product-claims-track img:nth-child(4n + 2),
  .product-claims-column--right .product-claims-track img:nth-child(4n + 3) {
    height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-claims-track {
    animation: none;
  }

  .product-claims-column--right .product-claims-track {
    margin-top: 0;
  }
}

.product-refund-guarantee {
  background: #f8dc42;
  background-image: repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0 56px, rgba(255, 255, 255, 0) 56px 126px);
  padding: 32px 20px 40px;
}

.product-refund-guarantee-card {
  max-width: 1120px;
  margin: 0 auto;
  border: 2px solid #5f4b32;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #ececec;
}

.product-refund-guarantee-visual {
  position: relative;
  background: #a9b226;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-refund-guarantee-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-refund-guarantee-content {
  background: #ececec;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-refund-guarantee-content h2 {
  margin: 0;
  color: #1f232b;
  font-size: clamp(2.3rem, 3.6vw, 3.25rem);
  line-height: 1.02;
  font-weight: 800;
}

.product-refund-guarantee-content p {
  margin: 16px 0 0;
  color: #2f333b;
  font-size: 1.2rem;
  line-height: 1.42;
  font-weight: 400;
}

.product-refund-guarantee-proof {
  margin-top: 18px;
  color: #1f232b;
  font-size: 1.36rem;
  line-height: 1.2;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.product-refund-guarantee-proof-icon {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 21px;
}

.product-refund-guarantee-proof-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #1f232b;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .product-refund-guarantee-card {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .product-refund-guarantee-visual {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .product-refund-guarantee {
    padding: 30px 12px 34px;
  }

  .product-refund-guarantee-content {
    padding: 24px 18px;
  }

  .product-refund-guarantee-content h2 {
    font-size: 1.95rem;
  }

  .product-refund-guarantee-content p {
    font-size: 0.98rem;
  }

  .product-refund-guarantee-proof {
    font-size: 1rem;
  }

}

.product-how-use-section {
  background: #F7F8EF;
  padding: 58px 20px 54px;
}

.product-how-use-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.product-how-use-inner h2 {
  margin: 0;
  color: #20242b;
  font-size: 2.05rem;
  line-height: 1.1;
  font-weight: 700;
}

.product-how-use-subtitle {
  margin: 18px 0 10px;
  color: #222730;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 700;
}

.product-how-card {
  background: #E2D7D4;
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
}

.product-how-card--steps {
  display: block;
  aspect-ratio: 560 / 366;
}

.product-how-visual {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transform-origin: center;
}

.product-how-card--steps .product-how-visual {
  transform: scale(1.06);
}

.product-how-card--upright .product-how-visual {
  transform: scale(1.002);
}

.product-how-step {
  text-align: center;
}

.product-how-step strong {
  display: block;
  color: #59443a;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 6px;
}

.product-how-step p {
  margin: 0;
  color: #463a34;
  font-size: 0.95rem;
  line-height: 1.12;
  font-weight: 600;
  min-height: 74px;
}

.product-how-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  font-size: 2.7rem;
}

.product-how-card--upright {
  margin-top: 10px;
  display: block;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  aspect-ratio: 560 / 150;
  clip-path: inset(0 0 0.9% 0 round 22px);
}

.product-how-upright-left {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.product-how-check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #8ec63f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
}

.product-how-upright-icon {
  font-size: 3rem;
}

.product-how-upright-left p {
  margin: 0;
  color: #4a3d37;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 600;
}

.product-how-upright-wrong {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.product-how-wrong-item {
  height: 58px;
  border-radius: 12px;
  border: 2px solid #7f6a60;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-how-wrong-item span {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ff5b33;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
}

.product-how-wrong-item em {
  font-style: normal;
  color: #5e4c43;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

@media (max-width: 768px) {
  .product-how-use-section {
    padding: 42px 12px 38px;
  }

  .product-how-use-inner h2 {
    font-size: 1.8rem;
  }

  .product-how-use-subtitle {
    font-size: 1.45rem;
  }

  .product-how-card--steps {
    display: block;
  }

  .product-how-step p {
    min-height: 0;
  }

  .product-how-card--upright {
    display: block;
  }
}

.product-faq-section {
  background: #f6f6f4;
  padding: 44px 20px 28px;
}

.product-faq-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.product-faq-inner h2 {
  margin: 0;
  text-align: center;
  color: #1f232b;
  font-size: 2.7rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0.15px;
}

.product-faq-list {
  margin-top: 34px;
}

.product-faq-item {
  border-bottom: 1px solid #d7d389;
  padding: 0;
}

.product-faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 20px 26px 16px 0;
  color: #2c3139;
  font-size: 1.22rem;
  line-height: 1.35;
  font-weight: 400;
}

.product-faq-item summary::-webkit-details-marker {
  display: none;
}

.product-faq-item summary::after {
  content: '▾';
  position: absolute;
  right: 0;
  top: 20px;
  color: #2d3139;
  font-size: 1rem;
  line-height: 1;
}

.product-faq-item[open] summary::after {
  content: '▴';
}

.product-faq-item p {
  margin: 0 0 14px;
  color: #3a3f47;
  font-size: 1.04rem;
  line-height: 1.4;
  font-weight: 400;
}

.product-faq-support {
  margin-top: 26px;
  text-align: center;
}

.product-faq-support p {
  margin: 0;
  color: #3a3f47;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 400;
}

.product-faq-support a {
  display: inline-block;
  margin-top: 2px;
  color: #2f333b;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 400;
  text-decoration: none;
}

.product-faq-mascot {
  display: block;
  width: 122px;
  height: auto;
  margin: 28px auto 0;
}

@media (max-width: 768px) {
  .product-faq-section {
    padding: 32px 12px 20px;
  }

  .product-faq-inner h2 {
    font-size: 1.95rem;
    line-height: 1.1;
  }

  .product-faq-list {
    margin-top: 18px;
  }

  .product-faq-item summary {
    padding: 14px 18px 10px 0;
    font-size: 1.04rem;
  }

  .product-faq-item summary::after {
    top: 14px;
    font-size: 0.82rem;
  }

  .product-faq-item p {
    margin: 0 0 9px;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .product-faq-support {
    margin-top: 18px;
  }

  .product-faq-support p,
  .product-faq-support a {
    font-size: 0.9rem;
  }

  .product-faq-mascot {
    width: 96px;
    margin-top: 14px;
  }
}

@media (max-width: 1024px) {
  .product-detail-wrap {
    grid-template-columns: 1fr;
  }

  .product-detail-gallery {
    position: static;
    top: auto;
  }

  .product-detail-thumbs,
  .product-detail-stage {
    position: static;
    top: auto;
  }

  .product-detail-stage-media {
    min-height: 520px;
  }

  .product-detail-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .product-detail-main {
    padding: 16px 10px 26px;
  }

  .product-detail-gallery {
    flex-direction: column-reverse;
  }

  .product-detail-thumbs {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }

  .product-detail-thumb {
    min-width: 68px;
  }

  .product-detail-thumb img {
    height: 62px;
  }

  .product-detail-stage-media {
    min-height: 300px;
  }

  .product-detail-title {
    font-size: 1.6rem;
  }

  .product-detail-panel {
    gap: 13px;
  }

  .product-detail-pack-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .dogs-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dogs-hero-right {
    min-height: 380px;
  }

  .dogs-filter-row {
    gap: 14px;
    flex-wrap: wrap;
  }

  .dogs-cards-grid {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .dogs-filter-pill {
    min-width: 170px;
    height: 46px;
    font-size: 1rem;
  }

  .dogs-trust-card {
    width: min(520px, 92%);
    padding: 18px;
  }

  .dogs-trust-card h1 {
    font-size: 1.8rem;
  }

  .dogs-product-content h2 {
    font-size: 1.3rem;
  }

  .dogs-product-stars,
  .dogs-product-content li,
  .dogs-product-price,
  .dogs-shop-btn {
    font-size: 1rem;
  }

  .dogs-product-media {
    height: 220px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-side {
    width: 300px;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .vets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .vets-title {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    padding: 10px 22px;
  }
  .vets-title-mascot {
    right: 6%;
    top: -42px;
    width: 72px;
    height: 72px;
  }
  .claims-section {
    padding: 60px 20px 46px;
  }
  .claims-title {
    font-size: 2.35rem;
    margin-bottom: 34px;
  }
  .claims-reasons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }
  .claims-rail {
    opacity: 0.92;
    width: 210px;
  }
  .claims-rail--left {
    left: 14px;
  }
  .claims-rail--right {
    right: 14px;
  }
  .claims-rail-image {
    width: 180px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .million-claims {
    padding: 44px 20px 14px;
  }

  .million-claims-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .million-claims-content {
    margin-left: 0;
    margin-right: 0;
  }

  .million-claims-media {
    height: 620px;
    min-height: 620px;
    width: 100%;
    gap: 10px;
  }

  .million-claims-column h3 {
    font-size: 1.5rem;
  }

  .million-claims-title-mascot {
    width: 56px;
    height: 56px;
  }

  .reviews-title {
    font-size: 2.35rem;
  }

  .review-card {
    flex: 0 0 270px;
    width: 270px;
  }

  .review-media {
    padding: 9px 9px 0;
  }

  .review-photo {
    height: 186px;
  }

  .review-name {
    font-size: 0.96rem;
  }

  .review-badge {
    font-size: 0.69rem;
  }

  .help-contact {
    padding: 66px 20px 42px;
  }

  .help-contact-card {
    width: min(100%, 520px);
  }

  .help-contact-card h2 {
    font-size: 2.28rem;
  }

  .help-contact-card p {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .shop-collection {
    padding: 34px 16px 40px;
  }
  .shop-collection-heading-card {
    min-width: 0;
    width: 100%;
    max-width: 520px;
    padding: 12px 18px 10px;
    margin-bottom: 20px;
  }
  .shop-collection-heading-card h2 {
    font-size: 2rem;
  }
  .shop-collection-heading-card p {
    font-size: 0.95rem;
  }
  .shop-collection-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 18px;
  }
  .shop-collection-flow {
    gap: 10px;
  }
  .shop-collection-mascot {
    width: 84px;
    height: 84px;
  }
  .shop-collection-arrow {
    width: 46px;
    height: 46px;
  }
  .shop-collection-arrow::before {
    font-size: 1.3rem;
  }
  .hero-side {
    display: none;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-center {
    padding: 40px 20px;
  }
  .hero-card {
    max-width: 280px;
  }
  .hero-card-inner {
    padding: 40px 30px;
    min-height: 200px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-hero h1 {
    font-size: 2rem;
  }
  .nav-left {
    display: none;
  }
  .section-title {
    font-size: 2rem;
  }
  .claims-section {
    padding: 52px 16px 40px;
  }
  .claims-title {
    font-size: 1.9rem;
    margin-bottom: 26px;
  }
  .claims-reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }
  .claim-reason-number {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .claim-reason h3 {
    font-size: 1rem;
  }
  .claim-reason p {
    font-size: 0.92rem;
  }
  .claims-rail {
    display: none;
  }
  .top-picks-header {
    gap: 10px;
    margin-bottom: 2rem;
  }

  .million-claims {
    padding: 36px 16px 10px;
  }

  .million-claims-title {
    font-size: 1.78rem;
    gap: 8px;
  }

  .million-claims-subtitle {
    margin: 10px 0 14px;
    font-size: 0.94rem;
  }

  .million-claims-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .million-claims-column strong {
    font-size: 2.35rem;
  }

  .million-claims-title-mascot {
    width: 48px;
    height: 48px;
  }

  .million-claims-media {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    gap: 8px;
  }

  .million-claims-note {
    margin-top: 16px;
  }

  .million-claims-rail--down {
    display: none;
  }

  .million-claims-rail {
    height: 380px;
    border-radius: 14px;
  }

  .million-claims-set {
    gap: 8px;
    padding-bottom: 8px;
  }

  .million-claims-item {
    border-radius: 14px;
  }

  .million-claims-item.is-sm {
    height: 128px;
  }

  .million-claims-item.is-md {
    height: 188px;
  }

  .million-claims-item.is-lg {
    height: 246px;
  }

  .reviews-section {
    padding: 40px 0 14px;
  }

  .reviews-title {
    font-size: 1.75rem;
  }

  .reviews-grid {
    gap: 14px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 8px;
  }

  .review-card {
    flex: 0 0 236px;
    width: 236px;
  }

  .review-media {
    padding: 7px 7px 0;
  }

  .review-photo {
    height: 146px;
    border-radius: 10px;
  }

  .review-content {
    padding: 7px 9px 10px;
  }

  .review-meta {
    margin-top: 6px;
    gap: 6px;
  }

  .review-name {
    font-size: 0.88rem;
  }

  .review-badge {
    padding: 2px 7px;
    font-size: 0.62rem;
  }

  .review-text {
    margin-top: 8px;
    font-size: 0.78rem;
  }

  .reviews-dots {
    margin-top: 2px;
  }

  .help-contact {
    padding: 46px 16px 34px;
  }

  .help-contact-card {
    padding: 18px 16px;
  }

  .help-contact-card h2 {
    font-size: 1.62rem;
    margin-bottom: 8px;
  }

  .help-contact-card p {
    font-size: 1.04rem;
    line-height: 1.45;
  }
}

@media (max-width: 600px) {
  .vets-section {
    padding: 34px 14px 30px;
  }
  .vets-title-wrap {
    margin-bottom: 16px;
  }
  .vets-title {
    font-size: 1.28rem;
    line-height: 1.15;
    padding: 8px 14px 9px;
  }
  .vets-title-mascot {
    width: 56px;
    height: 56px;
    top: -30px;
    right: -2px;
  }
  .vets-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .vets-quote {
    min-height: 0;
  }
  .vets-card {
    min-height: 0;
  }
  .vets-photo {
    height: 170px;
  }
  .vets-disclaimer {
    margin-top: 24px;
    font-size: 0.72rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .carousel-card {
    flex: 0 0 300px;
  }
  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
}
