/* ═══════════════════════════════════════════════
   Pawfy PDP — Product Detail Page Styles
   Design: Warm paper #fffaf4, Navy #20254a text,
   Playfair Display headings, Inter body.
   ═══════════════════════════════════════════════ */

/* ── Page foundation ── */
body.single-product.ai-dtc-product-template {
  background: #fffaf4;
  color: #20254a;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.pdp {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Hero area: gallery + info side-by-side ── */
.pdp-gallery {
  margin-bottom: 24px;
}

.pdp-gallery__main {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f5ef, #eee7db);
}

.pdp-gallery__main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.pdp-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pdp-gallery__thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: border-color .2s;
}

.pdp-gallery__thumb:hover {
  border-color: rgba(32, 37, 74, .3);
}

.pdp-gallery__thumb--active {
  border-color: #20254a;
}

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

/* ── Benefit Icons ── */
.pdp-benefit-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.pdp-benefit-icons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.pdp-benefit-icons__item img {
  width: 40px;
  height: 40px;
}

.pdp-benefit-icons__item span {
  font-size: 11px;
  font-weight: 700;
  color: #20254a;
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* ── Vet Compact ── */
.pdp-vet-compact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(32, 37, 74, .08);
  margin-bottom: 20px;
}

.pdp-vet-compact__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.pdp-vet-compact__content {
  min-width: 0;
}

.pdp-vet-compact blockquote {
  margin: 0;
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  color: #20254a;
}

.pdp-vet-compact cite {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #5e6784;
  font-style: normal;
}

.pdp-vet-compact cite strong {
  color: #20254a;
}

/* ── Title Bar ── */
.pdp-title-bar {
  margin-bottom: 16px;
}

.pdp-title-bar__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5e6784;
  margin-bottom: 6px;
}

.pdp-title-bar__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  color: #20254a;
  margin: 0;
}

.pdp-title-bar__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  color: #5e6784;
}

.pdp-title-bar__count {
  color: #5e6784;
}

/* ── Stars ── */
.pdp-stars {
  display: inline-flex;
  gap: 1px;
}

.pdp-stars__star {
  color: rgba(32, 37, 74, .15);
}

.pdp-stars__star--filled {
  color: #f5a623;
}

/* ── Description ── */
.pdp-desc {
  margin-bottom: 16px;
}

.pdp-desc p {
  font-size: 15px;
  line-height: 1.7;
  color: #5e6784;
  margin: 0;
}

/* ── Stat Badge ── */
.pdp-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(32, 37, 74, .06);
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #20254a;
}

/* ── Purchase Box ── */
.pdp-purchase {
  background: #fff;
  border: 1px solid rgba(32, 37, 74, .08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(32, 37, 74, .08);
  margin-bottom: 20px;
}

.pdp-purchase__price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #20254a;
  margin-bottom: 16px;
}

.pdp-purchase__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(32, 37, 74, .15);
  border-radius: 999px;
  overflow: hidden;
  margin-right: 12px;
}

.pdp-purchase__qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 18px;
  color: #20254a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.pdp-purchase__qty-btn:hover {
  background: rgba(32, 37, 74, .06);
}

.pdp-purchase__qty-input {
  width: 44px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #20254a;
  background: none;
  -moz-appearance: textfield;
}

.pdp-purchase__qty-input::-webkit-outer-spin-button,
.pdp-purchase__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-purchase__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  border-radius: 999px;
  background: #20254a;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .1s;
  vertical-align: middle;
}

.pdp-purchase__btn:hover {
  background: #2d3360;
  color: #fff;
  transform: translateY(-1px);
}

.pdp-purchase__btn:active {
  transform: translateY(0);
}

/* ── Upsell ── */
.pdp-upsell {
  margin-bottom: 20px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(32, 37, 74, .04);
  border: 1px dashed rgba(32, 37, 74, .15);
}

.pdp-upsell__text {
  font-size: 14px;
  color: #5e6784;
  margin: 0 0 6px;
}

.pdp-upsell__link {
  font-size: 15px;
  font-weight: 700;
  color: #20254a;
  text-decoration: none;
}

.pdp-upsell__link:hover {
  color: #2d3360;
  text-decoration: underline;
}

/* ── Delivery + Trust ── */
.pdp-delivery-trust {
  margin-bottom: 24px;
}

.pdp-delivery-trust__delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #20254a;
  margin-bottom: 12px;
}

.pdp-delivery-trust__delivery svg {
  color: #20254a;
  flex-shrink: 0;
}

.pdp-delivery-trust__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-delivery-trust__chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(32, 37, 74, .05);
  font-size: 12px;
  font-weight: 600;
  color: #5e6784;
}

/* ── Vet Full ── */
.pdp-vet-full {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(32, 37, 74, .08);
  box-shadow: 0 4px 16px rgba(32, 37, 74, .06);
  margin-bottom: 40px;
}

.pdp-vet-full__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.pdp-vet-full__content {
  min-width: 0;
}

.pdp-vet-full blockquote {
  margin: 0 0 8px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: #20254a;
}

.pdp-vet-full cite {
  display: block;
  font-size: 14px;
  color: #5e6784;
  font-style: normal;
}

.pdp-vet-full cite strong {
  color: #20254a;
}

/* ── Pawfy Promise ── */
.pdp-promise {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(32, 37, 74, .04), rgba(32, 37, 74, .08));
  margin-bottom: 40px;
}

.pdp-promise__icon {
  flex-shrink: 0;
  color: #20254a;
}

.pdp-promise p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #20254a;
}

/* ── Problem ── */
.pdp-problem {
  padding: 48px 0;
}

.pdp-problem h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  color: #20254a;
  margin: 0 0 16px;
}

.pdp-problem__body {
  font-size: 15px;
  line-height: 1.8;
  color: #5e6784;
}

/* ── Solution ── */
.pdp-solution {
  padding: 48px 0;
}

.pdp-solution h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  color: #20254a;
  margin: 0 0 16px;
}

.pdp-solution__body {
  font-size: 15px;
  line-height: 1.8;
  color: #5e6784;
}

/* ── Stats ── */
.pdp-stats {
  padding: 48px 0;
}

.pdp-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pdp-stats__item {
  text-align: center;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(32, 37, 74, .08);
}

.pdp-stats__pct {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: #20254a;
  line-height: 1;
  margin-bottom: 8px;
}

.pdp-stats__desc {
  font-size: 14px;
  line-height: 1.5;
  color: #5e6784;
}

/* ── Showcase Image ── */
.pdp-showcase {
  padding: 48px 0;
  border-radius: 20px;
  overflow: hidden;
}

.pdp-showcase img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* ── Journey Timeline ── */
.pdp-journey {
  padding: 48px 0;
}

.pdp-journey__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.pdp-journey__timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: rgba(32, 37, 74, .12);
}

.pdp-journey__step {
  text-align: center;
  position: relative;
  padding-top: 16px;
}

.pdp-journey__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  display: block;
}

.pdp-journey__phase {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #5e6784;
  margin-bottom: 6px;
}

.pdp-journey__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #20254a;
  margin-bottom: 6px;
}

.pdp-journey__body {
  font-size: 13px;
  line-height: 1.5;
  color: #5e6784;
  margin: 0;
}

/* ── Feeding Guide ── */
.pdp-feeding {
  padding: 48px 0;
}

.pdp-feeding__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pdp-feeding__item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(32, 37, 74, .08);
}

.pdp-feeding__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.pdp-feeding__weight {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #20254a;
  margin-bottom: 4px;
}

.pdp-feeding__dosage {
  display: block;
  font-size: 13px;
  color: #5e6784;
}

/* ── Quality Features ── */
.pdp-quality {
  padding: 48px 0;
}

.pdp-quality__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pdp-quality__item {
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(32, 37, 74, .08);
}

.pdp-quality__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #20254a;
  margin-bottom: 6px;
}

.pdp-quality__desc {
  font-size: 13px;
  line-height: 1.6;
  color: #5e6784;
  margin: 0;
}

/* ── Ingredients + Nutrition Tabs ── */
.pdp-ingredients {
  padding: 48px 0;
}

.pdp-ingredients__tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(32, 37, 74, .1);
  margin-bottom: 24px;
}

.pdp-ingredients__tab {
  padding: 10px 24px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 700;
  color: #5e6784;
  cursor: pointer;
  position: relative;
  transition: color .2s;
}

.pdp-ingredients__tab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background .2s;
}

.pdp-ingredients__tab--active {
  color: #20254a;
}

.pdp-ingredients__tab--active::after {
  background: #20254a;
}

.pdp-ingredients__panel {
  display: none;
}

.pdp-ingredients__panel--active {
  display: block;
}

.pdp-ingredients__list {
  display: grid;
  gap: 12px;
}

.pdp-ingredients__item {
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(32, 37, 74, .06);
}

.pdp-ingredients__item h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #20254a;
}

.pdp-ingredients__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5e6784;
}

.pdp-ingredients__nutrition-section {
  margin-bottom: 24px;
}

.pdp-ingredients__nutrition-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: #20254a;
  margin: 0 0 10px;
}

.pdp-ingredients__nutrition-section ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.pdp-ingredients__nutrition-section li {
  font-size: 14px;
  line-height: 1.5;
  color: #5e6784;
}

.pdp-ingredients__nutrition-section p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5e6784;
}

/* ── CTA Banner ── */
.pdp-cta-banner {
  padding: 48px 32px;
  border-radius: 20px;
  background: #20254a;
  text-align: center;
  margin: 48px 0;
}

.pdp-cta-banner h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.pdp-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  border-radius: 999px;
  background: #fff;
  color: #20254a;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
}

.pdp-cta-banner__btn:hover {
  color: #20254a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

/* ── Reviews ── */
.pdp-reviews {
  padding: 48px 0;
}

.pdp-reviews__header {
  margin-bottom: 24px;
}

.pdp-reviews__header h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #20254a;
  margin: 0 0 8px;
}

.pdp-reviews__summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5e6784;
}

.pdp-reviews__count {
  color: #5e6784;
}

.pdp-reviews__list {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.pdp-reviews__item {
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(32, 37, 74, .06);
}

.pdp-reviews__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.pdp-reviews__meta strong {
  font-size: 14px;
  color: #20254a;
}

.pdp-reviews__meta time {
  font-size: 12px;
  color: #5e6784;
}

.pdp-reviews__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5e6784;
}

/* ── Review Gate (legacy compat) ── */
.ai-dtc-review-gate {
  margin: 24px 0;
  padding: 24px;
  border: 1px solid rgba(32, 37, 74, .10);
  border-radius: 16px;
  background: #fff;
}

.ai-dtc-review-gate__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  margin-top: 18px;
}

.ai-dtc-review-gate__form--review {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ai-dtc-review-gate__form label {
  display: grid;
  gap: 7px;
  color: #5e6784;
  font-size: 13px;
  font-weight: 800;
}

.ai-dtc-review-gate__form input,
.ai-dtc-review-gate__form select,
.ai-dtc-review-gate__form textarea {
  width: 100%;
  border: 1px solid rgba(32, 37, 74, .14);
  border-radius: 14px;
  color: #20254a;
  font: inherit;
  padding: 12px 14px;
}

.ai-dtc-review-gate__form button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #20254a;
  cursor: pointer;
  font-weight: 900;
  padding: 0 22px;
}

.ai-dtc-review-gate__wide,
.ai-dtc-review-gate__verified {
  grid-column: 1 / -1;
}

.ai-dtc-review-gate__verified {
  margin: 0;
  color: #20254a;
  font-weight: 900;
}

.ai-dtc-review-gate__notice {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
}

.ai-dtc-review-gate__notice--success {
  color: #173725;
  background: #e8f4ec;
}

.ai-dtc-review-gate__notice--error {
  color: #7d1d1d;
  background: #fbe9e9;
}

/* ── FAQ Accordion ── */
.pdp-faq {
  padding: 48px 0;
}

.pdp-faq h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #20254a;
  margin: 0 0 24px;
}

.pdp-faq__item {
  border-bottom: 1px solid rgba(32, 37, 74, .1);
}

.pdp-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #20254a;
  line-height: 1.4;
}

.pdp-faq__chevron {
  flex-shrink: 0;
  transition: transform .25s ease;
  color: #5e6784;
}

.pdp-faq__item--open .pdp-faq__chevron {
  transform: rotate(180deg);
}

.pdp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.pdp-faq__item--open .pdp-faq__answer {
  max-height: 500px;
}

.pdp-faq__answer p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #5e6784;
}

/* ── Related Products ── */
.pdp-related {
  padding: 48px 0;
}

.pdp-related h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #20254a;
  margin: 0 0 24px;
}

.pdp-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

/* ── Hero: Grid-based 2-column layout ── */
.pdp-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 769px) {
  .pdp {
    padding-top: 32px;
  }

  .pdp-hero {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

/* ── Responsive: ≤768px single column ── */
@media (max-width: 768px) {
  .pdp {
    padding: 0 14px;
  }

  .pdp-hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pdp-benefit-icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .pdp-stats__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pdp-journey__timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pdp-journey__timeline::before {
    display: none;
  }

  .pdp-journey__step {
    text-align: left;
    padding: 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(32, 37, 74, .06);
  }

  .pdp-journey__icon {
    margin: 0 0 8px;
  }

  .pdp-feeding__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pdp-quality__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pdp-cta-banner {
    padding: 32px 20px;
    margin: 32px 0;
  }

  .pdp-vet-full {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }

  .ai-dtc-review-gate__form,
  .ai-dtc-review-gate__form--review {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .pdp-feeding__grid {
    grid-template-columns: 1fr;
  }

  .pdp-quality__grid {
    grid-template-columns: 1fr;
  }

  .pdp-purchase__qty {
    display: block;
    border-radius: 14px;
    margin-bottom: 12px;
    margin-right: 0;
  }

  .pdp-purchase__qty-btn {
    width: 44px;
  }

  .pdp-purchase__qty-input {
    width: 50px;
  }

  .pdp-purchase__btn {
    display: flex;
    width: 100%;
    text-align: center;
  }
}

/* ── Scroll reveal animation ── */
.pdp-vet-full,
.pdp-promise,
.pdp-problem,
.pdp-solution,
.pdp-stats,
.pdp-showcase,
.pdp-journey,
.pdp-feeding,
.pdp-quality,
.pdp-ingredients,
.pdp-cta-banner,
.pdp-reviews,
.pdp-faq,
.pdp-related {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.pdp--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .pdp-vet-full,
  .pdp-promise,
  .pdp-problem,
  .pdp-solution,
  .pdp-stats,
  .pdp-showcase,
  .pdp-journey,
  .pdp-feeding,
  .pdp-quality,
  .pdp-ingredients,
  .pdp-cta-banner,
  .pdp-reviews,
  .pdp-faq,
  .pdp-related {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
