/* ==========================================================================
   product detail page — gallery + buy box up top, tabs below, related
   products at the bottom. Single column on mobile, the reference's
   two-column layout from tablet/desktop up.
   ========================================================================== */

.pdp {
  position: relative;
  z-index: 2;
  background: var(--hero-bg, #eef2e9);
  padding: clamp(5.5rem, 14vw, 7rem) clamp(1.1rem, 6vw, 3rem) clamp(4rem, 10vw, 6rem);
}

.pdp__inner {
  max-width: 76rem;
  margin: 0 auto;
}

@media (min-width: 1440px) {
  .pdp__inner {
    max-width: 84rem;
  }
}

.pdp__crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--hero-body);
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.pdp__crumbs a {
  color: var(--hero-body);
  text-decoration: none;
}

.pdp__crumbs a:hover {
  color: var(--hero-green);
}

.pdp__crumbs [aria-current] {
  color: var(--hero-ink);
  font-weight: 600;
}

/* -- top: gallery + buy box -- */
.hero__topbar{
 
    background: rgb(255 255 255 / 0%) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px);

}
.pdp__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.pdp__thumbs {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  overflow-x: auto;
}

.pdp__thumb {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 1.5px solid #00000017;
    background: transparent;
    padding: 0.3rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.pdp__thumb:hover {
   
    border: 1.5px solid var(--hero-green);
  
    cursor: pointer;
   
}
.pdp__thumb.is-active {
  border-color: var(--hero-green);
}

.pdp__thumb picture,
.pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pdp__main-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;

  aspect-ratio: 4 / 3.4;
}

.pdp__main-image-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.pdp__main-image-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdp__main-image-item.is-active {
  opacity: 1;
}

.pdp__main-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: rgb(255 255 255 / 34%);
    color: var(--hero-green);
    cursor: pointer;
    box-shadow: 0 10px 22px -14px rgba(32, 45, 41, 0.4);
    transition: background 0.2s ease, transform 0.2s ease;
}

.pdp__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.pdp__arrow--prev {
  left: 12px;
}

.pdp__arrow--next {
  right: 12px;
}



/* -- buy box -- */

.pdp__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hero-green-accent);
  margin-bottom: 0.5rem;
}

.pdp__title {
  margin: 0 0 0.6rem;
  font-family: var(--hero-font);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--hero-ink);
}

.pdp__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--hero-body);
  margin-bottom: 0.9rem;
}

.pdp__stars {
  color: var(--hero-green);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.pdp__price {
  display: block;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--hero-ink);
  margin-bottom: 0.9rem;
}

.pdp__intro {
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--hero-body);
  max-width: 34rem;
}

.pdp__option {
  margin-bottom: 1.25rem;
}

.pdp__option-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hero-body);
  margin-bottom: 0.6rem;
}

.pdp__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pdp__pill {
  border: 1.5px solid rgba(40, 104, 71, 0.22);
  background: #fff;
  color: var(--hero-body);
  font-family: var(--hero-font);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55em 1.3em;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.pdp__pill.is-active {
  border-color: var(--hero-green);
  color: var(--hero-green);
  background: rgba(40, 104, 71, 0.08);
}

.pdp__qty-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.pdp__stepper {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 1.5px solid rgba(40, 104, 71, 0.22);
  border-radius: 999px;
  padding: 0.5em 1em;
}

.pdp__stepper-btn {
  border: 0;
  background: transparent;
  color: var(--hero-green);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  width: 1.4rem;
}

.pdp__stepper-value {
  min-width: 1ch;
  text-align: center;
  font-weight: 600;
  color: var(--hero-ink);
}

.pdp__qty-price {
  display: flex;
  flex-direction: column;
}

.pdp__qty-price span:first-child {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--hero-ink);
}

.pdp__qty-unit {
  font-size: 0.78rem;
  color: var(--hero-body);
}

.pdp__add-to-cart {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  border: 0;
  background: var(--hero-green);
  color: #fff;
  font-family: var(--hero-font);
  font-weight: 600;
  font-size: 1rem;
  padding: 1em;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  margin-bottom: 1.25rem;
}

.pdp__add-to-cart:hover {
  background: var(--hero-green-accent);
}

.pdp__add-to-cart.is-added {
  background: #2d7252;
}

.pdp__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp__trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--hero-body);
}

.pdp__trust i {
  color: var(--hero-green-accent);
}

/* -- tabs -- */

.pdp__tabs
 {
    background: #ffffff57;
    border-radius: 22px;
    padding: clamp(1.25rem, 4vw, 2rem);
    margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.pdp__tab-nav {
    display: flex;
    gap: clamp(2rem, 3vw, 2rem);
    /* overflow-x:auto is what lets the tab row scroll horizontally on
       mobile when all 5 tabs don't fit — overflow-y has to be pinned
       to hidden explicitly, otherwise the browser implicitly makes it
       auto too (per spec, one axis can't stay "visible" once the other
       isn't), which was spawning a stray vertical scrollbar */
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 1px solid rgba(40, 104, 71, 0.14);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    /* flex-start, not center: centering a scrollable flex row makes
       the browser start the scroll position centered on the overflow,
       clipping equal slivers off BOTH ends before you've scrolled at
       all — that's what was hiding the "D" in Description */
    justify-content: flex-start;
}

@media (min-width: 1024px) {
  .pdp__tab-nav {
    /* desktop has room for all 5 tabs at once — no scrolling at all */
    overflow-x: visible;
  }
}

.pdp__tab-btn {
  flex: 0 0 auto;
  position: relative;
  border: 0;
  background: transparent;
  color: var(--hero-body);
  font-family: var(--hero-font);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0 0 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}

.pdp__tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--hero-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.pdp__tab-btn.is-active {
  color: var(--hero-green);
}

.pdp__tab-btn.is-active::after {
  transform: scaleX(1);
}

.pdp__tab-panel {
  display: none;
}

.pdp__tab-panel.is-active {
  display: block;
}

.pdp__tab-panel p {
  color: var(--hero-body);
  line-height: 1.6;
  font-size: 0.95rem;
}

.pdp__desc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.pdp__desc-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--hero-font);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--hero-ink);
}

.pdp__benefit-tiles {
  margin-top: 1.5rem;
}

/* -- mobile (default): an accordion, same interaction language as the
   FAQ tab — a chevron that rotates on open, height animated off
   scrollHeight since "auto" can't be transitioned. Desktop reverts
   these same elements back to the always-visible icon+title+text
   tiles via the min-width:1024px override further down. -- */

.pdp__benefit-tile,
.pdp__how-tile {
  border-bottom: 1px solid rgba(40, 104, 71, 0.12);
}

.pdp__benefit-tile:last-child,
.pdp__how-tile:last-child {
  border-bottom: 0;
}

.pdp__benefit-toggle,
.pdp__how-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 0;
  padding: 0.85rem 0;
  cursor: pointer;
  text-align: left;
}

.pdp__benefit-icon,
.pdp__how-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(40, 104, 71, 0.1);
  color: var(--hero-green);
  font-size: 1rem;
}

.pdp__benefit-toggle h3,
.pdp__how-toggle h4 {
  flex: 1 1 auto;
  margin: 0;
  font-family: var(--hero-font);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--hero-ink);
}

.pdp__tile-arrow {
  flex: 0 0 auto;
  color: var(--hero-green);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.pdp__benefit-tile.is-open .pdp__tile-arrow,
.pdp__how-tile.is-open .pdp__tile-arrow {
  transform: rotate(180deg);
}

.pdp__tile-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.pdp__tile-body p {
  margin: 0;
  padding: 0 0 0.9rem calc(40px + 0.75rem);
  font-size: 0.82rem;
  color: var(--hero-body);
}

.pdp__testimonial {
  position: relative;
  background: var(--hero-bg, #eef2e9);
  border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 2rem);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pdp__testimonial picture,
.pdp__testimonial img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pdp__testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(20, 30, 25, 0.55) 0%, rgba(20, 30, 25, 0) 55%);
}

.pdp__testimonial blockquote {
  position: relative;
  z-index: 2;
  margin: 0 0 0.4rem;
  font-family: var(--hero-font);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.35;
  color: #fff;
}

.pdp__testimonial-author {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.pdp__how-strip--standalone {
  margin: 0;
}

.pdp__reviews-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pdp__reviews-score {
  font-family: var(--hero-font);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--hero-ink);
}

.pdp__reviews-summary p {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
}

.pdp__tab-panel a {
  color: var(--hero-green);
  font-weight: 600;
}

/* -- faq tab -- */

.pdp__faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pdp__faq-item {
  border: 1px solid rgba(40, 104, 71, 0.14);
  border-radius: 14px;
}
.hero__topbar--scrolled {
 
    background: rgb(255 255 255 / 0%) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px);

}
.hero__topbar {
   
    backdrop-filter: blur(0px) ;
    
}

.pdp__faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  padding: 0.9rem 1.1rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--hero-font);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--hero-ink);
}

.pdp__faq-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(40, 104, 71, 0.3);
  color: var(--hero-green);
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.pdp__faq-item.is-open .pdp__faq-icon {
  transform: rotate(135deg);
}

.pdp__faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.pdp__faq-answer p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  font-size: 0.88rem;
}

/* -- reviews tab -- */

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

.pdp__review-form-wrap h3 {
  margin: 0 0 1.1rem;
  font-family: var(--hero-font);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--hero-ink);
}

.pdp__review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 30rem;
}

.pdp__review-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pdp__review-field span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hero-body);
}

.pdp__review-field input, .pdp__review-field textarea
 {
    font: inherit;
    font-size: 0.9rem;
    color: var(--hero-ink);
    background: #ffffff00;
    border: 1px solid rgba(40, 104, 71, 0.18);
    border-radius: 12px;
    padding: 0.7rem 0.85rem;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pdp__review-field input:focus,
.pdp__review-field textarea:focus {
  outline: none;
  border-color: var(--hero-green);
  box-shadow: 0 0 0 3px rgba(40, 104, 71, 0.12);
}

.pdp__review-stars {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.2rem 0;
}

.pdp__review-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  padding: 0.15rem;
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(40, 104, 71, 0.22);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.pdp__review-star:hover {
  transform: scale(1.12);
}

.pdp__review-star.is-filled {
  color: #e8b944;
}

/* a perfect 5-star pick lights the whole row up together, not just
   the stars one by one — a little celebratory instead of purely
   functional feedback */
.pdp__review-stars.is-perfect .pdp__review-star.is-filled {
  color: #f0a93a;
  filter: drop-shadow(0 0 6px rgba(240, 169, 58, 0.6));
  animation: pdp-review-star-pop 0.35s ease;
}

@keyframes pdp-review-star-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.28); }
  100% { transform: scale(1); }
}

.pdp__review-submit {
  align-self: flex-start;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  background: var(--hero-green);
  color: #fff;
  font-family: var(--hero-font);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pdp__review-submit:hover {
  background: var(--hero-green-accent, #1f5138);
  transform: translateY(-1px);
}

.pdp__review-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pdp__review-card {
  border: 1px solid rgba(40, 104, 71, 0.14);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  background: #fff;
}

.pdp__review-card--perfect {
  border-color: rgba(240, 169, 58, 0.45);
  background: linear-gradient(180deg, rgba(240, 169, 58, 0.08), #fff 55%);
}

.pdp__review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.pdp__review-card-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--hero-ink);
}

.pdp__review-card-stars {
  color: #e8b944;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.pdp__review-card-stars .pdp__review-card-star--empty {
  color: rgba(40, 104, 71, 0.18);
}

.pdp__review-card-text {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--hero-body);
}

.pdp__review-card-date {
  font-size: 0.75rem;
  color: rgba(59, 74, 66, 0.55);
}

.pdp__review-empty {
  display: none;
  margin: 0;
  font-size: 0.88rem;
  color: var(--hero-body);
}

/* -- related products -- */

.pdp__related h2 {
  font-family: var(--hero-font);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--hero-ink);
  margin: 0 0 1.25rem;
  text-align: center;
}

/* mobile: one scrollable row instead of a wrapping grid — each bubble
   gets a fixed width so a couple of neighbors peek in at the edge */
.pdp__related-grid

 {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 30px;
    scroll-snap-type: x proximity;
}

.pdp__related-grid .pdp__related-bubble-card {
  flex: 0 0 auto;
  width: 65%;
  max-width: 220px;
  scroll-snap-align: start;
}

/* one single bubble — image filling the top completely, title+price
   stacked below it, all inside the same rounded glassy card (not a
   separate image-bubble floating above loose text). Same sheen +
   gentle-bob language as the icon bubbles on "what's inside", just
   shaped like a normal product card. No "Add to Cart" here — the
   whole bubble is just a link through to that product's own page. */
.pdp__related-bubble-card {
  display: block;
  text-decoration: none;
}

.pdp__related-bubble {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(160deg, #dfe6db, var(--hero-bg, #eef2e9));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 20px 34px -20px rgba(32, 45, 41, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  animation: pdp-bubble-float 4.4s ease-in-out infinite;
  animation-delay: var(--bubble-delay, 0s);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdp__related-bubble-card:hover .pdp__related-bubble {
  transform: scale(1.03);
  box-shadow:
    0 26px 44px -18px rgba(32, 45, 41, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* the media area fills its own full width/height — the image covers
   it completely, edge to edge, instead of floating inset with padding */
.pdp__related-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.7;
}

.pdp__related-media picture,
.pdp__related-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes pdp-bubble-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

.pdp__related-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.9rem 1rem;
}

.pdp__related-copy h3 {
  margin: 0;
  font-family: var(--hero-font);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--hero-ink);
}

.pdp__related-price {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--hero-ink) !important;
}

@media (prefers-reduced-motion: reduce) {
  .pdp__tab-btn::after,
  .pdp__faq-answer,
  .pdp__related-bubble {
    transition: none;
    animation: none;
  }
}

/* ==========================================================================
   desktop
   ========================================================================== */

@media (min-width: 768px) {
  .pdp__desc-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .pdp__related-grid {
    /* flex + centered, not a fixed 4-column grid — with only 3 related
       items (every other product besides this one), a 4-col grid left-
       aligns them with a hollow gap on the right instead of centering
       the row as a block */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    overflow-x: visible;
  }

  .pdp__related-grid .pdp__related-bubble-card {
    width: 220px;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .pdp__top {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }

  .pdp__thumbs {
    flex-direction: column;
    width: 76px;
  }

  .pdp__gallery {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 1rem;
    align-items: start;
  }

  .pdp__gallery .pdp__main-image {
    grid-column: 2;
    grid-row: 1;
  }

  .pdp__gallery .pdp__thumbs {
    grid-column: 1;
    grid-row: 1;
  }

  .pdp__gallery .pdp__mini-badges {
    grid-column: 1 / -1;
  }

  .pdp__add-to-cart {
    width: auto;
    padding: 1em 2.25em;
  }

  /* desktop: back to the always-visible icon+title+text tiles — the
     accordion (chevron, collapsed body, border-bottom rows) is a
     mobile-only affordance. `display: contents` on the toggle button
     drops its own box but keeps the icon/title inside it as direct
     participants in the tile's grid, so the body's paragraph can sit
     directly under the title again instead of under the whole button row. */
  .pdp__benefit-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .pdp__how-strip--standalone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    background: var(--hero-bg, #eef2e9);
    border-radius: 18px;
    padding: clamp(1.25rem, 4vw, 1.75rem);
  }

  .pdp__benefit-tile,
  .pdp__how-tile {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.75rem;
    border-bottom: 0;
  }

  .pdp__benefit-toggle,
  .pdp__how-toggle {
    display: contents;
    cursor: default;
  }

  .pdp__benefit-icon,
  .pdp__how-icon {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .pdp__benefit-toggle h3,
  .pdp__how-toggle h4 {
    grid-column: 2;
    grid-row: 1;
  }

  .pdp__tile-arrow {
    display: none;
  }

  .pdp__tile-body {
    grid-column: 2;
    grid-row: 2;
    height: auto !important;
    overflow: visible;
  }

  .pdp__tile-body p {
    padding: 0;
  }

  /* the shop-benefits marquee treatment (full-bleed, auto-scroll) is a
     mobile-only affordance here — desktop goes back to how this row
     looked originally: a small plain static line under the gallery,
     not the shop section's bigger centered/bordered desktop style.
     Scoped to .pdp__mini-badges specifically so the homepage's own
     .shop-benefits desktop look is completely untouched. */
  .pdp__mini-badges.shop-benefits {
    max-width: none;
    margin: 1rem 0 0;
    padding-top: 0;
    border-top: 0;
  }

     .pdp__mini-badges .shop-benefits__track {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
        margin-left: 92px;
    }

  .pdp__mini-badges .shop-benefits__track li {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    color: var(--hero-body);
  }

  .pdp__mini-badges .shop-benefits__track i {
    font-size: 0.85em;
    color: var(--hero-green-accent);
  }
}
