.commerce-product-new {
  --pdp-blue: #22336f;
  --pdp-bright-blue: #4065d1;
  --pdp-dark: #3c3e48;
  --pdp-muted: #56575e;
  --pdp-soft: #f7f9ff;
  --pdp-stroke: #edf1ff;
  --pdp-yellow: #ffd135;
  --pdp-coral: #ff6b6b;
  --pdp-section: #f3f6ff;
  --pdp-page-gutter: 80px;
  color: var(--pdp-dark);
  background: #fff;
}

.commerce-product-new .commerce-container {
  width: min(calc(100% - var(--pdp-page-gutter) - var(--pdp-page-gutter)), 1280px);
  max-width: 1280px;
  margin-inline: auto;
}

@supports selector(body:has(.commerce-product-new)) {
  @media (min-width: 981px) {
    body.jolly-theme:has(.commerce-product-new) .jl-header {
      padding-bottom: clamp(16px, 1.8vw, 24px);
    }
  }

  body.jolly-theme:has(.commerce-product-new) .commerce-shop-search-bar--compact {
    padding-bottom: clamp(8px, 1.4vw, 14px);
  }

  body.jolly-theme:has(.commerce-product-new) .commerce-shop-search-bar--compact .commerce-shop-search-bar__inner {
    padding-top: 0;
  }

  body.jolly-theme:has(.commerce-product-new) .commerce-shop-search-bar--compact .commerce-shop-search-bar__form {
    height: 44px;
    min-height: 44px;
  }

  body.jolly-theme:has(.commerce-product-new) .commerce-shop-search-bar--compact .commerce-shop-search-bar__form .input {
    height: 27px;
    min-height: 27px;
    font-size: 16px;
    line-height: 27px;
  }

  @media (min-width: 981px) {
    body.jolly-theme:has(.commerce-product-new) .commerce-shop-search-bar--compact {
      /* Figma 1311:15274: the desktop search section ends with 20px of breathing room. */
      padding-bottom: 20px;
    }
  }

  @media (max-width: 980px) {
    body.jolly-theme:has(.commerce-product-new) .jl-header {
      padding-bottom: 0;
    }

    body.jolly-theme:has(.commerce-product-new) .commerce-shop-search-bar--compact .commerce-shop-search-bar__inner {
      padding-top: 16px;
    }
  }
}

.commerce-product-new__status {
  color: var(--pdp-muted);
  font: 700 14px/1.5 Mulish, sans-serif;
  padding: 10px 0;
}

.commerce-product-new__skeleton {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 28px 0 40px;
}

.commerce-product-new__skeleton > div {
  min-height: 360px;
  border-radius: 24px;
  background: linear-gradient(100deg, #f7f9ff 0%, #eef3ff 50%, #f7f9ff 100%);
}

.commerce-product-new__hero {
  background: #fff;
  min-height: 720px;
  padding: 30px 0 50px;
}

.commerce-product-new__hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 604fr) minmax(0, 630fr);
  gap: clamp(26px, 3.2vw, 46px);
  align-items: stretch;
}

.commerce-product-new__gallery-card,
.commerce-product-new__summary-card {
  border: 2px solid var(--pdp-stroke);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(31, 47, 107, 0.08);
  overflow: hidden;
}

.commerce-product-new__gallery-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 640px;
  padding: 30px 30px 24px;
}

.commerce-product-new__main-media {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 480px;
  height: 480px;
  min-height: 0;
  border-radius: 22px;
  border: 2px solid var(--pdp-stroke);
  background: var(--pdp-soft);
  overflow: hidden;
  cursor: zoom-in;
}

.commerce-product-new__main-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100% - 36px);
  max-height: calc(100% - 36px);
  object-fit: contain;
  padding: 0;
}

.commerce-product-new__zoom-trigger {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.commerce-product-new__zoom-trigger:focus-visible {
  outline: 2px solid var(--pdp-bright-blue);
  outline-offset: -6px;
}

.commerce-product-new__gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  color: var(--pdp-muted);
  background: var(--pdp-soft);
  overflow: hidden;
  transform: translateY(-50%);
  cursor: pointer;
}

.commerce-product-new__gallery-nav span {
  position: absolute;
  top: -1px;
  left: 50%;
  display: block;
  width: 40px;
  height: 40px;
  font: 700 30px/36px Quicksand, sans-serif;
  text-align: center;
  transform: translateX(-50%);
}

.commerce-product-new__gallery-nav:hover,
.commerce-product-new__gallery-nav:focus-visible {
  color: var(--pdp-blue);
  background: #fff;
}

.commerce-product-new__gallery-nav:focus-visible {
  outline: 2px solid var(--pdp-bright-blue);
  outline-offset: 2px;
}

.commerce-product-new__gallery-nav--prev {
  left: 15px;
}

.commerce-product-new__gallery-nav--next {
  right: 20px;
}

.commerce-product-new__zoom {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  padding: clamp(18px, 3vw, 42px);
  background: rgba(31, 47, 107, 0.78);
  backdrop-filter: blur(6px);
}

.commerce-product-new__zoom-close,
.commerce-product-new__zoom-toolbar,
.commerce-product-new__zoom-nav {
  position: relative;
  z-index: 2;
}

.commerce-product-new__zoom-close {
  position: absolute;
  top: clamp(14px, 2vw, 28px);
  right: clamp(14px, 2vw, 28px);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--pdp-stroke);
  border-radius: 22px;
  background: #fff;
  color: var(--pdp-dark);
  font: 700 28px/1 Quicksand, sans-serif;
  cursor: pointer;
}

.commerce-product-new__zoom-toolbar {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px;
  border: 2px solid var(--pdp-stroke);
  border-radius: 999px;
  background: #fff;
  color: var(--pdp-dark);
  box-shadow: 0 10px 28px rgba(31, 47, 107, 0.18);
  font: 700 14px/1 Mulish, sans-serif;
}

.commerce-product-new__zoom-toolbar button {
  min-width: 36px;
  height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--pdp-soft);
  color: var(--pdp-dark);
  font: 800 15px/1 Quicksand, sans-serif;
  cursor: pointer;
}

.commerce-product-new__zoom-toolbar button:hover:not(:disabled),
.commerce-product-new__zoom-toolbar button:focus-visible:not(:disabled),
.commerce-product-new__zoom-close:hover,
.commerce-product-new__zoom-close:focus-visible,
.commerce-product-new__zoom-nav:hover:not(:disabled),
.commerce-product-new__zoom-nav:focus-visible:not(:disabled) {
  color: var(--pdp-bright-blue);
}

.commerce-product-new__zoom-toolbar button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.commerce-product-new__zoom-toolbar span {
  min-width: 48px;
  text-align: center;
}

.commerce-product-new__zoom-stage {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: auto;
  border: 2px solid var(--pdp-stroke);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(31, 47, 107, 0.28);
}

.commerce-product-new__zoom-inner {
  display: grid;
  place-items: center;
  min-width: 100%;
  min-height: 100%;
  padding: 24px;
}

.commerce-product-new__zoom-image {
  display: block;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.commerce-product-new__zoom-nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #fff;
  color: var(--pdp-dark);
  overflow: hidden;
  transform: translateY(-50%);
  cursor: pointer;
}

.commerce-product-new__zoom-nav span {
  position: absolute;
  top: -1px;
  left: 50%;
  display: block;
  width: 40px;
  height: 40px;
  font: 700 30px/36px Quicksand, sans-serif;
  text-align: center;
  transform: translateX(-50%);
}

.commerce-product-new__zoom-nav--prev {
  left: clamp(18px, 2.5vw, 42px);
}

.commerce-product-new__zoom-nav--next {
  right: clamp(18px, 2.5vw, 42px);
}

.commerce-product-new__thumbs {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 540px;
  padding-bottom: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: rgba(86, 87, 94, 0.62) var(--pdp-stroke);
  scrollbar-width: thin;
}

.commerce-product-new__thumbs::-webkit-scrollbar {
  height: 6px;
}

.commerce-product-new__thumbs::-webkit-scrollbar-track {
  border-radius: 999px;
  background: var(--pdp-stroke);
}

.commerce-product-new__thumbs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(86, 87, 94, 0.62);
}

.commerce-product-new__thumbs:hover {
  scrollbar-color: var(--pdp-bright-blue) var(--pdp-stroke);
}

.commerce-product-new__thumbs:hover::-webkit-scrollbar-thumb {
  background: var(--pdp-bright-blue);
}

.commerce-product-new__thumb {
  position: relative;
  flex: 0 0 92px;
  min-width: 92px;
  height: 82px;
  padding: 0;
  border: 2px solid var(--pdp-stroke);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.commerce-product-new__thumb[aria-current="true"] {
  border-color: var(--pdp-muted);
  box-shadow: inset 0 0 0 1px var(--pdp-muted);
}

.commerce-product-new__thumb:hover,
.commerce-product-new__thumb:focus-visible {
  border-color: var(--pdp-bright-blue);
  box-shadow: inset 0 0 0 1px var(--pdp-bright-blue);
  outline: 0;
}

.commerce-product-new__thumb img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100% - 12px);
  max-height: calc(100% - 12px);
  object-fit: contain;
  padding: 0;
}

.commerce-product-new__summary-card {
  display: flex;
  flex-direction: column;
  min-height: 640px;
  padding: 30px;
  gap: 20px;
}

.commerce-product-new__chips,
.commerce-product-new__trust-row,
.commerce-product-new__detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.commerce-product-new__chip,
.commerce-product-new__trust-pill,
.commerce-product-new__detail-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border: 1px solid var(--pdp-stroke);
  border-radius: 10px;
  background: var(--pdp-soft);
  color: var(--pdp-bright-blue);
  font: 600 14px/22px Mulish, sans-serif;
}

.commerce-product-new__chip {
  border-color: #f7f9ff;
  background: #f7f9ff;
  color: #3c3e48;
}

.commerce-product-new__detail-pill {
  gap: clamp(6px, 0.7vw, 10px);
  color: var(--pdp-muted);
}

.commerce-product-new__chip--programme {
  border-color: #f7f9ff;
  background: #f7f9ff;
  color: #3c3e48;
}

.commerce-product-new__summary-card h1 {
  max-width: 530px;
  margin: 0;
  color: var(--pdp-dark);
  font: 700 34px/42px Quicksand, sans-serif;
  letter-spacing: -0.02em;
}

.commerce-product-new__rating {
  margin: 0;
  color: var(--pdp-muted);
  font: 400 14px/21px Mulish, sans-serif;
}

.commerce-product-new__rating span {
  color: var(--pdp-yellow);
}

.commerce-product-new__description {
  color: var(--pdp-muted);
  font: 400 16px/25px Mulish, sans-serif;
  margin: 0;
}

.commerce-product-new__price {
  /* Figma 1311:15299: keep price, identity, actions and trust strip anchored to the card bottom. */
  margin-top: auto;
  margin-bottom: 0;
  color: var(--pdp-dark);
  font: 700 34px/42px Quicksand, sans-serif;
}

.commerce-product-new__sku {
  margin: 0;
  color: var(--pdp-muted);
  font: 400 14px/21px Mulish, sans-serif;
}

.commerce-product-new__identity strong {
  font-weight: 700;
}

.commerce-product-new__identity > span,
.commerce-product-new__identity-separator {
  font-weight: 400;
}

.commerce-product-new__purchase-row {
  display: grid;
  grid-template-columns: 114px minmax(180px, 286px) 26px 26px;
  gap: 28px;
  align-items: center;
  max-width: 536px;
  width: 100%;
}

.commerce-product-new__qty {
  display: grid;
  grid-template-columns: 36px 40px 36px;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--pdp-stroke);
  background: var(--pdp-soft);
  overflow: hidden;
}

.commerce-product-new__qty button {
  border: 0;
  background: transparent;
  color: var(--pdp-dark);
  font: 800 18px/1 Quicksand, sans-serif;
  cursor: pointer;
}

.commerce-product-new__qty input {
  width: 100%;
  border: 0;
  text-align: center;
  color: var(--pdp-dark);
  background: #fff;
  font: 800 16px/1 Quicksand, sans-serif;
  appearance: textfield;
  -moz-appearance: textfield;
}

.commerce-product-new__qty input::-webkit-outer-spin-button,
.commerce-product-new__qty input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.commerce-product-new__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 24px;
  background: var(--pdp-yellow);
  color: var(--pdp-dark);
  font: 800 16px/1 Quicksand, sans-serif;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.commerce-product-new__add:hover:not(:disabled),
.commerce-product-new__add:focus-visible:not(:disabled) {
  background: var(--jl-button-primary-hover-background, var(--jl-color-soft-yellow, #ffe596));
  color: var(--pdp-dark);
}

.commerce-product-new__add.is-added {
  background: var(--pdp-yellow);
  color: var(--pdp-dark);
}

.commerce-product-new__add:focus-visible {
  outline: 2px solid var(--pdp-bright-blue);
  outline-offset: 3px;
}

.commerce-product-new__add-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: #3c3e48;
}

.commerce-product-new__add:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.commerce-product-new__sticky-atc {
  display: none;
}

.commerce-product-new__icon-button {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--pdp-dark);
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  align-self: center;
  justify-self: center;
}

.commerce-product-new__wishlist-glyph {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
}

.commerce-product-new__wishlist-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
  transition: opacity 160ms ease;
}

.commerce-product-new__wishlist-icon--default {
  width: 26px;
  height: 26px;
}

.commerce-product-new__wishlist-icon--active {
  width: 26px;
  height: 26px;
  visibility: hidden;
  opacity: 0;
}

.commerce-product-new__wishlist-button[aria-pressed="true"] .commerce-product-new__wishlist-icon--default {
  visibility: hidden;
  opacity: 0;
}

.commerce-product-new__wishlist-button[aria-pressed="true"] .commerce-product-new__wishlist-icon--active {
  visibility: visible;
  opacity: 1;
}

.commerce-product-new__icon-button[aria-pressed="true"] {
  color: var(--pdp-coral);
}

.commerce-product-new__share-icon {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.commerce-product-new__share-button {
  width: 26px;
  height: 26px;
  background: transparent;
}

.commerce-product-new__trust-row {
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  min-height: 45px;
  padding: 10px 15px;
  gap: 10px;
  border: 2px solid var(--pdp-stroke);
  border-radius: 20px;
  background: var(--pdp-soft);
}

.commerce-product-new__trust-pill {
  flex: 0 1 auto;
  min-width: 0;
  min-height: 20px;
  padding: 0;
  gap: clamp(4px, 0.6vw, 8px);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--pdp-muted);
  font: 400 clamp(10px, 1vw, 14px)/21px Mulish, sans-serif;
  white-space: nowrap;
}

.commerce-product-new__trust-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
}

.commerce-product-new__look {
  min-height: 620px;
  padding: 70px 0;
  background: #fff;
}

.commerce-product-new__look-grid {
  display: grid;
  grid-template-columns: minmax(0, 544fr) minmax(0, 640fr);
  gap: clamp(56px, 6.67vw, 96px);
  align-items: start;
}

.commerce-product-new__section-heading h2,
.commerce-product-new__look h2,
.commerce-product-new__info h2,
.commerce-product-new__faq h2 {
  margin: 0;
  color: var(--pdp-dark);
  font: 700 38px/48px Quicksand, sans-serif;
}

.commerce-product-new__look-copy {
  max-width: 620px;
  margin-top: 10px;
  color: var(--pdp-muted);
  font: 400 16px/27px Mulish, sans-serif;
}

.commerce-product-new__look-copy.is-collapsed {
  max-height: 242px;
  overflow: hidden;
}

.commerce-product-new__look-copy p {
  margin: 0 0 24px;
}

.commerce-product-new__look-copy p:last-child {
  margin-bottom: 0;
}

.commerce-product-new__look-toggle {
  display: inline-flex;
  margin-top: 12px;
  color: var(--pdp-muted);
  font-size: 16px;
  line-height: 20px;
}

.commerce-product-new .commerce-product-new__look-toggle:hover,
.commerce-product-new .commerce-product-new__look-toggle:focus-visible,
.commerce-product-new .commerce-product-new__look-toggle:active,
.commerce-product-new .commerce-product-new__look-toggle[aria-expanded="true"] {
  background: transparent;
  color: var(--pdp-bright-blue);
}

.commerce-product-new__look-toggle[hidden] {
  display: none;
}

.commerce-product-new__look-toggle + .commerce-product-new__detail-pills,
.commerce-product-new__look-copy + .commerce-product-new__detail-pills {
  margin-top: 32px;
}

.commerce-product-new__preview-panel {
  display: grid;
  place-items: center;
  height: 480px;
  min-height: 480px;
  border-radius: 10px;
  background: var(--pdp-soft);
  overflow: hidden;
}

.commerce-product-new__preview-panel img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  padding: 18px;
}

.commerce-product-new__info {
  min-height: 0;
  padding: 40px 0 63px;
  background: var(--pdp-soft);
}

.commerce-product-new__info-heading {
  max-width: 820px;
  min-height: 110px;
  margin-bottom: 20px;
}

.commerce-product-new__info h2 {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}

.commerce-product-new__info-subtitle {
  margin: 8px 0 0;
  color: var(--pdp-muted);
  font: 400 16px/27px Mulish, sans-serif;
}

.commerce-product-new__accordion {
  overflow: hidden;
  min-height: 0;
  border: 2px solid var(--pdp-stroke);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(31, 47, 107, 0.08);
}

.commerce-product-new__panel {
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.commerce-product-new__panel + .commerce-product-new__panel {
  border-top: 2px solid var(--pdp-stroke);
}

@media (min-width: 641px) {
  .commerce-product-new__panel + .commerce-product-new__panel {
    position: relative;
    border-top: 0;
  }

  .commerce-product-new__panel + .commerce-product-new__panel::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1216px, calc(100% - 64px));
    height: 2px;
    background: var(--pdp-stroke);
    content: "";
    transform: translateX(-50%);
    pointer-events: none;
  }
}

.commerce-product-new__panel summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 80px;
  padding: 20px 30px;
  gap: 24px;
  color: var(--pdp-dark);
  font: 700 clamp(22px, 2.2vw, 28px)/1.29 Quicksand, sans-serif;
  cursor: pointer;
  list-style: none;
}

.commerce-product-new__panel summary::-webkit-details-marker {
  display: none;
}

.commerce-product-new__panel-toggle {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--pdp-soft);
  overflow: hidden;
}

.commerce-product-new__panel-toggle::before {
  content: "\203A";
  display: block;
  width: 40px;
  height: 40px;
  color: var(--pdp-muted);
  font: 700 30px/36px Quicksand, sans-serif;
  text-align: center;
  transform: translateY(-1px) rotate(90deg);
  transition: transform 180ms ease;
}

.commerce-product-new__panel[open] .commerce-product-new__panel-toggle::before {
  transform: translateY(-1px) rotate(-90deg);
}

.commerce-product-new__panel summary:focus-visible {
  outline: 3px solid rgba(64, 101, 209, 0.35);
  outline-offset: -3px;
  border-radius: 16px;
}

.commerce-product-new__panel-body {
  padding: 0 30px 20px;
  color: var(--pdp-muted);
  font: 400 16px/1.7 Mulish, sans-serif;
}

.commerce-product-new__panel-body ul {
  columns: 2;
  column-gap: 48px;
  margin: 0;
  padding-left: 20px;
}

.commerce-product-new__panel-body li {
  break-inside: avoid;
  margin: 0 0 7px;
  padding-left: 4px;
}

.commerce-product-new__panel-body li::marker {
  color: var(--pdp-yellow);
}

.commerce-product-new__details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 68px;
}

.commerce-product-new__details-column {
  display: grid;
  align-content: start;
  gap: 7px;
  margin: 0;
}

.commerce-product-new__details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}

.commerce-product-new__details-row dt {
  color: var(--pdp-dark);
  font-weight: 800;
}

.commerce-product-new__details-row dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.commerce-product-new__use-cases {
  padding: 58px 0;
  background: var(--pdp-blue);
}

.commerce-product-new__section-heading {
  margin-bottom: 26px;
}

.commerce-product-new__section-heading--light h2 {
  color: var(--pdp-yellow);
}

.commerce-product-new__section-heading--light p,
.commerce-product-new__section-heading--dark p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.75);
  font: 400 15px/1.7 Mulish, sans-serif;
}

.commerce-product-new__use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.commerce-product-new__use-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
}

.commerce-product-new__use-card h3 {
  margin: 0 0 8px;
  color: var(--pdp-dark);
  font: 800 22px/1.2 Quicksand, sans-serif;
}

.commerce-product-new__use-card p {
  margin: 0 0 14px;
  color: var(--pdp-muted);
  font: 400 14px/1.55 Mulish, sans-serif;
}

.commerce-product-new__use-image {
  aspect-ratio: 1;
  border-radius: 12px;
  background: radial-gradient(circle, #d9d9d9 0 35%, #f1f3fa 36% 100%);
}

.commerce-product-new__related {
  padding: 60px 0;
  background: #050505;
  color: #fff;
}

.commerce-product-new__section-heading--dark h2 {
  color: #fff;
}

.commerce-product-new__related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.commerce-product-new__carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
  color: #fff;
  font: 800 20px/1 Quicksand, sans-serif;
}

.commerce-product-new__carousel-controls button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--pdp-dark);
}

.commerce-product-new__faq {
  padding: 56px 0 70px;
  background: #fff;
}

.commerce-product-new__faq h2 {
  text-align: center;
  margin-bottom: 28px;
}

.commerce-product-new__faq-list {
  display: grid;
  gap: 16px;
}

.commerce-product-new__faq-item {
  border: 1px solid var(--pdp-stroke);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(34, 51, 111, 0.08);
}

.commerce-product-new__faq-item summary {
  padding: 18px 24px;
  color: var(--pdp-dark);
  font: 800 18px/1.25 Quicksand, sans-serif;
  cursor: pointer;
}

.commerce-product-new__faq-item div {
  padding: 0 24px 20px;
  color: var(--pdp-muted);
  font: 400 15px/1.65 Mulish, sans-serif;
}


.commerce-product-new__purchase-row[data-commerce-buy-state="coming_soon"],
.commerce-product-new__purchase-row[data-commerce-buy-state="out_of_stock"],
.commerce-product-new__purchase-row[data-commerce-buy-state="not_for_buying"] {
  grid-template-columns: minmax(180px, 1fr) auto auto;
}

.commerce-product-new__price--hidden {
  min-height: 0;
  margin: 0;
}

.commerce-product-new__preview-panel--embed {
  position: relative;
  min-height: 430px;
  padding: 16px;
  background: var(--pdp-soft);
}

.commerce-product-new__preview-frame {
  display: block;
  width: 100%;
  height: min(58vw, 420px);
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.commerce-product-new__sound-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.commerce-product-new__sound-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--pdp-soft);
  color: var(--pdp-muted);
  font: 800 12px/1.2 Quicksand, sans-serif;
}

@media (min-width: 981px) and (max-width: 1359px) {
  .commerce-product-new__purchase-row {
    grid-template-columns: 114px minmax(150px, 1fr) 26px 26px;
    gap: 22px;
  }

  .commerce-product-new__trust-row {
    padding-inline: 12px;
    gap: 7px;
  }

  .commerce-product-new__trust-pill {
    font-size: 11px;
  }
}

@media (max-width: 980px) {
  .commerce-product-new {
    --pdp-page-gutter: 48px;
  }

  .commerce-product-new__hero-inner,
  .commerce-product-new__look-grid,
  .commerce-product-new__use-grid {
    grid-template-columns: 1fr;
  }

  .commerce-product-new__hero {
    min-height: 0;
    padding: 20px 0 28px;
  }

  .commerce-product-new__gallery-card {
    min-height: 0;
  }

  .commerce-product-new__summary-card {
    min-height: 0;
    padding: 24px;
  }

  .commerce-product-new__main-media {
    flex-basis: auto;
    height: clamp(360px, 76vw, 480px);
    min-height: 360px;
  }

  .commerce-product-new__purchase-row {
    grid-template-columns: 114px minmax(180px, 1fr) 26px 26px;
    gap: 14px;
  }

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

  .commerce-product-new__look,
  .commerce-product-new__info,
  .commerce-product-new__accordion {
    min-height: 0;
  }

  .commerce-product-new__info h2 {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .commerce-product-new {
    --pdp-page-gutter: 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .commerce-product-new .commerce-container {
    width: calc(100% - var(--pdp-page-gutter) - var(--pdp-page-gutter));
  }

  .commerce-product-new__skeleton {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0;
  }

  .commerce-product-new__hero {
    padding: 16px 0 20px;
    background: var(--pdp-section);
  }

  .commerce-product-new__hero-inner {
    gap: 20px;
  }

  .commerce-product-new__gallery-card,
  .commerce-product-new__summary-card {
    border-width: 1px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(31, 47, 107, 0.08);
  }

  .commerce-product-new__gallery-card {
    gap: 16px;
    min-height: 0;
    padding: 16px;
  }

  .commerce-product-new__main-media {
    height: 260px;
    min-height: 260px;
    border-width: 1px;
    border-radius: 16px;
  }

  .commerce-product-new__main-media img {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
  }

  .commerce-product-new__zoom {
    gap: 12px;
    padding: 12px;
  }

  .commerce-product-new__zoom-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .commerce-product-new__zoom-toolbar {
    justify-self: start;
    max-width: calc(100% - 54px);
    overflow-x: auto;
  }

  .commerce-product-new__zoom-stage {
    border-radius: 20px;
  }

  .commerce-product-new__zoom-inner {
    padding: 12px;
  }

  .commerce-product-new__zoom-nav {
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .commerce-product-new__zoom-nav--prev {
    left: 22px;
  }

  .commerce-product-new__zoom-nav--next {
    right: 22px;
  }

  .commerce-product-new__thumbs {
    gap: 8px;
    max-width: 100%;
    padding-bottom: 6px;
  }

  .commerce-product-new__thumb {
    flex-basis: calc((100% - 32px) / 5);
    min-width: calc((100% - 32px) / 5);
    height: auto;
    aspect-ratio: 1;
    border-width: 1px;
    border-radius: 8px;
  }

  .commerce-product-new__thumb img {
    max-width: calc(100% - 8px);
    max-height: calc(100% - 8px);
  }

  .commerce-product-new__gallery-nav--prev {
    left: 8px;
  }

  .commerce-product-new__gallery-nav--next {
    right: 8px;
  }

  .commerce-product-new__summary-card {
    min-height: 0;
    padding: 16px;
    gap: 16px;
  }

  .commerce-product-new__chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 7px;
  }

  .commerce-product-new__chip {
    justify-content: center;
    width: 100%;
    min-height: 32px;
    padding: 4px 6px;
    border-radius: 10px;
    font: 700 10px/14px Mulish, sans-serif;
    text-align: center;
  }

  .commerce-product-new__summary-card h1 {
    margin: 0;
    font: 700 30px/34px Quicksand, sans-serif;
    letter-spacing: -0.01em;
  }

  .commerce-product-new__rating,
  .commerce-product-new__description,
  .commerce-product-new__price,
  .commerce-product-new__sku {
    margin: 0;
  }

  .commerce-product-new__description {
    font: 400 16px/24px Mulish, sans-serif;
  }

  .commerce-product-new__price {
    margin-top: 8px;
    font: 800 24px/30px Quicksand, sans-serif;
  }

  .commerce-product-new__sku {
    font: 400 12px/18px Mulish, sans-serif;
  }

  .commerce-product-new__purchase-row {
    grid-template-columns: 114px minmax(0, 1fr) 26px 26px;
    gap: 12px;
  }

  .commerce-product-new__qty {
    min-height: 40px;
  }

  .commerce-product-new__qty {
    grid-column: 1;
    grid-row: 1;
  }

  .commerce-product-new__wishlist-button {
    grid-column: 3;
    grid-row: 1;
  }

  .commerce-product-new__share-button {
    grid-column: 4;
    grid-row: 1;
  }

  .commerce-product-new__add {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 44px;
    min-height: 44px;
  }

  .commerce-product-new__sticky-atc {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 54;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(144px, 46%);
    gap: 12px;
    align-items: center;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--pdp-stroke);
    background: #fff;
    box-shadow: 0 -8px 20px rgba(31, 47, 107, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
    transition: opacity 160ms ease, transform 180ms ease;
    max-width: 100vw;
  }

  .commerce-product-new.is-sticky-atc-visible {
    padding-bottom: 0;
  }

  .commerce-product-new.is-sticky-atc-visible .commerce-product-new__sticky-atc {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .commerce-product-new.is-sticky-atc-visible .jl-shop-cart-trigger {
    display: none;
  }

  .commerce-product-new__sticky-summary {
    display: grid;
    min-width: 0;
    gap: 2px;
  }

  .commerce-product-new__sticky-title {
    overflow: hidden;
    color: var(--pdp-dark);
    font: 800 13px/18px Quicksand, sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .commerce-product-new__sticky-price {
    color: var(--pdp-dark);
    font: 800 20px/25px Quicksand, sans-serif;
  }

  .commerce-product-new__sticky-add {
    display: inline-flex;
    height: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    padding: 0 14px;
    border: 0;
    border-radius: 24px;
    background: var(--pdp-yellow);
    color: var(--pdp-dark);
    cursor: pointer;
    font: 800 16px/18px Quicksand, sans-serif;
  }

  .commerce-product-new__sticky-add:hover:not(:disabled),
  .commerce-product-new__sticky-add:focus-visible:not(:disabled),
  .commerce-product-new__sticky-add.is-added {
    background: var(--pdp-yellow);
    color: var(--pdp-dark);
  }

  .commerce-product-new__sticky-add:focus-visible {
    outline: 2px solid var(--pdp-bright-blue);
    outline-offset: 3px;
  }

  .commerce-product-new__sticky-add:disabled {
    opacity: 0.55;
    cursor: not-allowed;
  }

  .commerce-product-new__sticky-add .commerce-product-new__add-icon {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
  }

  .commerce-product-new__purchase-row[data-commerce-buy-state="coming_soon"],
  .commerce-product-new__purchase-row[data-commerce-buy-state="out_of_stock"],
  .commerce-product-new__purchase-row[data-commerce-buy-state="not_for_buying"] {
    grid-template-columns: minmax(0, 1fr) 26px 26px;
  }

  .commerce-product-new__purchase-row[data-commerce-buy-state="coming_soon"] .commerce-product-new__add,
  .commerce-product-new__purchase-row[data-commerce-buy-state="out_of_stock"] .commerce-product-new__add,
  .commerce-product-new__purchase-row[data-commerce-buy-state="not_for_buying"] .commerce-product-new__add {
    grid-column: 1;
    grid-row: 1;
  }

  .commerce-product-new__purchase-row[data-commerce-buy-state="coming_soon"] .commerce-product-new__wishlist-button,
  .commerce-product-new__purchase-row[data-commerce-buy-state="out_of_stock"] .commerce-product-new__wishlist-button,
  .commerce-product-new__purchase-row[data-commerce-buy-state="not_for_buying"] .commerce-product-new__wishlist-button {
    grid-column: 2;
  }

  .commerce-product-new__purchase-row[data-commerce-buy-state="coming_soon"] .commerce-product-new__share-button,
  .commerce-product-new__purchase-row[data-commerce-buy-state="out_of_stock"] .commerce-product-new__share-button,
  .commerce-product-new__purchase-row[data-commerce-buy-state="not_for_buying"] .commerce-product-new__share-button {
    grid-column: 3;
  }

  .commerce-product-new__icon-button {
    width: 26px;
    height: 26px;
    border-radius: 0;
    background: #fff;
  }

  .commerce-product-new__wishlist-glyph {
    width: 26px;
    height: 26px;
  }

  .commerce-product-new__share-icon {
    width: 26px;
    height: 26px;
  }

  .commerce-product-new__share-button {
    background: transparent;
  }

  .commerce-product-new__trust-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
    margin-top: 0;
    padding: 20px;
    gap: 20px;
    border-radius: 20px;
  }

  .commerce-product-new__trust-pill {
    width: 100%;
    gap: 8px;
    font: 400 14px/21px Mulish, sans-serif;
    white-space: normal;
  }

  .commerce-product-new__trust-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .commerce-product-new__look {
    padding: 20px 0;
    background: var(--pdp-section);
  }

  .commerce-product-new__look-grid {
    gap: 30px;
  }

  .commerce-product-new__look h2,
  .commerce-product-new__info h2 {
    font: 800 24px/30px Quicksand, sans-serif;
  }

  .commerce-product-new__info-heading {
    min-height: 0;
    margin-bottom: 20px;
  }

  .commerce-product-new__info-subtitle {
    font: 400 16px/24px Mulish, sans-serif;
  }

  .commerce-product-new__look-copy {
    margin-top: 20px;
    font: 400 16px/24px Mulish, sans-serif;
  }

  .commerce-product-new__look-copy.is-collapsed {
    max-height: 236px;
  }

  .commerce-product-new__look-copy p {
    margin-bottom: 20px;
  }

  .commerce-product-new__look-toggle + .commerce-product-new__detail-pills,
  .commerce-product-new__look-copy + .commerce-product-new__detail-pills {
    margin-top: 24px;
  }

  .commerce-product-new__detail-pills {
    display: none;
  }

  .commerce-product-new__detail-pill {
    width: 100%;
    min-height: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--pdp-muted);
    font: 400 14px/21px Mulish, sans-serif;
  }

  .commerce-product-new__preview-panel,
  .commerce-product-new__preview-panel--embed {
    min-height: 322px;
    border-radius: 20px;
  }

  .commerce-product-new__preview-panel--embed {
    padding: 12px;
  }

  .commerce-product-new__preview-frame {
    height: 298px;
    min-height: 298px;
    border-radius: 10px;
  }

  .commerce-product-new__panel-body ul {
    columns: 1;
    margin: 0;
    padding-left: 28px;
  }

  .commerce-product-new__panel-body li {
    margin-bottom: 12px;
    padding-left: 6px;
    line-height: 24px;
  }

  .commerce-product-new__info {
    padding: 20px 0 24px;
  }

  .commerce-product-new__panel summary {
    min-height: 72px;
    padding: 16px;
    align-items: center;
    gap: 16px;
    font: 700 20px/26px Quicksand, sans-serif;
  }

  .commerce-product-new__panel-toggle {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .commerce-product-new__panel-body {
    padding: 0 16px 16px;
    font: 400 16px/24px Mulish, sans-serif;
  }

  .commerce-product-new__details-grid,
  .commerce-product-new__use-card,
  .commerce-product-new__related-grid {
    grid-template-columns: 1fr;
  }

  .commerce-product-new__details-row {
    gap: 4px;
    line-height: 24px;
  }
}

/* Product media should always show the full image inside its frame. */
.commerce-product-new__main-media,
.commerce-product-new__thumb,
.commerce-product-new__preview-panel {
  position: relative;
}

.commerce-product-new__main-media img[data-pdp-main-image],
.commerce-product-new__thumb img,
.commerce-product-new__preview-panel > img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  box-sizing: border-box !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}

.commerce-product-new__main-media img[data-pdp-main-image] {
  padding: 18px !important;
}

.commerce-product-new__thumb img {
  padding: 6px !important;
}

.commerce-product-new__preview-panel > img {
  padding: clamp(12px, 2vw, 24px) !important;
}

.commerce-product-new__zoom-image {
  object-fit: contain !important;
  object-position: center !important;
}

.commerce-product-new [data-commerce-product-card] .commerce-product-design__media img:not(.commerce-product-design__wishlist-icon):not([data-commerce-wishlist-icon-default]):not([data-commerce-wishlist-icon-active]),
.commerce-product-new [data-commerce-product-card] .home-products__image img:not(.commerce-product-design__wishlist-icon):not([data-commerce-wishlist-icon-default]):not([data-commerce-wishlist-icon-active]),
[data-commerce-product-card] .commerce-product-design__media img:not(.commerce-product-design__wishlist-icon):not([data-commerce-wishlist-icon-default]):not([data-commerce-wishlist-icon-active]),
[data-commerce-product-card] .home-products__image img:not(.commerce-product-design__wishlist-icon):not([data-commerce-wishlist-icon-default]):not([data-commerce-wishlist-icon-active]) {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  box-sizing: border-box !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: auto !important;
  padding: 14px !important;
  object-fit: contain !important;
  object-position: center !important;
}

/*
 * Keep the PDP breadcrumb in the module asset as a critical fallback.
 * HubSpot can retain an older versioned URL for require_css() template assets
 * on already-published dynamic product pages, while module.css is regenerated
 * whenever this module is published.
 */
.commerce-breadcrumbs {
  --pdp-breadcrumb-gutter: 80px;
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  min-height: 21px;
  margin-block: 0 20px;
  padding: 0;
  background: #ffffff;
  color: var(--jl-color-body-grey, #56575e);
  font: 400 14px/21px var(--jl-font-body, Mulish, sans-serif);
  letter-spacing: 0;
  isolation: isolate;
}

.commerce-breadcrumbs::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: #ffffff;
  content: "";
  pointer-events: none;
}

.commerce-breadcrumbs.commerce-container {
  width: min(calc(100% - var(--pdp-breadcrumb-gutter) - var(--pdp-breadcrumb-gutter)), 1280px);
  max-width: 1280px;
  margin-inline: auto;
}

.commerce-breadcrumbs__list {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: inherit;
}

.commerce-breadcrumbs__item {
  display: inline-flex;
  max-width: 100%;
  min-width: 0;
  align-items: center;
  gap: 0;
  color: var(--jl-color-body-grey, #56575e);
  line-height: inherit;
  overflow-wrap: anywhere;
}

.commerce-breadcrumbs__item + .commerce-breadcrumbs__item::before {
  content: "/";
  margin-inline: 4px;
  color: var(--jl-color-body-grey, #56575e);
  font-weight: 400;
}

.commerce-breadcrumbs a {
  color: var(--jl-color-body-grey, #56575e);
  font-weight: 400;
  text-decoration: none;
  transition: color 160ms ease;
}

.commerce-breadcrumbs a:hover,
.commerce-breadcrumbs a:focus-visible {
  color: var(--jl-color-bright-blue, #4065d1);
  text-decoration: none;
}

.commerce-breadcrumbs a:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--jl-color-bright-blue, #4065d1);
  outline-offset: 3px;
}

.commerce-breadcrumbs a:active {
  color: var(--jl-color-dark-blue, #1f2f6b);
}

.commerce-breadcrumbs [aria-current="page"],
.commerce-breadcrumbs__item[aria-current="page"],
.commerce-breadcrumbs__item.is-active {
  min-width: 0;
  color: var(--jl-color-body-grey, #56575e);
  font-weight: 700;
}

@media (min-width: 981px) {
  .commerce-breadcrumbs {
    /* Figma 1311:15269: 23px search-to-breadcrumb and 33px breadcrumb-to-card. */
    margin-block: 3px;
  }

  .commerce-breadcrumbs::before {
    top: -3px;
  }
}

@media (max-width: 980px) {
  .commerce-breadcrumbs {
    --pdp-breadcrumb-gutter: 20px;
  }
}
