/* ==========================================================================
   InSono — Produktdetailseite (PDP)
   Ported from the Shopify assets:
     component-product-buybox.css, component-product-buybox-bullets.css,
     component-insono-configurator.css, component-product-trust-bar.css,
     section-custom-pdp-details.css, section-product-process.css,
     section-product-compare.css, section-product-lifestyle.css,
     component-product-usp-highlights.css
   ========================================================================== */



/* ========================================================================
   Product gallery & buy box (title, price, bullets)
   ======================================================================== */


/* ============================================================
   Premium buy box (PDP): quantity + add to cart + payment
   Brand accent: #0a7a4f (Insono green)
   ============================================================ */

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

/* -------- Quantity selector ("Anzahl") --------------------- */
.product-form__quantity,
.product-form__input.product-form__quantity {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 0 0 2rem 0;
}

.product-form__quantity .quantity__label,
.product-form__quantity .form__label {
  margin: 0;
  flex: 0 0 auto;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.55);
  white-space: nowrap;
}

.product-form__quantity-top .quantity__label,
.product-form__quantity-top .form__label {
  margin-bottom: 0;
}

.product-form__quantity .price-per-item__container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.product-form__quantity .quantity {
  display: inline-flex;
  width: auto;
  min-height: 4.4rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.16);
  border-radius: 1.1rem;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.product-form__quantity .quantity::after {
  display: none;
}
.product-form__quantity .quantity:focus-within {
  border-color: #346d4e;
  box-shadow: 0 0 0 0.3rem rgba(52, 109, 78, 0.14);
}

.product-form__quantity .quantity__button {
  width: 3.8rem;
  border-radius: 0;
  color: rgb(var(--color-foreground));
  transition: background 0.15s ease, color 0.15s ease;
}
.product-form__quantity .quantity__button:hover {
  background: rgba(52, 109, 78, 0.08);
  color: #346d4e;
}
.product-form__quantity .quantity__button svg {
  width: 1.3rem;
  height: 1.3rem;
}

.product-form__quantity .quantity__input {
  width: 3.6rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: rgb(var(--color-foreground));
}

/* -------- Add to cart button — solid dark forest green (ref) ---------- */
.product-form__submit {
  position: relative;
  min-height: 5.6rem;
  border: 0;
  border-radius: 1.4rem;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: #346d4e;
  box-shadow: 0 0.8rem 1.8rem -0.6rem rgba(52, 109, 78, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  overflow: hidden;
}
.product-form__submit::after {
  display: none;
}
.product-form__submit::before {
  display: none;
}
.product-form__submit:hover:not([disabled]):not(.disabled) {
  transform: translateY(-0.15rem);
  box-shadow: 0 1.2rem 2.2rem -0.8rem rgba(52, 109, 78, 0.6);
  filter: brightness(1.04);
}
.product-form__submit:active:not([disabled]):not(.disabled) {
  transform: translateY(0);
  box-shadow: 0 0.5rem 1.2rem -0.6rem rgba(52, 109, 78, 0.5);
}
.product-form__submit[disabled],
.product-form__submit.disabled {
  background: rgba(var(--color-foreground), 0.1);
  color: rgba(var(--color-foreground), 0.5);
  box-shadow: none;
}
.product-form__submit > span {
  position: relative;
  z-index: 1;
}

/* -------- Dynamic checkout / PayPal area ------------------- */
.product-form .shopify-payment-button {
  margin-top: 0.2rem;
}
.product-form .shopify-payment-button__button {
  min-height: 5.4rem;
  border-radius: 1.4rem !important;
  font-weight: 700;
}
.product-form .shopify-payment-button__button--unbranded {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  transition: filter 0.15s ease, transform 0.15s ease;
}
.product-form .shopify-payment-button__button--unbranded:hover {
  filter: brightness(1.1);
  transform: translateY(-0.1rem);
}

/* "Weitere Bezahlmöglichkeiten" */
.product-form .shopify-payment-button__more-options {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(var(--color-foreground), 0.6);
  text-underline-offset: 0.3rem;
  transition: color 0.15s ease;
}
.product-form .shopify-payment-button__more-options:hover {
  color: #0a7a4f;
}

/* -------- Reassurance row under the buttons (legacy) ---------------- */
.insono-buybox-trust {
  display: none;
}

/* Payment + trust icons + Trustpilot + Mengenrabatt (grouped below ATC) */
.insono-buybox-trust-stack {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 0.4rem;
}

.insono-buybox-trust-stack .insono-usp--pay {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.insono-buybox-trust-stack .insono-usp-stack--compact {
  margin: 0;
}

.insono-buybox-trust-stack .insono-qd {
  margin: 0;
}

/* Price reassurance under live configurator price */
.insono-price-reassurance {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.6rem 0 1.2rem;
  color: rgba(var(--color-foreground), 0.58);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.insono-price-reassurance__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  color: #0a7a4f;
}

.insono-price-reassurance__icon svg {
  width: 100%;
  height: 100%;
}

/* -------- Mobile (≤749px) ---------------------------------- */
@media screen and (max-width: 749px) {
  /* Let the buttons run edge-to-edge — drop the desktop max-width cap. */
  .product-form__buttons {
    max-width: none;
  }
}



/* ========================================================================
   Buybox-Bullets
   ======================================================================== */


/* Buy box intro: title + bullets + review link */

.insono-buybox-intro {
  display: grid;
  gap: 0.35rem;
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.insono-buybox-intro .insono-buybox-bullets + .insono-buybox-reviews {
  margin-top: 0.05rem;
}

.insono-buybox-intro .insono-buybox-bullets__item:last-child {
  padding-bottom: 0.2rem;
}

.insono-buybox-intro .product__title {
  margin-bottom: 0;
  gap: 0.55rem;
}

.insono-buybox-intro .insono-buybox-reviews--top {
  margin: 0 !important;
  margin-top: 0 !important;
  padding: 0 !important;
  padding-top: 0 !important;
  border: 0 !important;
  border-top: none !important;
  justify-content: flex-start;
}

.insono-buybox-reviews--top .insono-buybox-reviews__stars {
  font-size: 1.78rem;
  letter-spacing: 0.05em;
}

.insono-buybox-intro .insono-buybox-reviews--top + .product__title {
  margin-top: 0.75rem;
}

.insono-buybox-tagline {
  margin: 0.7rem 0 0;
  max-width: 54rem;
  font-size: 1.68rem;
  font-weight: 550;
  line-height: 1.48;
  letter-spacing: -0.016em;
  color: rgba(var(--color-foreground), 0.72);
}

.insono-buybox-trust-stack .insono-buybox-bullets {
  margin: 0.15rem 0 0.8rem;
  padding: 0;
  border: 0;
}

.insono-buybox-trust-stack .insono-usp-stack--compact {
  margin: 0;
  padding: 0;
  border: 0;
  gap: 1rem;
}

.insono-buybox-trust-stack .insono-usp--pay {
  margin: 0;
  padding: 0;
  border: 0;
}

.insono-buybox-trust-stack .insono-buybox-perks {
  margin: 0;
  padding: 0;
  border: 0;
}

.insono-buybox-reviews {
  --buybox-reviews-green: #0a7a4f;
  --buybox-reviews-star: #F18F14;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  width: 100%;
  margin-top: 0.1rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
  background: transparent;
  text-decoration: none;
  color: inherit;
}

.insono-buybox-reviews:hover {
  color: inherit;
}

.insono-buybox-reviews__lead {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 1 1 auto;
  min-width: 0;
}

.insono-buybox-reviews__stars {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.insono-buybox-reviews__stars-base {
  color: rgba(var(--color-foreground), 0.14);
}

.insono-buybox-reviews__stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--buybox-rating, 88%);
  overflow: hidden;
  color: var(--buybox-reviews-star);
  white-space: nowrap;
}

.insono-buybox-reviews__body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.4rem;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.36rem;
  line-height: 1.35;
}

.insono-buybox-reviews__score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  line-height: 1.2;
}

.insono-buybox-reviews__score-value {
  font-size: inherit;
  font-weight: 700;
  color: var(--buybox-reviews-green);
}

.insono-buybox-reviews__score-label {
  font-size: inherit;
  font-weight: 600;
  color: rgba(var(--color-foreground), 0.7);
}

.insono-buybox-reviews__count {
  font-size: inherit;
  font-weight: 500;
  color: rgba(var(--color-foreground), 0.56);
}

.insono-buybox-reviews__count::before {
  content: '·';
  margin-right: 0.4rem;
  color: rgba(var(--color-foreground), 0.32);
}

.insono-buybox-reviews__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex: 0 0 auto;
  padding: 0;
  color: var(--buybox-reviews-green);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  transition: color 0.2s ease;
}

.insono-buybox-reviews__cta-icon {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.2s ease;
}

.insono-buybox-reviews:hover .insono-buybox-reviews__cta {
  color: #086a44;
}

.insono-buybox-reviews:hover .insono-buybox-reviews__cta-icon {
  transform: translateX(0.1rem);
}

.insono-buybox-reviews--empty {
  justify-content: flex-start;
}

.insono-buybox-reviews--empty .insono-buybox-reviews__stars,
.insono-buybox-reviews--empty .insono-buybox-reviews__cta {
  display: none;
}

.insono-buybox-reviews--empty .insono-buybox-reviews__body {
  color: rgba(var(--color-foreground), 0.55);
}

/* Legacy + script guard selectors */
.insono-buybox-rating,
.insono-buybox-header,
.insono-buybox-social {
  display: none;
}

.insono-buybox-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.insono-buybox-bullets__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.45rem 0;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(var(--color-foreground), 0.88);
}

.insono-buybox-bullets__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-top: 0.08rem;
  border-radius: 50%;
  background: linear-gradient(145deg,var(--usp-gold-1),var(--usp-gold-2));

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
}

.insono-buybox-bullets__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

@media screen and (max-width: 749px) {
  .insono-buybox-reviews {
    gap: 0.7rem;
  }

  .insono-buybox-reviews__body {
    font-size: 1.2rem;
  }

  .insono-buybox-bullets__item {
    font-size: 1.38rem;
  }

  .insono-buybox-tagline {
    font-size: 1.54rem;
  }

  .insono-buybox-reviews--top .insono-buybox-reviews__stars {
    font-size: 1.46rem;
  }
}



/* ========================================================================
   Configurator (measurement input)
   ======================================================================== */


/* Framed card around the DPO configurator (made-to-measure options) on the PDP.
   Soft mint→white gradient (very subtle), dark-green selected border only. */
.insono-configurator {
  --cfg-ink: #1d1d1d;
  --cfg-muted: #939393;
  --cfg-line: #e2e2e2;
  --cfg-line-strong: #d0d0d0;
  --cfg-select: #326755;
  --cfg-price: #356454;
  --cfg-info: #1778c6;
  --cfg-thumb-bg: #f0efe9;

  position: relative;
  margin: 1.6rem 0 0 0;
  padding: 1.8rem;
  border-radius: 2rem;
  background: radial-gradient(140% 120% at 100% 0%,rgba(10,122,79,.05),transparent 55%),white;
  border: 0.1rem solid rgba(29, 29, 29, 0.08);
  box-shadow: 0 0.6rem 1.8rem -1.4rem rgba(29, 29, 29, 0.16);
  /* Keep visible so option tooltips can overflow the card without being clipped. */
  overflow: visible;
}

.insono-configurator__head {
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.1rem solid rgba(29, 29, 29, 0.07);
}

.insono-configurator__head-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.insono-configurator__title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--cfg-ink);
}

.insono-configurator__sub {
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 400;
  color: var(--cfg-muted);
}

@media screen and (max-width: 749px) {
  .insono-configurator {
    padding: 1.4rem;
  }
}

/* ============================================================
   DPO (ITORIS) configurator internals — 1:1 live / reference
   ============================================================ */

/* Flatten the legacy table layout into clean, full-width blocks. */
.insono-configurator .form-list,
.insono-configurator .form-list tr.fields > td {
  display: block;
  width: 100%;
}
.insono-configurator .form-list tr.fields > td {
  padding: 0;
  border: 0;
}

/* tbody becomes a flex grid so dimension fields can sit side by side. */
.insono-configurator #itoris_dynamicproductoptions .form-list tbody {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 1.1rem;
  width: 100%;
}
.insono-configurator #itoris_dynamicproductoptions .form-list tr.fields {
  display: block;
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom:10px;
}
/* Width / height (text inputs) → two columns */
.insono-configurator #itoris_dynamicproductoptions .form-list tr.fields:has(input[type="text"]) {
  flex: 0 0 calc(50% - 0.55rem);
  max-width: calc(50% - 0.55rem);
}
/* RAL Freitext bleibt volle Breite */
.insono-configurator #itoris_dynamicproductoptions .form-list tr.fields:has([data-cfg-ral-field]) {
  flex: 0 0 100%;
  max-width: 100%;
}
/* Keep hidden text rows (e.g. RAL) collapsed so they leave no gap */
.insono-configurator #itoris_dynamicproductoptions .form-list tr.fields:has(.field.ihidden) {
  display: none;
}

.insono-configurator #itoris_dynamicproductoptions .field {
  margin: 0 0 2rem;
}
/* Override global .field { display:flex } — labels ABOVE controls like the reference */
.insono-configurator #itoris_dynamicproductoptions .field:not(.choice) {
  display: block;
  width: 100%;
}
.insono-configurator #itoris_dynamicproductoptions .field:last-child {
  margin-bottom: 0;
}
.insono-configurator .control {
  margin: 0;
  width: 100%;
}

/* Option title (width, colour, mounting position ...) */
.insono-configurator .field:not(.choice) > label {
  display: block;
  width: 100%;
  margin: 0 0 0.9rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cfg-ink);
}

/* Text inputs (width / height / RAL) — slightly shorter */
.insono-configurator input.input-text {
  width: 100%;
  box-sizing: border-box;
  min-height: 3.8rem;
  padding: 0.9rem 1.2rem;
  border: 0.1rem solid rgba(29, 29, 29, 0.16);
  border-radius: 1.1rem;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cfg-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.insono-configurator input.input-text::placeholder {
  color: rgba(29, 29, 29, 0.4);
  font-weight: 500;
}
.insono-configurator input.input-text:focus {
  outline: none;
  border-color: var(--cfg-select);
  box-shadow: 0 0 0 0.3rem rgba(50, 103, 85, 0.15);
}


/* Image option lists → compact horizontal rows (image left, label right) */
.insono-configurator .itoris-dynamicoptions-list-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 0.6rem;
}

/* id-scoped to reliably beat the app's own layout rules.
   Grid guarantees the label column gets all remaining width. */
.insono-configurator #itoris_dynamicproductoptions .itoris-dynamicoptions-list-images .field.choice {
  position: relative;
  display: grid;
  grid-template-columns: 5.6rem minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  padding: 0.5rem 0.8rem 0.5rem 0.5rem;
  cursor: pointer;
  border: 0.15rem solid rgba(29, 29, 29, 0.14);
  border-radius: 1rem;
  background: #fff;
  box-shadow: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.insono-configurator .itoris-dynamicoptions-list-images .field.choice:hover {
  border-color: rgba(50, 103, 85, 0.5);
}

/* Thumbnail: small, on the left, fully visible (no crop) */
.insono-configurator #itoris_dynamicproductoptions .itoris-dynamicoptions-thumbnail-image {
  order: -1;
  align-self: center;
  width: 100%;
  height: 4.4rem;
  max-height: 4.4rem;
  object-fit: contain;
  border-radius: 0.7rem;
  margin: 0;
  padding: 0.3rem;
  background: var(--cfg-thumb-bg);
  border: 0;
  box-sizing: border-box;
}

/* Hide native radio dot */
.insono-configurator .itoris-dynamicoptions-list-images input.radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Option label (right side) — normal flowing text in the 1fr grid column */
.insono-configurator #itoris_dynamicproductoptions .itoris-dynamicoptions-list-images .admin__field-label {
  display: block;
  min-width: 0;
  margin: 0;
  padding: 8px 12px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--cfg-ink);
  cursor: pointer;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}
.insono-configurator .itoris-dynamicoptions-list-images .admin__field-label > span:first-child {
  vertical-align: middle;
}

/* Selected card → dark-green border, same thickness as unselected */
.insono-configurator #itoris_dynamicproductoptions .itoris-dynamicoptions-list-images .field.choice:has(input:checked) {
  border-color: var(--cfg-select);
  border-width: 0.15rem;
  background: #fff;
  box-shadow: none;
}

/* Price surcharge pill — mint badge like the reference (+15,00 €) */
.insono-configurator .price-notice {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.45rem;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: #e8f1ee;
  color: #356454;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Tooltip "i" icon — Live DPO blue info chip */
.insono-configurator .dpo_tooltip_icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 1.55rem;
  height: 1.55rem;
  margin-left: 0.4rem;
  border-radius: 50%;
  background: var(--cfg-info);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  cursor: help;
  flex-shrink: 0;
}
.insono-configurator .dpo_tooltip_icon::before {
  content: "i";
}
.insono-configurator .dpo_tooltip_icon:hover,
.insono-configurator .dpo_tooltip_icon:focus {
  z-index: 60;
  outline: none;
}
.insono-configurator .dpo_tooltip_body {
  position: absolute;
  bottom: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: none;
  width: max-content;
  max-width: 24rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: #fff;
  color: var(--cfg-ink);
  font-size: 1.2rem;
  font-weight: 500;
  font-style: normal;
  font-family: var(--font-ui-family, inherit);
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  border: 0.1rem solid rgba(29, 29, 29, 0.1);
  box-shadow: 0 0.6rem 1.6rem -0.4rem rgba(0, 0, 0, 0.22);
  pointer-events: none;
}
.insono-configurator .dpo_tooltip_icon:hover .dpo_tooltip_body,
.insono-configurator .dpo_tooltip_icon:focus .dpo_tooltip_body {
  display: block;
}
.insono-configurator .dpo_tooltip_body::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 0.55rem solid transparent;
  border-top-color: #fff;
}
.insono-configurator .dpo_tooltip_body::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 0.65rem solid transparent;
  border-top-color: rgba(29, 29, 29, 0.1);
}

/* clearfix helpers DPO injects inside choices */
.insono-configurator .itoris-dynamicoptions-list-images .field.choice > div[style*="clear"] {
  display: none;
}

/* ---- Colour swatches : compact squares --------------------------- */
.insono-configurator .itoris-dynamicoptions-list-images:has(.dpo_swatch) {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.insono-configurator #itoris_dynamicproductoptions .field.choice.dpo_swatch {
  display: block;
  grid-template-columns: none;
  width: 4.6rem;
  padding: 0.3rem;
  gap: 0;
  border-radius: 1rem;
  border-color: rgba(29, 29, 29, 0.14);
  background: #fff;
}
.insono-configurator #itoris_dynamicproductoptions .field.choice.dpo_swatch .itoris-dynamicoptions-thumbnail-image {
  flex: 0 0 auto;
  width: 100%;
  height: 3.8rem;
  padding: 0;
  margin: 0;
  border-radius: 0.7rem;
  border: 0;
  background: transparent;
}
.insono-configurator #itoris_dynamicproductoptions .field.choice.dpo_swatch:has(input:checked) {
  border-color: var(--cfg-select);
  border-width: 0.1rem;
  background: #fff;
  box-shadow: none;
}
.insono-configurator .field.choice.dpo_swatch .admin__field-label {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Swatch hover popover — compact horizontal chip: name · price · i */
.insono-configurator .field.choice.dpo_swatch:hover .admin__field-label {
  bottom: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  max-width: none;
  height: auto;
  padding: 0.85rem 1.2rem;
  overflow: visible;
  clip: auto;
  background: #fff;
  color: var(--cfg-ink);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-align: left;
  border: 0.1rem solid rgba(29, 29, 29, 0.1);
  border-radius: 1rem;
  box-shadow: 0 0.6rem 1.6rem -0.4rem rgba(0, 0, 0, 0.22);
  z-index: 60;
  pointer-events: none;
}
.insono-configurator .field.choice.dpo_swatch:hover .admin__field-label > span:first-child {
  color: var(--cfg-ink);
  font-weight: 700;
}
.insono-configurator .field.choice.dpo_swatch:hover .admin__field-label .price-notice {
  margin-left: 0;
  padding: 0.3rem 0.75rem;
  background: #eef1f3;
  color: #1d1d1d;
  font-size: 1.15rem;
  font-weight: 700;
}
.insono-configurator .field.choice.dpo_swatch:hover .admin__field-label .dpo_tooltip_icon {
  margin-left: 0;
  width: 1.55rem;
  height: 1.55rem;
  font-size: 1.05rem;
}
/* Nested note body stays hidden inside the swatch chip */
.insono-configurator .field.choice.dpo_swatch:hover .admin__field-label .dpo_tooltip_body {
  display: none !important;
}
/* Two-layer arrow under the swatch popover */
.insono-configurator .field.choice.dpo_swatch:hover .admin__field-label::before,
.insono-configurator .field.choice.dpo_swatch:hover .admin__field-label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: solid transparent;
}
.insono-configurator .field.choice.dpo_swatch:hover .admin__field-label::before {
  border-width: 0.65rem;
  border-top-color: rgba(29, 29, 29, 0.1);
}
.insono-configurator .field.choice.dpo_swatch:hover .admin__field-label::after {
  border-width: 0.55rem;
  border-top-color: #fff;
}

@media screen and (max-width: 380px) {
  .insono-configurator .itoris-dynamicoptions-list-images:not(:has(.dpo_swatch)) {
    grid-template-columns: 1fr;
  }
}



/* ========================================================================
   Trust bar below the buy box
   ======================================================================== */


.insono-pdp-trust-bar {
  --pdp-bar-ink: #1d201c;
  --pdp-bar-muted: #6e6b63;
  --pdp-bar-line: rgba(31, 28, 23, 0.1);
  --pdp-bar-green: #0a7a4f;
  --pdp-bar-green-deep: #4a4a46;
  --pdp-bar-amber: #c9822d;
  padding: 2.4rem 0;
  background: transparent;
}

.insono-pdp-trust-bar + .custom-pdp-details__pd1-main .custom-pdp-details__hero {
  padding-top: 40px;
}

.insono-pdp-trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.insono-pdp-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 1.8rem;
  border-left: 0.1rem solid var(--pdp-bar-line);
}

.insono-pdp-trust-bar__item:first-child {
  padding-left: 0;
  border-left: none;
}

.insono-pdp-trust-bar__item:last-child {
  padding-right: 0;
}

.insono-pdp-trust-bar__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  border: 0.1rem solid transparent;
  box-shadow: inset 0 0.1rem 0 rgba(255, 255, 255, 0.55);
}

.insono-pdp-trust-bar__icon svg {
  width: 2rem;
  height: 2rem;
}

.insono-pdp-trust-bar__icon--green {
  color: var(--pdp-bar-green);
  background: linear-gradient(160deg, rgba(10, 122, 79, 0.16), rgba(10, 122, 79, 0.05));
  border-color: rgba(10, 122, 79, 0.18);
}

.insono-pdp-trust-bar__icon--amber {
  color: var(--pdp-bar-amber);
  background: linear-gradient(160deg, rgba(201, 130, 45, 0.18), rgba(201, 130, 45, 0.05));
  border-color: rgba(201, 130, 45, 0.2);
}

.insono-pdp-trust-bar__icon--deep {
  color: var(--pdp-bar-green-deep);
  background: linear-gradient(160deg, rgba(29, 32, 28, 0.1), rgba(29, 32, 28, 0.03));
  border-color: rgba(29, 32, 28, 0.12);
}

.insono-pdp-trust-bar__icon--flag {
  overflow: hidden;
  background: linear-gradient(160deg,#1d201c1a,#1d201c05);
  border-color: rgba(29, 32, 28, 0.1);
}

.insono-pdp-trust-bar__flag {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1a1a1a 0 33.3%, #dd0000 33.3% 66.6%, #ffce00 66.6% 100%);
}

.insono-pdp-trust-bar__copy {
  display: block;
  min-width: 0;
}

.insono-pdp-trust-bar__title {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--pdp-bar-ink);
}

.insono-pdp-trust-bar__text {
  display: block;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--pdp-bar-muted);
}

.insono-pdp-trust-slider {
  display: none;
}

@media screen and (max-width: 989px) {
  .insono-pdp-trust-bar {
    padding: 1.6rem 0;
  }

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

  .insono-pdp-trust-bar__item {
    padding: 0.4rem 1.2rem;
  }

  .insono-pdp-trust-bar__item:nth-child(odd) {
    padding-left: 0;
    border-left: none;
  }

  .insono-pdp-trust-bar__item:nth-child(even) {
    padding-right: 0;
  }

  .insono-pdp-trust-bar__icon {
    width: 4rem;
    height: 4rem;
  }

  .insono-pdp-trust-bar__icon svg {
    width: 1.8rem;
    height: 1.8rem;
  }

  .insono-pdp-trust-bar__flag {
    width: 2.1rem;
    height: 2.1rem;
  }

  .insono-pdp-trust-bar__title {
    font-size: 1.3rem;
  }

  .insono-pdp-trust-bar__text {
    font-size: 1.15rem;
  }
}

@media screen and (max-width: 549px) {
  .insono-pdp-trust-bar__grid {
    grid-template-columns: 1fr;
  }

  .insono-pdp-trust-bar__item,
  .insono-pdp-trust-bar__item:nth-child(even) {
    padding: 0.8rem 0;
    border-left: none;
    border-top: 0.1rem solid var(--pdp-bar-line);
  }

  .insono-pdp-trust-bar__item:first-child {
    border-top: none;
    padding-top: 0;
  }
}



/* ========================================================================
   Produktdetails (Hero, Vorteile, FAQ, CTA)
   ======================================================================== */


.custom-pdp-details {
  --custom-pdp-details-bg: #f6f4f0;
  --custom-pdp-details-surface: #fffdf8;
  --custom-pdp-details-surface-2: #f1ece3;
  --custom-pdp-details-card-soft: #f1eee6;
  --custom-pdp-details-ink: #1d201c;
  --custom-pdp-details-text: #1f221f;
  --custom-pdp-details-muted: #76776f;
  --custom-pdp-details-muted-2: #6e6b63;
  --custom-pdp-details-line: #e8e1d7;
  --custom-pdp-details-line-2: #e3ded3;
  --custom-pdp-details-green: #344234;
  --custom-pdp-details-green-2: #526252;
  --custom-pdp-details-green-deep: #26382b;
  --custom-pdp-details-green-soft: #e9eee7;
  --custom-pdp-details-orange: #c9822d;
  --custom-pdp-details-shadow: 0 24px 70px rgba(34, 34, 28, 0.1);
  --custom-pdp-details-shadow-2: 0 24px 60px rgba(38, 56, 43, 0.1);
  --custom-pdp-details-radius-lg: 30px;
  --custom-pdp-details-radius-sm: 999px;
  --custom-pdp-details-max: var(--page-width);
  --custom-pdp-details-story-body-size: 17px;
  --custom-pdp-details-story-intro-size: 19px;
  --custom-pdp-details-eyebrow-offset: 12px;
  background: var(--custom-pdp-details-bg);
  color: var(--custom-pdp-details-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}

body {
  background: #f6f4f0;
}

.custom-pdp-details,
.custom-pdp-details * {
  box-sizing: border-box;
}

.custom-pdp-details__pd1-main,
.custom-pdp-details__pd2-main {
  font-weight: 500;
}

.custom-pdp-details__container,
.custom-pdp-details__pd-container {
  box-sizing: border-box;
}

.custom-pdp-details__hero {
  padding: 40px 0 28px;
  background: transparent;
}

.custom-pdp-details__product-hero {
  display: flow-root;
}

.custom-pdp-details__product-hero > * {
  min-width: 0;
}

.custom-pdp-details__eyebrow {
  margin-bottom: 14px;
  color: #b09b83;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.custom-pdp-details__hero-copy h2 {
  max-width: 720px;
  margin: 0 0 14px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.custom-pdp-details__hero-lead {
  max-width: 720px;
  margin: 0;
  color: var(--custom-pdp-details-muted);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.custom-pdp-details__hero-lead > * {
  margin: 0;
}

.custom-pdp-details__hero-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: min(650px, calc(100% - 540px));
  margin: 22px 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--custom-pdp-details-line);
}

.custom-pdp-details__hero-pill {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 52px;
}

.custom-pdp-details__pill-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--custom-pdp-details-green-soft);
  box-shadow: inset 0 0 0 1px rgba(38, 56, 43, 0.06);
}

.custom-pdp-details__pill-icon svg,
.custom-pdp-details__detail-check svg {
  width: 22px;
  height: 22px;
  stroke: var(--custom-pdp-details-green-deep);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.custom-pdp-details__detail-check svg {
  width: 24px;
  height: 24px;
}

.custom-pdp-details__pill-icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.custom-pdp-details__pill-icon .accent {
  stroke: var(--custom-pdp-details-orange);
}

.custom-pdp-details__hero-pill > span:last-child {
  color: #34362f;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.custom-pdp-details__hero-body {
  max-width: none;
  margin: 0;
  color: var(--custom-pdp-details-muted);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.015em;
}

.custom-pdp-details__hero-body > *,
.custom-pdp-details__hero-body .metafield-rich_text_field > * {
  margin: 0;
  text-align: justify;
}

.custom-pdp-details__hero-body > *,
.custom-pdp-details__hero-copy .metafield-rich_text_field > * {
  text-align: justify;
}


.custom-pdp-details__hero-body p + p,
.custom-pdp-details__hero-body .metafield-rich_text_field p + p {
  margin-top: 14px;
}

.custom-pdp-details__highlight-card {
  animation: custom-pdp-highlight-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes custom-pdp-highlight-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .custom-pdp-details__highlight-card {
    animation: none;
  }
}

.custom-pdp-details__slim-card {
  --custom-pdp-details-rail-left: clamp(130px, 30%, 196px);
  --custom-pdp-details-rail-gap: 78px;
  float: right;
  position: relative;
  width: 40%;
  min-width: 340px;
  max-width: 480px;
  min-height: 380px;
  margin: 0 0 20px 32px;
  overflow: hidden;
  border: 1px solid var(--custom-pdp-details-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(201, 130, 45, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(241, 236, 226, 0.82));
  box-shadow: 0 16px 44px rgba(34, 34, 28, 0.08);
  isolation: isolate;
}

.custom-pdp-details__slim-card::before {
  content: "";
  position: absolute;
  left: var(--custom-pdp-details-rail-left);
  top: 0;
  bottom: 0;
  width: 62px;
  background:
    linear-gradient(90deg, #17221b 0 14px, #435044 14px 24px, #101914 24px 42px, #7a8576 42px 50px, transparent 50px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0 2px, transparent 2px 11px);
  box-shadow: 18px 0 34px rgba(38, 56, 43, 0.08);
  opacity: 0.9;
  z-index: 0;
}

.custom-pdp-details__slim-card::after {
  content: "";
  position: absolute;
  left: calc(var(--custom-pdp-details-rail-left) + 56px);
  top: 0;
  bottom: 0;
  width: 90px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.7), transparent),
    repeating-linear-gradient(90deg, rgba(38, 56, 43, 0.08) 0 1px, transparent 1px 5px);
  opacity: 0.26;
  mask-image: linear-gradient(90deg, #000, transparent);
  z-index: 0;
}

.custom-pdp-details__measure-stack {
  position: absolute;
  left: 30px;
  top: 102px;
  width: 112px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.custom-pdp-details__measure-mark {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(201, 130, 45, 0.72);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 20px 46px rgba(201, 130, 45, 0.1);
}

.custom-pdp-details__measure-value {
  max-width: 104px;
  margin: 0;
  padding: 0 6px;
  text-align: center;
}

.custom-pdp-details__measure-value strong {
  display: block;
  color: var(--custom-pdp-details-orange);
  font-size: 46px;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.custom-pdp-details__measure-value span {
  display: block;
  margin-top: 2px;
  color: var(--custom-pdp-details-orange);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.custom-pdp-details__measure-line {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-pdp-details__measure-line-img {
  display: block;
  width: 68px;
  height: 68px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.custom-pdp-details__measure-line-svg {
  display: block;
  width: 86px;
  max-width: 100%;
  height: auto;
  max-height: 28px;
  margin: 0 auto;
}

.custom-pdp-details__slim-info {
  position: absolute;
  left: calc(var(--custom-pdp-details-rail-left) + var(--custom-pdp-details-rail-gap));
  right: 22px;
  top: 94px;
  width: auto;
  z-index: 1;
}

.custom-pdp-details__slim-info h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.custom-pdp-details__slim-info > div:first-of-type {
  margin: 0 0 18px;
  color: var(--custom-pdp-details-muted);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.custom-pdp-details__slim-info > div:first-of-type > * {
  margin: 0;
}

.custom-pdp-details__detail-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-pdp-details__detail-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #50524b;
  font-size: 15px;
  font-weight: 700;
}

.custom-pdp-details__detail-check i {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--custom-pdp-details-green-soft);
}

.custom-pdp-details__visual-card {
  float: right;
  position: relative;
  width: 42%;
  min-width: 340px;
  max-width: 500px;
  min-height: auto;
  margin: 0 0 24px 40px;
  padding: 26px 26px 28px;
  overflow: hidden;
  border: 1px solid var(--custom-pdp-details-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(201, 130, 45, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(241, 236, 226, 0.82));
  box-shadow: 0 20px 52px rgba(34, 34, 28, 0.09);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.custom-pdp-details__visual-media {
  position: relative;
  min-height: 200px;
  display: grid;
  place-items: center;
  padding: 8px 6px 0;
}

.custom-pdp-details__visual-image {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.custom-pdp-details__visual-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 8px 14px;
  border-radius: var(--custom-pdp-details-radius-sm);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--custom-pdp-details-line);
  color: var(--custom-pdp-details-green-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(38, 56, 43, 0.06);
}

.custom-pdp-details__visual-info h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.custom-pdp-details__visual-copy {
  margin: 0 0 18px;
  color: var(--custom-pdp-details-muted);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.custom-pdp-details__visual-copy > * {
  margin: 0;
}

.custom-pdp-details__pd2-main {
  padding: 32px 0 56px;
  background: transparent;
}

.custom-pdp-details .advantages-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--custom-pdp-details-line-2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 7% 18%, rgba(201, 130, 45, 0.055), transparent 30%),
    rgba(255, 253, 248, 0.48);
  box-shadow: 0 16px 48px rgba(38, 56, 43, 0.055);
  margin-bottom: 28px;
}

.custom-pdp-details .advantages-title {
  padding: 12px 0 0;
}

.custom-pdp-details .advantages-title .small-label {
  color: var(--custom-pdp-details-orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.custom-pdp-details .advantages-title h2 {
  max-width: 920px;
  margin: 0 0 14px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.custom-pdp-details .advantages-title > div:not(.small-label) {
  max-width: 880px;
  margin: 0;
  color: var(--custom-pdp-details-muted-2);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: -0.02em;
}

.custom-pdp-details .advantages-title > div:not(.small-label) > * {
  margin: 0;
}

.custom-pdp-details .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.custom-pdp-details__story-card,
.custom-pdp-details__help-card {
  border: 1px solid var(--custom-pdp-details-line-2);
  border-radius: var(--custom-pdp-details-radius-lg);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--custom-pdp-details-shadow-2);
}

.custom-pdp-details .feature-card {
  position: relative;
  min-height: 168px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 26px;
  border: 1px solid var(--custom-pdp-details-line-2);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 253, 248, 0.98));
  box-shadow: 0 10px 28px rgba(38, 56, 43, 0.07);
  overflow: hidden;
  transition: transform 210ms ease, box-shadow 210ms ease, border-color 210ms ease;
}

.custom-pdp-details .feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 130, 45, 0.35);
  box-shadow: 0 18px 42px rgba(38, 56, 43, 0.11);
}

.custom-pdp-details .feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.96), transparent 36%),
    linear-gradient(135deg, #edf1e8, #e3e8dd);
  box-shadow: inset 0 0 0 1px rgba(38, 56, 43, 0.06);
  overflow: hidden;
}

.custom-pdp-details .feature-icon img {
  display: block;
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.custom-pdp-details .feature-content {
  display: grid;
  grid-template-rows: minmax(2.24em, auto) 2px auto;
  align-content: start;
}

.custom-pdp-details .feature-content h3 {
  grid-row: 1;
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.custom-pdp-details .feature-content::before {
  content: "";
  grid-row: 2;
  display: block;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--custom-pdp-details-orange);
  transition: width 210ms ease;
}

.custom-pdp-details .feature-card:hover .feature-content::before {
  width: 42px;
}

.custom-pdp-details__story-card h3,
.custom-pdp-details__help-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.custom-pdp-details .feature-content p {
  grid-row: 3;
  margin: 18px 0 0;
  color: var(--custom-pdp-details-muted-2);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.015em;
}

.custom-pdp-details__story-card p,
.custom-pdp-details__help-card p {
  margin: 0;
  color: var(--custom-pdp-details-muted-2);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.custom-pdp-details__story-card {
  margin-top: 26px;
  padding: 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 36px;
  align-items: center;
  background:
    radial-gradient(circle at 85% 0%, rgba(201, 130, 45, 0.18), transparent 34%),
    linear-gradient(135deg, #fffdf8, #efebe1);
}

.custom-pdp-details__story-card h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.custom-pdp-details__pd2-story-copy {
  display: grid;
  gap: 18px;
  color: var(--custom-pdp-details-muted-2);
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: -0.015em;
}

.custom-pdp-details__pd2-story-copy p {
  margin: 0;
}

.custom-pdp-details__help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.custom-pdp-details__help-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}

.custom-pdp-details__help-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(38, 56, 43, 0.82), rgba(38, 56, 43, 0.36));
}

.custom-pdp-details__help-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(0.85);
}

.custom-pdp-details__help-card--measure::after {
  background-image: url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1200&q=80");
}

.custom-pdp-details__help-card--guarantee::after {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80");
}

.custom-pdp-details__help-card h3,
.custom-pdp-details__help-card p {
  color: #fffdf8;
  max-width: 520px;
}

.custom-pdp-details__btn-light {
  width: fit-content;
  margin-top: 24px;
  border: 0;
  border-radius: var(--custom-pdp-details-radius-sm);
  background: #fffdf8;
  color: var(--custom-pdp-details-text);
  padding: 15px 24px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.custom-pdp-details__btn-light:hover {
  transform: translateY(-2px);
  background: #f4efe5;
}

.custom-pdp-details__faq {
  position: relative;
  margin-top: 58px;
  padding: 46px 0 18px;
  isolation: isolate;
}

.custom-pdp-details__faq-header {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  margin-bottom: 38px;
}

.custom-pdp-details__faq-header h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.custom-pdp-details__faq-header p {
  max-width: 560px;
  margin: 46px 0 0;
  color: var(--custom-pdp-details-muted-2);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.custom-pdp-details__faq-list {
  display: grid;
  position: relative;
  width: 100%;
  max-width: none;
  margin-left: 0;
}

.custom-pdp-details__faq-list::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(201, 130, 45, 0),
    rgba(201, 130, 45, 0.42) 18%,
    rgba(38, 56, 43, 0.16) 82%,
    rgba(38, 56, 43, 0)
  );
}

.custom-pdp-details__faq-item {
  position: relative;
  padding-left: 74px;
  border-bottom: 0;
}

.custom-pdp-details__faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  z-index: 1;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(201, 130, 45, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(#fffdf8, #fffdf8) padding-box,
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(201, 130, 45, 0.22), rgba(38, 56, 43, 0.12));
  box-shadow: 0 12px 28px rgba(38, 56, 43, 0.08);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.custom-pdp-details__faq-item::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 31px;
  z-index: 2;
  width: 17px;
  height: 17px;
  background: var(--custom-pdp-details-orange);
  transition: background 200ms ease, transform 200ms ease;
}

.custom-pdp-details__faq-item:nth-child(4n + 1)::after {
  clip-path: polygon(7% 50%, 23% 30%, 77% 30%, 93% 50%, 77% 70%, 23% 70%);
}

.custom-pdp-details__faq-item:nth-child(4n + 2)::after {
  clip-path: polygon(47% 0, 100% 53%, 80% 73%, 65% 58%, 26% 97%, 3% 74%, 42% 35%, 27% 20%);
}

.custom-pdp-details__faq-item:nth-child(4n + 3)::after {
  border-radius: 50%;
  background:
    linear-gradient(90deg, #26382b 0 33%, #fffdf8 33% 66%, var(--custom-pdp-details-orange) 66% 100%);
  box-shadow: inset 0 0 0 1px rgba(38, 56, 43, 0.08);
}

.custom-pdp-details__faq-item:nth-child(4n)::after {
  clip-path: polygon(50% 0, 61% 32%, 95% 32%, 68% 52%, 79% 86%, 50% 65%, 21% 86%, 32% 52%, 5% 32%, 39% 32%);
}

.custom-pdp-details__faq-item[open]::before {
  border-color: var(--custom-pdp-details-green-deep);
  background: var(--custom-pdp-details-green-deep);
  transform: scale(1.04);
}

.custom-pdp-details__faq-item[open]::after {
  background: #fffdf8;
  transform: scale(1.05) rotate(8deg);
}

.custom-pdp-details__faq-item[open]:nth-child(4n + 3)::after {
  background:
    linear-gradient(90deg, #fffdf8 0 33%, rgba(255, 253, 248, 0.58) 33% 66%, #fffdf8 66% 100%);
}

.custom-pdp-details__faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(227, 222, 211, 0.82);
  color: var(--custom-pdp-details-text);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: -0.05em;
  cursor: pointer;
  list-style: none;
}

.custom-pdp-details__faq-item summary > span:first-child {
  flex: 1 1 auto;
}

.custom-pdp-details__faq-item summary::-webkit-details-marker {
  display: none;
}

.custom-pdp-details__faq-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(38, 56, 43, 0.14);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease, border-radius 220ms ease;
}

.custom-pdp-details__faq-toggle::before,
.custom-pdp-details__faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--custom-pdp-details-green-deep);
  transform: translate(-50%, -50%);
}

.custom-pdp-details__faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 180ms ease;
}

.custom-pdp-details__faq-item[open] .custom-pdp-details__faq-toggle {
  transform: rotate(180deg);
  border-radius: 50%;
  background: var(--custom-pdp-details-green-deep);
  box-shadow: inset 0 0 0 1px var(--custom-pdp-details-green-deep);
}

.custom-pdp-details__faq-item[open] .custom-pdp-details__faq-toggle::before,
.custom-pdp-details__faq-item[open] .custom-pdp-details__faq-toggle::after {
  background: #fffdf8;
}

.custom-pdp-details__faq-item[open] .custom-pdp-details__faq-toggle::after {
  opacity: 0;
}

.custom-pdp-details__faq-answer {
  max-width: 720px;
  padding: 22px 76px 34px 0;
  color: var(--custom-pdp-details-muted-2);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -0.015em;
  overflow: hidden;
  transition: opacity 0.25s ease;
}

.custom-pdp-details__faq-answer > * {
  margin: 0;
}

.custom-pdp-details__faq-answer > * + * {
  margin-top: 10px;
}

.jdgm-widget.jdgm-review-widget {
  width: 100%;
  max-width: 100%;
  margin: 28px auto 0;
  padding-left: 0;
  padding-right: 0;
  color: #11130f;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev-widg {
  border: 0;
  background: transparent;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev {
  padding: 34px 0;
  border: 0;
  border-bottom: 1px solid rgba(227, 222, 211, 0.82);
  background: transparent;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 18px;
  align-items: start;
  margin-bottom: 24px;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev__rating {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  letter-spacing: 0.08em;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev__timestamp {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  color: #8a887f;
  font-size: 18px;
  line-height: 1;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev__author-wrapper {
  grid-column: 1 / -1;
  grid-row: 2;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf2ea;
  color: #11130f;
  font-size: 24px;
  font-weight: 850;
  flex: 0 0 auto;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev__author {
  color: #11130f;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.jdgm-widget.jdgm-review-widget .jdgm-star,
.jdgm-widget.jdgm-review-widget .jdgm-star.jdgm--on,
.jdgm-widget.jdgm-review-widget .jdgm-star.jdgm--half {
  color: #008c80;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev__title {
  margin: 0 0 10px;
  color: #11130f;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev__body {
  max-width: none;
  color: #25251f;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.42;
  letter-spacing: -0.03em;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev__pics,
.jdgm-widget.jdgm-review-widget .jdgm-rev__pics .jdgm-rev__pic-link {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev__pic-img,
.jdgm-widget.jdgm-review-widget .jdgm-rev__pic-link img,
.jdgm-widget.jdgm-review-widget .jdgm-ugc-media {
  width: 240px;
  height: 240px;
  border-radius: 10px;
  object-fit: cover;
}

.jdgm-widget.jdgm-review-widget .jdgm-rev__buyer-badge,
.jdgm-widget.jdgm-review-widget .jdgm-rev__reply {
  color: #6e6b63;
}

#judgeme_product_reviews .jm-review-widget__body .jdgm-review-list .jm-review-item .jm-review-item__body .jm-review-item__content > div:nth-child(1) span{
  font-size: 1.2em !important;
}

@media (max-width: 1180px) {
  .custom-pdp-details__product-hero {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .custom-pdp-details__hero-copy {
    order: 1;
    width: 100%;
  }

  .custom-pdp-details__slim-card,
  .custom-pdp-details__visual-card {
    --custom-pdp-details-rail-left: clamp(150px, 34%, 220px);
    --custom-pdp-details-rail-gap: 92px;
    order: 2;
    float: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0 auto 24px;
  }

  .custom-pdp-details__hero-pills {
    max-width: 100%;
  }
}

@media (min-width: 750px) and (max-width: 1180px) {
  .custom-pdp-details__visual-card {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    grid-template-rows: none;
    gap: 22px 28px;
    align-items: center;
    padding: 24px 26px 26px;
    border-radius: 28px;
  }

  .custom-pdp-details__visual-media {
    min-height: 0;
    padding: 0;
  }

  .custom-pdp-details__visual-image {
    max-width: 100%;
  }

  .custom-pdp-details__visual-info {
    min-width: 0;
  }
}

@media (max-width: 1180px) and (min-width: 750px) {
  .custom-pdp-details__hero-copy h2 {
    font-size: clamp(30px, 4.2vw, 42px);
  }

  .custom-pdp-details__hero-lead {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .custom-pdp-details__story-card {
    grid-template-columns: 1fr;
  }

  .custom-pdp-details .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-pdp-details .advantages-title {
    padding-top: 0;
  }
}

@media (max-width: 860px) {
  .custom-pdp-details .feature-card {
    grid-template-columns: 58px 1fr;
    padding: 22px;
  }

  .custom-pdp-details .feature-icon {
    width: 54px;
    height: 54px;
  }

  .custom-pdp-details .feature-content h3 {
    font-size: 18px;
  }

  .custom-pdp-details .feature-content p {
    font-size: 15px;
  }
}

@media (max-width: 749px) {
  .custom-pdp-details__hero {
    padding: 18px 0 14px;
  }

  .custom-pdp-details__product-hero {
    gap: 14px;
  }

  .custom-pdp-details__eyebrow {
    margin-bottom: 12px;
  }

  .custom-pdp-details__hero-copy h2 {
    margin-bottom: 12px;
    font-size: clamp(32px, 7.5vw, 38px);
  }

  .custom-pdp-details__slim-card,
  .custom-pdp-details__visual-card {
    width: 100%;
    max-width: none;
    margin: 0 0 20px;
    box-shadow: 0 14px 40px rgba(34, 34, 28, 0.07);
  }

  .custom-pdp-details__visual-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    padding: 18px 18px 20px;
    border-radius: 24px;
  }

  .custom-pdp-details__visual-media {
    min-height: 0;
    padding: 0;
  }

  .custom-pdp-details__visual-image {
    width: 100%;
    max-width: none;
  }

  .custom-pdp-details__hero-pills {
    grid-template-columns: 1fr;
    margin: 10px 0 8px;
    padding-bottom: 8px;
    gap: 10px;
  }

  .custom-pdp-details__hero-pill {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    min-height: 48px;
  }

  .custom-pdp-details__pill-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .custom-pdp-details__hero-pill > span:last-child {
    font-size: 13px;
  }

  .custom-pdp-details__slim-card {
    --custom-pdp-details-rail-left: 50%;
    min-height: auto;
    display: grid;
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 12px;
    padding: 12px 12px 14px;
    border-radius: 18px;
  }

  .custom-pdp-details__slim-card::before {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: center;
    width: 46px;
    height: 140px;
    transform: none;
    z-index: 0;
  }

  .custom-pdp-details__slim-card::after {
    display: none;
  }

  .custom-pdp-details__measure-stack {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: 1 / 3;
    justify-self: center;
    width: 76px;
    gap: 6px;
  }

  .custom-pdp-details__measure-mark {
    width: 100%;
    height: 76px;
  }

  .custom-pdp-details__measure-value strong {
    font-size: 30px;
  }

  .custom-pdp-details__measure-value span {
    font-size: 14px;
  }

  .custom-pdp-details__measure-line {
    width: 100%;
    min-height: 42px;
    margin: 0;
  }

  .custom-pdp-details__measure-line-img {
    width: 42px;
    height: 42px;
  }

  .custom-pdp-details__slim-info {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    grid-column: 1 / -1;
    grid-row: 3;
    width: auto;
    margin-top: 8px;
  }

  .custom-pdp-details__visual-badge {
    font-size: 11px;
    padding: 6px 10px;
    top: 4px;
    right: 4px;
  }

  .custom-pdp-details__visual-info h3,
  .custom-pdp-details__slim-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .custom-pdp-details__visual-copy,
  .custom-pdp-details__slim-info > div:first-of-type {
    font-size: 14px;
    line-height: 1.45;
  }

  .custom-pdp-details__visual-copy {
    margin-bottom: 12px;
  }

  .custom-pdp-details__detail-list {
    gap: 10px;
  }

  .custom-pdp-details__detail-check {
    font-size: 13px;
    gap: 8px;
  }

  .custom-pdp-details__detail-check i {
    width: 24px;
    height: 24px;
  }

  .custom-pdp-details__pill-icon svg,
  .custom-pdp-details__detail-check svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 680px) {
  .custom-pdp-details__story-card {
    padding: 30px;
    border-radius: 28px;
  }

  .custom-pdp-details__faq {
    margin-top: 42px;
    padding-top: 28px;
  }

  .custom-pdp-details__faq-header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .custom-pdp-details__faq-header p {
    margin-top: 0;
    font-size: 16px;
  }

  .custom-pdp-details__hero-copy h2 {
    font-size: 34px;
  }

  .custom-pdp-details__pd2-main {
    padding: 56px 0;
  }

  .custom-pdp-details .feature-grid,
  .custom-pdp-details__help-grid {
    grid-template-columns: 1fr;
  }

  .custom-pdp-details .feature-card,
  .custom-pdp-details__help-card {
    padding: 24px;
  }

  .custom-pdp-details .advantages-shell {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .custom-pdp-details__slim-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .custom-pdp-details__slim-card::before {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
    height: 170px;
    margin: 18px 0 4px;
  }

  .custom-pdp-details__measure-stack {
    justify-self: center;
  }

  .custom-pdp-details__slim-info {
    grid-row: 4;
    margin-top: 22px;
  }

  .custom-pdp-details .advantages-shell {
    padding: 18px;
    border-radius: 20px;
  }

  .custom-pdp-details .advantages-title h2 {
    font-size: 30px;
  }

  .custom-pdp-details .feature-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .custom-pdp-details__faq-item summary {
    min-height: 72px;
    padding: 20px 0;
    font-size: 16px;
  }

  .custom-pdp-details__faq-list::before {
    left: 18px;
  }

  .custom-pdp-details__faq-item {
    padding-left: 58px;
  }

  .custom-pdp-details__faq-item::before {
    top: 18px;
    width: 37px;
    height: 37px;
  }

  .custom-pdp-details__faq-item::after {
    left: 11px;
    top: 29px;
    width: 15px;
    height: 15px;
  }

  .custom-pdp-details__faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 14px;
  }

  .custom-pdp-details__faq-answer {
    padding: 18px 44px 28px 0;
    font-size: 15px;
  }

  .jdgm-widget.jdgm-review-widget {
    max-width: 100%;
  }

  .jdgm-widget.jdgm-review-widget .jdgm-rev {
    padding: 28px 0;
  }

  .jdgm-widget.jdgm-review-widget .jdgm-rev__timestamp {
    font-size: 14px;
  }

  .jdgm-widget.jdgm-review-widget .jdgm-rev__icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .jdgm-widget.jdgm-review-widget .jdgm-rev__author {
    font-size: 19px;
  }

  .jdgm-widget.jdgm-review-widget .jdgm-rev__pic-img,
  .jdgm-widget.jdgm-review-widget .jdgm-rev__pic-link img,
  .jdgm-widget.jdgm-review-widget .jdgm-ugc-media {
    width: min(46vw, 180px);
    height: min(46vw, 180px);
  }

  .custom-pdp-details .feature-content {
    grid-template-rows: auto 2px auto;
  }

  .custom-pdp-details .feature-content p {
    margin-top: 16px;
  }
}

/* Scroll reveal — premium micro-entrance */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

[data-reveal][data-reveal-delay="1"] {
  transition-delay: 0.09s;
  background: radial-gradient(
    ellipse 58% 42% at 14% 22%,
    rgba(111, 143, 114, 0.11), transparent 72%),
    radial-gradient(ellipse 48% 38% at 86% 12%, rgba(215, 200, 181, 0.22), transparent 70%),
    radial-gradient(ellipse 52% 36% at 50% 88%, rgba(215, 200, 181, 0.1), transparent 74%);
}

[data-reveal][data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

.custom-pdp-details__pd1-main, .custom-pdp-details__pd2-main {
  /* background: radial-gradient(
  ellipse 58% 42% at 14% 78%,
  rgba(111, 143, 114, 0.11), transparent 72%),
  radial-gradient(ellipse 48% 38% at 86% 88%, rgba(215, 200, 181, 0.22), transparent 70%),
  radial-gradient(ellipse 52% 36% at 50% 12%, rgba(215, 200, 181, 0.1), transparent 74%); */

}

.custom-pdp-details .insono-pdp-process, .custom-pdp-details .insono-pdp-compare {
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ========================================================================
   Ablauf in 5 Schritten
   ======================================================================== */


.insono-pdp-process {
  --pdp-process-bg: #f6f4f0;
  --pdp-process-surface: #fffdf8;
  --pdp-process-ink: #1d201c;
  --pdp-process-muted: #76776f;
  --pdp-process-line: #e8e1d7;
  --pdp-process-green: #0a7a4f;
  position: relative;
  padding: 32px 0 56px;
  background: var(--pdp-process-bg);
  color: var(--pdp-process-ink);
  isolation: isolate;
}

.insono-pdp-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 12% 30%, rgba(111, 143, 114, 0.14), transparent 70%),
    radial-gradient(ellipse 45% 40% at 88% 18%, rgba(215, 200, 181, 0.28), transparent 68%);
  mask-image: linear-gradient(to bottom, transparent 0, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 15%, black 85%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.insono-pdp-process__container {
  position: relative;
  z-index: 1;
}

.insono-pdp-lifestyle + .insono-pdp-process {
  margin-top: -24px;
  padding-top: 32px;
}

/* Standalone sections (outside .insono-pdp-flow) keep their own ambient layer */

.insono-pdp-process__head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.insono-pdp-process__kicker {
  display: block;
  margin-bottom: 12px;
  color: #b09b83;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.insono-pdp-process__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.insono-pdp-process__lead {
  margin: 0;
  color: var(--pdp-process-muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.55;
}

.insono-pdp-process__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.insono-pdp-process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 12px;
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--pdp-process-line);
}

.insono-pdp-process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(10, 122, 79, 0.35), rgba(10, 122, 79, 0.08));
  z-index: 1;
}

.insono-pdp-process__num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e9462, #0a7a4f);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 24px -8px rgba(10, 122, 79, 0.65);
}

.insono-pdp-process__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--pdp-process-green);
}

.insono-pdp-process__icon svg {
  width: 28px;
  height: 28px;
}

.insono-pdp-process__label {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.insono-pdp-process__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--pdp-process-muted);
}

@media screen and (max-width: 989px) {
  .insono-pdp-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insono-pdp-process__step:not(:last-child)::after {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .insono-pdp-process {
    padding: 40px 0 56px;
  }

  .insono-pdp-lifestyle + .insono-pdp-process {
    margin-top: -16px;
    padding-top: 24px;
  }
}

@media screen and (max-width: 549px) {
  .insono-pdp-process__steps {
    grid-template-columns: 1fr;
  }
}

.insono-pdp-process__cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.insono-pdp-process__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 15px 26px;
  border: 1px solid rgba(10, 122, 79, 0.28);
  border-radius: 999px;
  background: rgba(10, 122, 79, 0.06);
  color: #0a7a4f;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.insono-pdp-process__cta-btn:hover {
  background: rgba(10, 122, 79, 0.12);
  border-color: #0a7a4f;
  transform: translateY(-1px);
  color: #0a7a4f;
}

.insono-pdp-process__cta-btn svg {
  width: 16px;
  height: 16px;
}



/* ========================================================================
   Vergleichstabelle
   ======================================================================== */


.insono-pdp-compare {
  --pdp-compare-bg: #f6f4f0;
  --pdp-compare-surface: #fffdf8;
  --pdp-compare-ink: #1d201c;
  --pdp-compare-muted: #76776f;
  --pdp-compare-line: #e8e1d7;
  --pdp-compare-accent: #526252;
  --pdp-compare-green: #0a7a4f;
  position: relative;
  padding: 0;
  background: var(--pdp-compare-bg);
  color: var(--pdp-compare-ink);
  isolation: isolate;
}

.insono-pdp-compare::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 12% 30%, rgba(111, 143, 114, 0.14), transparent 70%),
    radial-gradient(ellipse 45% 40% at 88% 18%, rgba(215, 200, 181, 0.28), transparent 68%);
  mask-image: linear-gradient(to bottom, transparent 0, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 15%, black 85%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.insono-pdp-compare__container {
  position: relative;
  z-index: 1;
}

.insono-pdp-compare__head {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.insono-pdp-compare__kicker {
  display: block;
  margin-bottom: 12px;
  color: #b09b83;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.insono-pdp-compare__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.insono-pdp-compare__lead {
  margin: 0;
  color: var(--pdp-compare-muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.55;
}

.insono-pdp-compare__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.insono-pdp-compare__table {
  width: 100%;
  min-width: 480px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.insono-pdp-compare__table th,
.insono-pdp-compare__table td {
  padding: 16px 14px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--pdp-compare-line);
}

.insono-pdp-compare__table thead th {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--pdp-compare-muted);
  border-bottom: 2px solid var(--pdp-compare-line);
  padding-top: 0;
  padding-bottom: 18px;
}

.insono-pdp-compare__feature-col {
  width: 42%;
  text-align: left !important;
}

.insono-pdp-compare__table tbody th {
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pdp-compare-ink);
  background: rgba(255, 253, 249, 0.72);
  border-right: 1px solid var(--pdp-compare-line);
}

.insono-pdp-compare__table tbody tr:last-child th,
.insono-pdp-compare__table tbody tr:last-child td {
  border-bottom: none;
}

.insono-pdp-compare__table tbody td:not(.insono-pdp-compare__brand-col) {
  background: rgba(255, 253, 249, 0.45);
}

/* InSono highlight column — raised, rounded "floating" card */
.insono-pdp-compare__brand-col {
  position: relative;
  background: linear-gradient(180deg, #4a5749 0%, var(--pdp-compare-accent) 100%) !important;
  color: #fffdf9;
  border-bottom-color: rgba(255, 253, 249, 0.12) !important;
  box-shadow:
    0 18px 48px rgba(57, 66, 55, 0.28),
    inset 0 1px 0 rgba(255, 253, 249, 0.12);
}

.insono-pdp-compare__table thead .insono-pdp-compare__brand-col {
  border-bottom: none;
  padding-top: 22px;
  padding-bottom: 22px;
  border-radius: 20px 20px 0 0;
  vertical-align: bottom;
}

.insono-pdp-compare__table tbody tr:last-child .insono-pdp-compare__brand-col {
  border-radius: 0 0 20px 20px;
  padding-bottom: 22px;
}

.insono-pdp-compare__brand-label {
  display: block;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fffdf9;
}

.insono-pdp-compare__mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.insono-pdp-compare__mark svg {
  width: 18px;
  height: 18px;
}

.insono-pdp-compare__mark--yes {
  background: rgba(255, 253, 249, 0.95);
  color: var(--pdp-compare-green);
}

.insono-pdp-compare__brand-col .insono-pdp-compare__mark--yes {
  background: #fffdf9;
  color: var(--pdp-compare-accent);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.insono-pdp-compare__mark--no {
  background: rgba(30, 33, 29, 0.06);
  color: #9a9085;
}

.insono-pdp-compare__brand-col .insono-pdp-compare__mark--no {
  background: rgba(255, 253, 249, 0.15);
  color: rgba(255, 253, 249, 0.5);
}

.insono-pdp-compare__text-yes {
  font-size: 14px;
  font-weight: 700;
  color: var(--pdp-compare-green);
}

.insono-pdp-compare__text-no {
  font-size: 14px;
  font-weight: 600;
  color: #9a9085;
}

.insono-pdp-compare__brand-col .insono-pdp-compare__text-yes,
.insono-pdp-compare__brand-col .insono-pdp-compare__text-no {
  color: #fffdf9;
  font-weight: 700;
}

@media (min-width: 860px) {
  .insono-pdp-compare__scroll {
    overflow: visible;
    padding: 0 12px;
  }

  .insono-pdp-compare__table {
    min-width: 0;
  }

  .insono-pdp-compare__feature-col {
    width: 42%;
  }

  .insono-pdp-compare__table th,
  .insono-pdp-compare__table td {
    padding: 18px 20px;
  }

  .insono-pdp-compare__table tbody th {
    font-size: 16px;
    padding-left: 24px;
  }

  /* Slightly lift InSono column */
  .insono-pdp-compare__brand-col {
    transform: scale(1.03);
    transform-origin: center top;
    z-index: 2;
  }

  .insono-pdp-compare__table thead .insono-pdp-compare__brand-col {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

@media (max-width: 859px) {
  .insono-pdp-compare__scroll {
    overflow: visible;
    -webkit-overflow-scrolling: auto;
    padding-bottom: 0;
    margin-inline: -6px;
    width: calc(100% + 12px);
  }

  .insono-pdp-compare__table {
    min-width: 0;
  }

  .insono-pdp-compare__feature-col {
    width: 46%;
  }

  .insono-pdp-compare__table th,
  .insono-pdp-compare__table td {
    padding: 10px 5px;
  }

  .insono-pdp-compare__table thead th {
    font-size: 12px;
    padding-bottom: 11px;
    line-height: 1.25;
  }

  .insono-pdp-compare__table tbody th {
    font-size: 13px;
    line-height: 1.3;
    padding: 10px 6px 10px 10px;
    hyphens: auto;
  }

  .insono-pdp-compare__table thead .insono-pdp-compare__brand-col {
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 14px 14px 0 0;
  }

  .insono-pdp-compare__table tbody tr:last-child .insono-pdp-compare__brand-col {
    padding-bottom: 14px;
    border-radius: 0 0 14px 14px;
  }

  .insono-pdp-compare__brand-label {
    font-size: 17px;
  }

  .insono-pdp-compare__brand-col {
    box-shadow:
      0 8px 20px rgba(57, 66, 55, 0.18),
      inset 0 1px 0 rgba(255, 253, 249, 0.12);
  }

  .insono-pdp-compare__mark {
    width: 28px;
    height: 28px;
  }

  .insono-pdp-compare__mark svg {
    width: 15px;
    height: 15px;
  }

  .insono-pdp-compare__text-yes,
  .insono-pdp-compare__text-no {
    font-size: 12.5px;
    display: inline-block;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

.insono-pdp-compare__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding: 22px 28px;
  border: 1px solid var(--pdp-compare-line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
}

.insono-pdp-compare__footer-copy {
  margin: 0;
  max-width: 560px;
  color: var(--pdp-compare-muted);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.insono-pdp-compare__footer-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--pdp-compare-green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.insono-pdp-compare__footer-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  color: #fff;
}

.insono-pdp-compare__footer-btn svg {
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 749px) {
  .insono-pdp-compare__footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .insono-pdp-compare__footer-copy {
    max-width: none;
  }

  .insono-pdp-compare__footer-btn {
    justify-content: center;
  }
}



/* ========================================================================
   Lifestyle-Abschnitt
   ======================================================================== */


.insono-pdp-lifestyle {
  --pdp-life-bg: #f6f4f0;
  --pdp-life-surface: #fffdf8;
  --pdp-life-ink: #1d201c;
  --pdp-life-muted: #76776f;
  --pdp-life-green: #0a7a4f;
  --pdp-life-amber: #c9822d;
  position: relative;
  padding: 56px 0 48px;
  background: var(--pdp-life-bg);
  color: var(--pdp-life-ink);
  isolation: isolate;
}

.insono-pdp-lifestyle::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    radial-gradient(ellipse 55% 50% at 12% 30%, rgba(111, 143, 114, 0.14), transparent 70%),
    radial-gradient(ellipse 45% 40% at 88% 18%, rgba(215, 200, 181, 0.28), transparent 68%);
  mask-image: linear-gradient(to bottom, transparent 0, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 15%, black 85%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.insono-pdp-lifestyle__container {
  position: relative;
  z-index: 1;
}

.insono-pdp-flow .insono-pdp-lifestyle__card {
  box-shadow:
    0 24px 70px rgba(34, 34, 28, 0.08),
    0 36px 90px -48px rgba(34, 34, 28, 0.07);
}

.insono-pdp-lifestyle__card {
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 28px;
  background: var(--pdp-life-surface);
  box-shadow: 0 24px 70px rgba(34, 34, 28, 0.08);
}

.insono-pdp-lifestyle__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 48px 44px;
}

.insono-pdp-lifestyle__kicker {
  margin: 0;
  color: var(--pdp-life-amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.insono-pdp-lifestyle__kicker::before {
  content: "\2022  ";
}

.insono-pdp-lifestyle__title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.insono-pdp-lifestyle__title-accent {
  color: var(--pdp-life-amber);
}

.insono-pdp-lifestyle__lead {
  margin: 0;
  max-width: 42ch;
  color: var(--pdp-life-muted);
  font-size: 15px;
  line-height: 1.65;
}

.insono-pdp-lifestyle__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  width: 100%;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.insono-pdp-lifestyle__benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.insono-pdp-lifestyle__benefit-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.insono-pdp-lifestyle__benefit-icon svg {
  width: 20px;
  height: 20px;
}

.insono-pdp-lifestyle__benefit-icon--green {
  color: var(--pdp-life-green);
  background: #0a7a4f1f;
}

.insono-pdp-lifestyle__benefit-icon--amber {
  color: #c9781f;
  background: #c9822d24;
}

.insono-pdp-lifestyle__benefit-icon--blue {
  color: #3d6f9b;
  background: #3d6f9b1f;
}

.insono-pdp-lifestyle__benefit-icon--purple {
  color: #6d5b8d;
  background: #6d5b8d1f;
}

.insono-pdp-lifestyle__benefit-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.insono-pdp-lifestyle__benefit-title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--pdp-life-ink);
}

.insono-pdp-lifestyle__benefit-text {
  font-size: 13px;
  line-height: 1.4;
  color: var(--pdp-life-muted);
}

.insono-pdp-lifestyle__social {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f3f1ec;
  border: 1px solid rgba(29, 32, 28, 0.06);
}

.insono-pdp-lifestyle__social-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0a7a4f1a;
  color: var(--pdp-life-green);
}

.insono-pdp-lifestyle__social-icon svg {
  width: 20px;
  height: 20px;
}

.insono-pdp-lifestyle__social-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.insono-pdp-lifestyle__social-title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--pdp-life-ink);
}

.insono-pdp-lifestyle__social-rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.insono-pdp-lifestyle__social-rating-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.insono-pdp-lifestyle__social-rating-link:hover .insono-pdp-lifestyle__social-score {
  color: var(--pdp-life-ink);
}

.insono-pdp-lifestyle__stars {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.insono-pdp-lifestyle__stars-base {
  color: #c9822d38;
}

.insono-pdp-lifestyle__stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--life-rating, 100%);
  overflow: hidden;
  white-space: nowrap;
  color: var(--pdp-life-amber);
}

.insono-pdp-lifestyle__social-score {
  font-size: 13px;
  line-height: 1.35;
  color: var(--pdp-life-muted);
}

.insono-pdp-lifestyle__visual {
  position: relative;
  min-height: 420px;
}

.insono-pdp-lifestyle__visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 120px;
  background: linear-gradient(to right, var(--pdp-life-surface) 0%, rgba(255, 253, 248, 0) 100%);
  pointer-events: none;
}

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

@media screen and (max-width: 989px) {
  .insono-pdp-lifestyle__card {
    grid-template-columns: 1fr;
  }

  .insono-pdp-lifestyle__visual {
    order: -1;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .insono-pdp-lifestyle__visual::before {
    inset: auto 0 0 0;
    width: auto;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 253, 248, 0) 0%, var(--pdp-life-surface) 100%);
  }

  .insono-pdp-lifestyle__content {
    padding: 36px 28px 40px;
  }

  .insono-pdp-lifestyle__title,
  .insono-pdp-lifestyle__lead {
    max-width: none;
  }
}

@media screen and (max-width: 640px) {
  .insono-pdp-lifestyle {
    padding: 40px 0 36px;
  }

  .insono-pdp-lifestyle__card {
    border-radius: 22px;
  }

  .insono-pdp-lifestyle__content {
    padding: 28px 20px 32px;
    gap: 16px;
  }

  .insono-pdp-lifestyle__benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .insono-pdp-lifestyle__social {
    align-items: flex-start;
  }
}



/* ========================================================================
   USP-Highlights
   ======================================================================== */


:root {
  --usp-gold-1: #f7c34a;
  --usp-gold-2: #e8961e;
  --usp-tp-green: #00b67a;
}

/* Borderless, lightweight trust block — sits quietly on the page (close to the
   native rating line) but keeps tidy spacing and a small Trustpilot source. */
.insono-usp-stack {
  display: grid;
  gap: 1.4rem;
  margin: 1.6rem 0 0.6rem;
}

.insono-usp-stack--compact {
  gap: 1.2rem;
  margin: 1.2rem 0 0;
}

.insono-buybox-trust-stack .insono-usp-stack--compact {
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  text-align: center;
}

.insono-buybox-trust-stack .insono-usp {
  display: flex;
  justify-content: center;
}

.insono-buybox-trust-stack .insono-buybox-perks {
  justify-content: center;
  gap: 1.2rem 2.2rem;
  flex-wrap: wrap;
  width: 100%;
}

.insono-buybox-trust-stack .insono-buybox-perks__item {
  flex: 0 1 auto;
  justify-content: center;
}

.insono-buybox-trust-stack .insono-buybox-perks__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #0a7a4f;
}

.insono-buybox-trust-stack .insono-buybox-perks__icon--flag {
  color: #c9822d;
}

.insono-buybox-trust-stack .insono-buybox-perks__label {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(var(--color-foreground), 0.72);
}

.insono-buybox-trust-stack .insono-usp__pay {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: auto;
  max-width: 100%;
}

.insono-buybox-trust-stack .insono-usp__pay-item {
  flex: 0 0 auto;
}

.insono-buybox-trust-stack .insono-usp__pay-icon {
  max-width: 4.6rem;
  height: 2.4rem;
}

.insono-buybox-trust-stack .insono-usp__rating {
  justify-content: center;
}

.insono-buybox-trust-stack .insono-usp__stars {
  font-size: 1.6rem;
  letter-spacing: 0.12rem;
}

.insono-buybox-trust-stack .insono-usp__rating-text {
  font-size: 1.35rem;
}

.insono-buybox-trust-stack .insono-usp__rating-text strong {
  color: rgba(var(--color-foreground), 0.88);
}

.insono-buybox-trust-stack .insono-usp__tp {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.72);
}

.insono-usp {
  position: relative;
}

.insono-usp__glow {
  display: none;
}

/* ---------- Payment methods row ---------- */
.insono-usp__pay {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.insono-usp__pay-item {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.insono-usp__pay-icon {
  display: block;
  width: 100%;
  max-width: 5.6rem;
  height: 2.6rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.insono-usp__pay-icon rect[stroke],
.insono-usp__pay-icon rect[stroke-width] {
  stroke: transparent;
  stroke-width: 0;
}

/* ---------- Rating line (green stars + muted source text) ---------- */
.insono-usp--rating {
  display: flex;
  justify-content: center;
}

.insono-usp__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

.insono-usp__stars {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.16rem;
}

.insono-usp__stars-base {
  color: rgba(var(--color-foreground), 0.16);
}

.insono-usp__stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: calc(var(--usp-rating, 0) * 1%);
  color: var(--usp-tp-green);
}

.insono-usp__rating-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(var(--color-foreground), 0.62);
}

.insono-usp__rating-text strong {
  font-weight: 700;
  color: rgba(var(--color-foreground), 0.85);
}

.insono-usp__rating-max {
  color: rgba(var(--color-foreground), 0.45);
}

.insono-usp__tp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-left: 0.8rem;
  border-left: 0.1rem solid rgba(var(--color-foreground), 0.14);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(var(--color-foreground), 0.6);
  transition: color 0.2s ease;
}

.insono-usp__rating:hover .insono-usp__tp {
  color: var(--usp-tp-green);
}

/* ---------- Benefit list ---------- */
.insono-usp__list {
  display: grid;
  gap: 0.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insono-usp__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 1.45rem;
  line-height: 1.3;
  color: rgb(var(--color-foreground));
}

.insono-usp__check {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--usp-gold-1), var(--usp-gold-2));
}

.insono-usp__check svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: #fff;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insono-usp__text {
  font-weight: 500;
}

/* ---------- Responsive ---------- */
@media (max-width: 749px) {
  .insono-buybox-trust-stack .insono-usp-stack--compact {
    padding: 0;
  }

  .insono-buybox-trust-stack .insono-buybox-perks {
    gap: 0.9rem 1.4rem;
  }

  .insono-buybox-trust-stack .insono-buybox-perks__label {
    font-size: 1.05rem;
  }

  .insono-buybox-trust-stack .insono-usp__pay-item {
    flex: 0 0 auto;
  }

  .insono-usp__pay {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .insono-usp__pay-item {
    flex: 0 1 calc(25% - 0.5rem);
  }

  .insono-usp__pay-icon {
    max-width: 4.8rem;
    height: 2.4rem;
  }

  .insono-usp__item {
    font-size: 1.4rem;
  }
}



/* ========================================================================
   Shared content rail — align with header .page-width
   ======================================================================== */
.custom-pdp-details__container,
.custom-pdp-details__pd-container,
.insono-pdp-process__container,
.insono-pdp-compare__container,
.insono-pdp-lifestyle__container,
.insono-pdp-trust-trio__container,
.insono-pdp-quality__container {
  width: min(var(--page-width), calc(100% - 32px));
  max-width: var(--page-width);
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

/* ========================================================================
   Produkt-Layout: Galerie + Buybox
   Replaces Dawn's section-main-product.css with a lean grid in the
   InSono-Look. Klassenpraefix: .product-*
   ======================================================================== */

.product-page {
  padding-block: 36px;
  background: var(--surface);
}

.product-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media screen and (min-width: 990px) {
  .product-layout {
    /* Dawn product--medium: 55% media / 45% info */
    grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
  }

  .product-layout__media {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .product-layout__info {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }
}

/* Product breadcrumb — port of assets/component-product-breadcrumb.css */
.product-breadcrumb {
  margin: 0 0 1.6rem;
  padding: 0.2rem 0 0.4rem;
  background: transparent;
}

.product-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.3rem;
  line-height: 1.4;
}

.product-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.product-breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: rgba(30, 33, 29, 0.38);
  font-weight: 500;
}

.product-breadcrumb__item a {
  color: rgba(30, 33, 29, 0.55);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s ease;
}

.product-breadcrumb__item a:hover {
  color: var(--text);
}

.product-breadcrumb__item--current span {
  color: var(--text);
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 60vw;
}

@media screen and (min-width: 750px) {
  .product-layout__media .product-breadcrumb {
    margin: 0 0 1.2rem;
    padding: 0.4rem 0 0.8rem;
  }
}

@media screen and (max-width: 749px) {
  .product-breadcrumb {
    margin: 0 0 0.8rem;
    padding: 0.4rem 0 0.2rem;
  }

  .product-breadcrumb__list {
    font-size: 1.2rem;
  }
}

/* ---- Galerie ---- */

.product-gallery {
  display: grid;
  gap: 12px;
}

.product-gallery__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2rem;
  background: #f1efe9;
  cursor: zoom-in;
}

.product-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
  pointer-events: none;
}

.product-gallery__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.product-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__nav {
  display: none !important;
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.8rem;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.product-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: #f5f2ec;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.product-gallery__thumb[aria-current="true"] {
  border-color: var(--header-accent);
  box-shadow: 0 0 0 2px var(--header-accent-soft);
}

/* ---- Buybox ---- */

.product-info {
  display: grid;
  gap: 0;
}

.product-info__vendor {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info__title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.product-info__tagline {
  color: var(--muted);
  font-size: 15px;
}

.product-info__tax {
  color: var(--soft);
  font-size: 12px;
}

.product-info__description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.product-info__inventory {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.product-info__inventory::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentcolor;
}

.product-info__inventory--in-stock { color: var(--success); }
.product-info__inventory--low { color: var(--warning); }
.product-info__inventory--out { color: var(--soft); }

/* Variantenauswahl (Pills) */

.product-variants {
  display: grid;
  gap: 14px;
}

.product-variant__label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-variant__label span {
  color: var(--text);
}

.product-variant__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-variant__pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.product-variant__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-variant__input:checked + .product-variant__pill {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.product-variant__input:disabled + .product-variant__pill {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
}

/* Form row: quantity + add to cart */

.product-form {
  display: grid;
  gap: 12px;
}

.product-form__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.product-form__row .btn {
  flex: 1 1 220px;
}

.product-form__error {
  display: none;
  color: var(--danger);
  font-size: 13px;
  font-weight: 600;
}

.product-form__error.is-visible {
  display: block;
}

/* Sticky-Kaufleiste (mobil) */

.product-sticky-bar {
  position: fixed;
  z-index: 900;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(120%);
  transition: transform 260ms var(--ease-out);
}

.product-sticky-bar.is-visible {
  transform: none;
}

.product-sticky-bar__price {
  display: grid;
  gap: 0;
  line-height: 1.15;
}

.product-sticky-bar__price small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.product-sticky-bar__price strong {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.product-sticky-bar .btn {
  flex: 0 1 220px;
  min-height: 46px;
}

@media screen and (min-width: 990px) {
  .product-sticky-bar {
    display: none;
  }
}

/* ---- Verwandte Produkte (styles in related-products.css) ---- */

/* ---- Bewertungen ---- */

.product-reviews {
  padding-block: 56px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.product-reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.product-reviews__score {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.product-reviews__list {
  display: grid;
  gap: 16px;
}

.product-review {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
}

.product-review__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.product-review__author {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-review__date {
  color: var(--soft);
  font-size: 13px;
}

.product-review__body {
  color: var(--muted);
  line-height: 1.6;
}

.product-review__verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
}


/* ========================================================================
   Konfigurator-Inhalt
   The shell (.insono-configurator*) comes from the Shopify theme; the content
   came from the Itoris DPO app there. These rules belong to the native replacement
   in storefront/product/fragments/configurator.html.
   ======================================================================== */

.insono-configurator__body {
  display: grid;
  gap: 22px;
  padding: 18px;
}

.cfg-group {
  display: grid;
  gap: 10px;
}

.cfg-group__label {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cfg-group__hint {
  color: var(--muted);
  font-size: 13px;
}

/* ---- Measurement input ---- */

.cfg-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.cfg-measure {
  display: grid;
  gap: 4px;
}

.cfg-measure__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cfg-measure__field {
  display: flex;
  align-items: center;
  padding-right: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.cfg-measure__field:focus-within {
  border-color: var(--header-accent);
  box-shadow: 0 0 0 3px var(--header-accent-soft);
}

.cfg-measure__input {
  width: 100%;
  min-height: 50px;
  padding: 0 6px 0 14px;
  border: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  -moz-appearance: textfield;
}

.cfg-measure__input:focus {
  outline: none;
}

.cfg-measure__input::-webkit-outer-spin-button,
.cfg-measure__input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.cfg-measure__unit {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cfg-measure__hint {
  color: var(--soft);
  font-size: 12px;
}

.cfg-measure__error {
  color: var(--danger);
  font-size: 12px;
  font-weight: 600;
}

.cfg-measure.has-error .cfg-measure__field {
  border-color: var(--danger);
}

/* ---- Optionen ---- */

.cfg-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.cfg-options--select {
  grid-template-columns: 1fr;
}

.cfg-option-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.cfg-option-card:hover {
  border-color: var(--header-accent);
}

.cfg-option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cfg-option-card:has(input:checked) {
  border-color: var(--header-accent);
  box-shadow: 0 0 0 2px var(--header-accent-soft);
}

.cfg-option-card:has(input:disabled) {
  opacity: 0.45;
  cursor: not-allowed;
}

.cfg-option-card__media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: #f5f2ec;
}

.cfg-option-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cfg-option-card__body {
  display: grid;
  gap: 2px;
}

.cfg-option-card__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cfg-option-card__note {
  color: var(--muted);
  font-size: 12px;
}

.cfg-option-card__price {
  color: var(--header-accent);
  font-size: 12px;
  font-weight: 800;
}

/* ---- Zusammenfassung ---- */

.cfg-summary {
  padding: 14px 16px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--bg);
}

.cfg-summary__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cfg-summary__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-size: 13px;
}

.cfg-summary__list dt {
  color: var(--muted);
}

.cfg-summary__list dd {
  font-weight: 700;
  text-align: right;
}


/* ========================================================================
   Measurement help actions below the price
   Port of snippets/product-measure-guarantee.liquid
   ======================================================================== */

.insono-helper-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insono-helper-actions__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.insono-helper-actions__link:hover {
  border-color: var(--header-accent);
  color: var(--header-accent);
}

.insono-helper-actions__link svg {
  width: 16px;
  height: 16px;
}

.insono-helper-actions__link--wa {
  border-color: rgba(37, 211, 102, 0.35);
  color: #128c4a;
}


/* ========================================================================
   Volume discount ladder in the buy box
   Port of snippets/quantity-discount-tiers.liquid
   ======================================================================== */

.insono-quantity-discount {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
}

.insono-quantity-discount__title {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insono-quantity-discount__tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insono-quantity-discount__tiers li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.insono-quantity-discount__tiers li.is-active {
  border-color: var(--success);
  background: var(--success-soft);
  color: var(--success);
}

.insono-quantity-discount__tiers strong {
  color: var(--header-accent);
}

.insono-dispatch-countdown {
  color: var(--warning);
  font-size: 13px;
  font-weight: 700;
}


/* ========================================================================
   Buybox-Bewertungssnippet
   ======================================================================== */

.insono-buybox-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.insono-buybox-rating a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.insono-buybox-rating a:hover {
  color: var(--header-accent);
}


/* ========================================================================
   Abschluss-CTA-Band
   Port of component-pdp-cta-band.css (live Shopify)
   ======================================================================== */

.insono-pdp-cta-band {
  margin-top: 48px;
  padding: 0;
}

.insono-pdp-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 42px;
  border: 1px solid rgba(38, 56, 43, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 130, 45, 0.1), transparent 42%),
    linear-gradient(135deg, #fffdf8fa, #f1ece2b8);
  box-shadow: 0 20px 56px rgba(38, 56, 43, 0.08);
}

.insono-pdp-cta-band__kicker {
  display: block;
  margin-bottom: 10px;
  color: #b09b83;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.insono-pdp-cta-band__copy h2 {
  margin: 0 0 8px;
  max-width: 520px;
  color: #1f221f;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.insono-pdp-cta-band__copy p {
  margin: 0;
  max-width: 480px;
  color: #6e6b63;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.insono-pdp-cta-band__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0e9462, #0a7a4f 55%, #086a44);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 32px -12px rgba(10, 122, 79, 0.65);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.insono-pdp-cta-band__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 18px 40px -10px rgba(10, 122, 79, 0.72);
  color: #fff;
}

.insono-pdp-cta-band__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media screen and (max-width: 989px) {
  .insono-pdp-cta-band__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px;
    text-align: center;
  }

  .insono-pdp-cta-band__copy h2,
  .insono-pdp-cta-band__copy p {
    max-width: none;
  }

  .insono-pdp-cta-band__btn {
    width: 100%;
  }
}


/* Media column of the PDP (breadcrumb + gallery) */
.product-layout__media {
  min-width: 0;
}

/* Wrapper around price, quantity ladder and shipping note */
.product-price-block {
  display: grid;
  gap: 10px;
}

/* Option grid with images: slightly wider tiles */
.cfg-options--images {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

/* Card without an image: no media area, less padding */
.cfg-option-card--plain {
  padding: 14px;
}

/* The measurement group stands out slightly */
.cfg-group--measures {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
}


/* ---- product-trust-trio (from section-product-trust-trio.css) ---- */
.insono-pdp-trust-trio {
  --pdp-trio-bg: #f6f4f0;
  --pdp-trio-surface: #fffdf8;
  --pdp-trio-ink: #1d201c;
  --pdp-trio-muted: #76776f;
  --pdp-trio-line: #e8e1d7;
  --pdp-trio-green: #0a7a4f;
  padding: 56px 0;
  background: var(--pdp-trio-bg);
  color: var(--pdp-trio-ink);
}

/* Nested in product-detail — avoid double gutter with pd-container */
.custom-pdp-details__pd-container .insono-pdp-trust-trio {
  margin-top: 8px;
  padding-top:0;
}

.custom-pdp-details__pd-container .insono-pdp-trust-trio__container {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.insono-pdp-trust-trio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.insono-pdp-trust-trio__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  height: 100%;
  padding: 28px 24px;
  border-radius: 24px;
  background: var(--pdp-trio-surface);
  border: 1px solid var(--pdp-trio-line);
  box-shadow: 0 18px 48px rgba(34, 34, 28, 0.06);
}

.insono-pdp-trust-trio__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(10, 122, 79, 0.1);
  color: var(--pdp-trio-green);
  flex: 0 0 auto;
}

.insono-pdp-trust-trio__icon svg {
  width: 26px;
  height: 26px;
}

.insono-pdp-trust-trio__title {
  margin: 0;
  min-height: 2.4em;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.insono-pdp-trust-trio__text {
  margin: 0;
  min-height: 4.65em;
  font-size: 15px;
  line-height: 1.55;
  color: var(--pdp-trio-muted);
}

.insono-pdp-trust-trio__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  width: 100%;
}

.insono-pdp-trust-trio__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--pdp-trio-muted);
}

.insono-pdp-trust-trio__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--pdp-trio-green);
}

.insono-pdp-trust-trio__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 0;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(10, 122, 79, 0.28);
  background: rgba(10, 122, 79, 0.08);
  color: var(--pdp-trio-green);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.insono-pdp-trust-trio__btn:hover {
  background: rgba(10, 122, 79, 0.14);
  transform: translateY(-1px);
}

.insono-pdp-trust-trio__btn svg {
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 989px) {
  .insono-pdp-trust-trio__grid {
    grid-template-columns: 1fr;
  }

  .insono-pdp-trust-trio__title,
  .insono-pdp-trust-trio__text {
    min-height: 0;
  }
}

/* ==========================================================================
   PDP extras — measurement guarantee, cutoff, swatches, gallery badge, ATC
   Port from Shopify snippets / component CSS
   ========================================================================== */

.product-gallery__stage {
  position: relative;
}

.product-guarantee-badge {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem 0.85rem 0.85rem;
  border: 1px solid rgba(30, 33, 29, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  color: #1d201c;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
}

.product-guarantee-badge__icon {
  flex: 0 0 auto;
  display: flex;
  color: #0a7a4f;
}

.product-guarantee-badge__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insono-deal.is-active .insono-deal__price {
  font-size: clamp(1.75rem, 2.2vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.product__tax {
  margin-top: 0.6rem;
  color: rgba(30, 33, 29, 0.55);
  font-size: 0.9rem;
}

/* ========================================================================
   Buybox top — reviews + title + deal price (1:1 live / user reference)
   ======================================================================== */

.product-layout__info .insono-buybox-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0 0 2.1rem;
}

.product-layout__info .insono-buybox-reviews--top {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem 0.75rem;
  width: auto;
  max-width: 100%;
  min-height: 2.4rem;
  margin: 0 0 1rem !important;
  padding: 0.15rem 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-decoration: none !important;
  color: #1d201c !important;
  line-height: 1.25 !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 5;
  font-size: 1.4rem !important;
}

.product-layout__info .insono-buybox-reviews--top .insono-buybox-reviews__stars {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  font-size: 1.75rem !important;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #F18F14 !important;
}

.product-layout__info .insono-buybox-reviews--top .insono-buybox-reviews__stars-base {
  color: rgba(30, 33, 29, 0.18) !important;
}

.product-layout__info .insono-buybox-reviews--top .insono-buybox-reviews__stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--buybox-rating, 100%);
  overflow: hidden;
  color: #F18F14 !important;
  white-space: nowrap;
}

.product-layout__info .insono-buybox-reviews--top .insono-buybox-reviews__score {
  display: inline-flex !important;
  align-items: baseline;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  font-size: 1.4rem !important;
  line-height: 1.2;
  white-space: nowrap;
}

.product-layout__info .insono-buybox-reviews--top .insono-buybox-reviews__score-value {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #0a7a4f !important;
}

.product-layout__info .insono-buybox-reviews--top .insono-buybox-reviews__score-label {
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  color: rgba(30, 33, 29, 0.62) !important;
}

.product-layout__info .insono-buybox-reviews--top .insono-buybox-reviews__count {
  display: inline !important;
  font-size: 1.35rem !important;
  font-weight: 500 !important;
  color: rgba(30, 33, 29, 0.56) !important;
  white-space: nowrap;
}

.product-layout__info .insono-buybox-reviews--top .insono-buybox-reviews__count::before {
  content: none !important;
}

.product-layout__info .insono-buybox-intro .product__title {
  display: block;
  margin: 0.75rem 0 0;
  padding: 0;
}

.product-layout__info .insono-buybox-intro .product__title h1 {
  margin: 0;
  font-size: clamp(3.1rem, 3vw, 4.1rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: rgba(var(--color-foreground), 0.75);
  word-break: break-word;
}

.product-layout__info .product-price-block {
  display: block;
  margin: 0 0 0.2rem;
  min-width: 0;
  overflow: visible;
}

/* Combined savings card — vertically balanced in the buybox.

   Live puts the card between .insono-buybox-intro and .insono-deal, where
   its 1.8rem top margin collapses with the intro's and leaves 18px. Here
   the card sits inside the price block, so the intro's 2.1rem stands on
   its own — the negative nudge brings the distance back to live's 18px
   without touching the intro, which the campaign-free layout depends on. */
.product-layout__info .insono-campaign-save {
  box-sizing: border-box;
  width: fit-content;
  max-width: 100%;
  overflow: visible;
  margin: -0.3rem 0 1.1rem;
  padding: 0.55rem 1.35rem 0.65rem 0.75rem;
  align-items: center;
  line-height: 1;
}

.product-layout__info .insono-campaign-save__body {
  min-width: min-content;
  justify-content: center;
  gap: 0.35rem;
  line-height: 1;
}

.product-layout__info .insono-campaign-save__break {
  min-width: min-content;
}

.product-layout__info .insono-campaign-save__total,
.product-layout__info .insono-campaign-save__total strong,
.product-layout__info .insono-campaign-save__per,
.product-layout__info .insono-campaign-save__tag {
  line-height: 1;
}

.product-layout__info .insono-campaign-save__total {
  align-items: center;
}

.product-layout__info .insono-campaign-save__tag {
  flex: 0 0 auto;
}

.product-layout__info .insono-deal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  line-height: 1;
}

.product-layout__info .insono-deal__top {
  display: none;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-layout__info .insono-deal.is-active .insono-deal__top {
  display: inline-flex;
}

.product-layout__info .insono-deal__compare {
  color: rgba(30, 33, 29, 0.45);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.2;
  text-decoration: line-through;
  text-decoration-color: rgba(30, 33, 29, 0.5);
  text-decoration-thickness: 0.1em;
}

.product-layout__info .insono-deal__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.45rem 0.4rem 1.1rem;
  border-radius: 999px;
  background: rgba(10, 122, 79, 0.09);
  border: 0.1rem solid rgba(10, 122, 79, 0.22);
  color: #0a7a4f;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.2;
}

/* Campaign card already shows the saving — hide the tonal pill to match live */
.product-layout__info .insono-deal.qd-has-campaign .insono-deal__badge {
  display: none;
}

.product-layout__info .insono-deal__badge-text {
  display: inline-flex;
  gap: 0.35rem;
}

.product-layout__info .insono-deal__badge strong {
  font-weight: 800;
}

.product-layout__info .insono-deal__percent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: #0a7a4f;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.product-layout__info .insono-deal__bottom {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}

.product-layout__info .insono-deal.is-active .insono-deal__price,
.product-layout__info .insono-deal__price {
  margin: 0;
  color: #e0231c;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.product-layout__info .insono-deal__preview {
  display: none;
  margin: 0;
  color: #e0231c;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.product-layout__info .insono-deal.has-campaign-preview .insono-deal__price {
  display: none;
}

.product-layout__info .insono-deal.has-campaign-preview .insono-deal__preview {
  display: inline;
}

.product-layout__info .insono-deal__unit {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(30, 33, 29, 0.45);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.product-layout__info .product__tax {
  margin-top: 1.5rem;
  color: rgba(30, 33, 29, 0.5);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
}

@media screen and (max-width: 749px) {
  .product-layout__info .insono-buybox-intro .product__title h1 {
    font-size: clamp(2.8rem, 8vw, 3.4rem);
  }

  .product-layout__info .insono-deal__compare {
    font-size: 1.45rem;
  }

  .product-layout__info .insono-deal.is-active .insono-deal__price,
  .product-layout__info .insono-deal__price,
  .product-layout__info .insono-deal__preview {
    font-size: 2.5rem;
  }

  .product-layout__info .insono-deal__badge {
    font-size: 1.25rem;
  }
}

/* --- Measurement guarantee ---------------------------------------------- */
.insono-mg {
  margin-top: 1.6rem;
}

.insono-mg__banner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.9rem;
  padding: 1.4rem 1.5rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(10, 122, 79, 0.12), rgba(10, 122, 79, 0.04));
  border: 0.1rem solid rgba(10, 122, 79, 0.16);
}

.insono-mg__shield {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #16a06a, #0a7a4f);
  color: #fff;
  box-shadow: inset 0 0.1rem 0 rgba(255, 255, 255, 0.4), 0 0.6rem 1.4rem -0.6rem rgba(10, 122, 79, 0.8);
}

.insono-mg__shield svg {
  width: 2.3rem;
  height: 2.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insono-mg__banner-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.insono-mg__banner-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #1d201c;
}

.insono-mg__banner-title b {
  color: #0a7a4f;
}

.insono-mg__banner-sub {
  font-size: 1.3rem;
  line-height: 1.35;
  color: rgba(30, 33, 29, 0.62);
}

.insono-mg__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.insono-mg__tile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1.4rem;
  text-decoration: none;
  overflow: hidden;
  background: rgba(30, 33, 29, 0.025);
  border: 0.1rem solid rgba(30, 33, 29, 0.07);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
  color: inherit;
}

.insono-mg__tile:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 1.2rem 2.6rem -1.2rem rgba(30, 33, 29, 0.4);
}

.insono-mg__tile--guide {
  background: rgba(238, 148, 65, 0.07);
  border-color: rgba(238, 148, 65, 0.22);
}

.insono-mg__tile--wa {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.28);
}

.insono-mg__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0.4rem 1rem -0.5rem rgba(30, 33, 29, 0.5);
}

.insono-mg__icon svg {
  width: 2rem;
  height: 2rem;
}

.insono-mg__tile--guide .insono-mg__icon svg {
  fill: none;
  stroke: #d98023;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insono-mg__tile--wa .insono-mg__icon svg {
  fill: #25d366;
}

.insono-mg__tile-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.insono-mg__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insono-mg__tile--guide .insono-mg__chip {
  color: #c9781f;
}

.insono-mg__tile--wa .insono-mg__chip {
  color: #0a7a4f;
}

.insono-mg__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0.3rem rgba(37, 211, 102, 0.22);
}

.insono-mg__label {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1d201c;
}

.insono-mg__go {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(30, 33, 29, 0.3);
}

.insono-mg__go svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Keep 2-col helper tiles like desktop buybox / user reference (container is narrow). */
@media screen and (max-width: 380px) {
  .insono-mg__tiles {
    grid-template-columns: 1fr;
  }

  .insono-mg__banner-title {
    font-size: 1.4rem;
  }
}

/* --- Cutoff ------------------------------------------------------------- */
.insono-cutoff {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
  margin-bottom: 1rem;
  padding: 1.15rem 1.6rem;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(10, 122, 79, 0.08), rgba(10, 122, 79, 0.02));
  border: 0.1rem solid rgba(10, 122, 79, 0.22);
  font-size: 1.45rem;
  line-height: 1.2;
  text-align: center;
  color: #0a7a4f;
}

.insono-cutoff__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
}

.insono-cutoff__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #0a7a4f;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insono-cutoff__pulse {
  flex: 0 0 auto;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #16a06a;
  box-shadow: 0 0 0 0 rgba(22, 160, 106, 0.55);
  animation: insono-cutoff-pulse 1.6s ease-out infinite;
}

@keyframes insono-cutoff-pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 160, 106, 0.5); }
  70% { box-shadow: 0 0 0 0.7rem rgba(22, 160, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 160, 106, 0); }
}

.insono-cutoff__text {
  font-weight: 600;
}

.insono-cutoff__time {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1d201c;
  font-variant-numeric: tabular-nums;
}

/* --- Swatches ----------------------------------------------------------- */
.cfg-required {
  color: #e0231c;
  margin-left: 0.15em;
}

.cfg-options--swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cfg-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  position: relative;
}

.cfg-swatch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cfg-swatch__chip {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 2px solid rgba(30, 33, 29, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.cfg-swatch:has(input:checked) .cfg-swatch__chip {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0a7a4f;
  transform: scale(1.05);
}

.cfg-swatch__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(30, 33, 29, 0.7);
  text-align: center;
  max-width: 5.5rem;
}

.cfg-swatch__price {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0a7a4f;
}

.cfg-group--measures .cfg-group__label,
.cfg-group--measures > legend {
  display: none;
}

.cfg-measure__label {
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1d201c;
}

/* --- ATC / Menge -------------------------------------------------------- */
.product-form__quantity {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 1rem 0 0.9rem;
}

.product-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5.6rem;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 1.4rem;
  background: #346d4e;
  box-shadow: 0 0.8rem 1.8rem -0.6rem rgba(52, 109, 78, 0.55);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.product-form__submit:hover:not(:disabled) {
  transform: translateY(-0.15rem);
  box-shadow: 0 1.2rem 2.2rem -0.8rem rgba(52, 109, 78, 0.6);
  filter: brightness(1.04);
}

.product-form__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.insono-buybox-trust-stack {
  margin-top: 1.6rem;
  display: grid;
  gap: 1.2rem;
}

.insono-qd__wide-note {
  display: none;
}

.insono-qd.is-collapsed .insono-qd__body {
  display: none;
}

.insono-qd.is-collapsed .insono-qd__chevron {
  transform: rotate(180deg);
}

/* ---- DPO required asterisk (live) -------------------------------------- */
.insono-configurator label.required::after {
  content: " *";
  color: #e0231c;
  font-weight: 700;
}

/* ---- Missing or out-of-range entries -----------------------------------
   Feedback is the message text alone — no red border and no native
   browser tooltip on the field itself. */
.insono-configurator .cfg-field-error {
  display: none;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #e0231c;
}

.insono-configurator .field.has-error .cfg-field-error {
  display: block;
}

/* ---- Gallery 1:1 square like component-product-gallery-square.css ------ */
.product-gallery__stage {
  aspect-ratio: 1 / 1;
  border-radius: 2rem;
  overflow: hidden;
  background: #f1efe9;
}

.product-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__nav {
  opacity: 0;
  pointer-events: none;
}

.product-gallery:hover .product-gallery__nav:not([disabled]) {
  opacity: 0.7;
  pointer-events: auto;
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding: 0.2rem 0;
  scrollbar-width: none;
}

.product-gallery__thumbs::-webkit-scrollbar { display: none; }

.product-gallery__thumb {
  flex: 0 0 7.2rem;
  width: 7.2rem;
  height: 7.2rem;
  padding: 0;
  border: 0.1rem solid rgba(var(--color-foreground), 0.12);
  border-radius: 1.1rem;
  overflow: hidden;
  background: #f1efe9;
  cursor: pointer;
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__thumb[aria-current="true"] {
  border-color: rgba(var(--color-foreground), 0.55);
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.55);
}

.product-gallery__thumb--video {
  position: relative;
}

.product-gallery__thumb--video::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(30, 33, 29, 0.72) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 7.5v9l8-4.5-8-4.5z'/%3E%3C/svg%3E") center/1.2rem no-repeat;
}

/* ---- Dawn-like product grid proportions -------------------------------- */
@media screen and (min-width: 990px) {
  .product-layout {
    /* Dawn product--medium ≈ 55% / 45% */
    grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
  }

  .product-layout__media,
  .product-layout__info {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }
}

.product-page {
  padding-block: 3.3rem 4rem;
  background: var(--bg);
}

/* Quantity label like live */
.product-form__quantity .quantity__label {
  margin: 0 1.2rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.55);
}

/* ---- PayPal express (visual match for Shopify accelerated checkout) ---- */
.insono-paypal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5.4rem;
  margin-top: 0.8rem;
  border: 0;
  border-radius: 1.4rem;
  background: #ffc439;
  color: #111;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: not-allowed;
  opacity: 0.95;
  box-shadow: 0 0.5rem 1.4rem -0.6rem rgba(0, 0, 0, 0.18);
}

.insono-paypal-btn__brand {
  margin: 0 0.2rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.03em;
  color: #003087;
  background: linear-gradient(90deg, #003087 0 48%, #009cde 48% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.insono-paypal-more {
  margin: 0.6rem 0 1.2rem;
  text-align: center;
  font-size: 1.3rem;
}

.insono-paypal-more a {
  color: rgba(var(--color-foreground), 0.6);
  font-weight: 600;
  text-underline-offset: 0.3rem;
  text-decoration: underline;
}

.insono-usp-stack--compact {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Perks under ATC — green icons, muted gray labels (ref) */
.insono-usp-stack--compact .insono-buybox-perks {
  justify-content: space-between;
  /* gap: 0.8rem; */
}

.insono-usp-stack--compact .insono-buybox-perks__icon {
  color: #346d4e;
}

.insono-usp-stack--compact .insono-buybox-perks__label {
  color: rgba(29, 29, 29, 0.62);
  font-weight: 600;
}

.insono-usp__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.insono-usp-stack--compact .insono-usp__pay-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.insono-usp__pay-icon {
  display: block;
  height: 2.2rem;
  width: auto;
}

.insono-usp__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  justify-content: center;
}

.insono-usp__stars {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.insono-usp__stars-base { color: #00b67a33; }
.insono-usp__stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--usp-rating, 88%);
  overflow: hidden;
  color: #00b67a;
  white-space: nowrap;
}

.insono-usp__score {
  font-weight: 700;
  font-size: 1.35rem;
  color: rgba(29, 29, 29, 0.85);
}

.insono-usp__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-left: 0.75rem;
  border-left: 0.1rem solid rgba(29, 29, 29, 0.14);
  font-weight: 700;
  font-size: 1.35rem;
  color: #191919;
}

.insono-usp__brand::before {
  content: "★";
  color: #00b67a;
  font-size: 1.15rem;
  line-height: 1;
}

/* ---- Thumbnail slider (Dawn thumbnail_slider) -------------------------- */
.product-gallery__thumbs-slider {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.product-gallery__thumb-nav {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(var(--color-foreground), 0.75);
  cursor: pointer;
}

.product-gallery__thumb-nav[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}

.product-gallery__thumb-nav svg {
  width: 1.4rem;
  height: auto;
}

.product-gallery__thumb-nav--prev svg {
  transform: rotate(90deg);
}

.product-gallery__thumb-nav--next svg {
  transform: rotate(-90deg);
}

.product-gallery__thumb {
  flex: 0 0 7.2rem;
  width: 7.2rem;
  height: 7.2rem;
  padding: 0;
  border: 0.1rem solid rgba(var(--color-foreground), 0.12);
  border-radius: 1.1rem;
  overflow: hidden;
  background: #f1efe9;
  cursor: pointer;
  scroll-snap-align: start;
}

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

.product-gallery__thumb[aria-current="true"] {
  border-color: rgba(var(--color-foreground), 0.55);
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.55);
}

/* Force square stage even if earlier rules conflict */
.product-gallery__stage {
  aspect-ratio: 1 / 1 !important;
}

.product-gallery__stage .product-gallery__nav {
  display: none !important;
}
