.breadcrumbs__sep {
  flex: 0 0 auto;
  color: currentColor;
  font-size: var(--fs-xs);
  line-height: 1;
  opacity: .4;
  user-select: none;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-5);
  align-items: start;
  margin-block-start: var(--sp-5);
}

.product-hero > * {
  min-width: 0;
}

.product-hero__media {
  position: relative;
  min-width: 0;
}

.product-hero__media > * {
  position: relative;
  z-index: 1;
}

.product-hero__media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 10% 4% 6%;
  border-radius: 50%;
  background-image: radial-gradient(closest-side, var(--c-tint-azure), transparent);
  filter: blur(34px);
  pointer-events: none;
}

.product-hero__cover {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-xl);
  background-color: var(--c-surface-dark);
  box-shadow: var(--sh-player);
}

.product-hero__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
  min-width: 0;
}

.product-hero__cat {
  --accent: var(--c-azure);
  display: inline-flex;
  align-items: center;
  gap: .55em;
  max-width: 100%;
  margin: 0;
  padding: .45em 1.05em;
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-pill);
  background-color: var(--c-tint-azure);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-caps);
  line-height: var(--lh-snug);
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.product-hero__cat::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}

.product-hero__title {
  max-width: 20ch;
  margin: 0;
  color: var(--c-on-dark);
  font-family: var(--f-head);
  font-size: var(--fs-h1);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: manual;
}

.product-hero__lead {
  max-width: 56ch;
  margin: 0;
  color: var(--c-on-dark-2);
  font-size: var(--fs-lead);
  line-height: var(--lh-base);
  text-wrap: pretty;
  overflow-wrap: break-word;
  hyphens: manual;
}

.product-hero .price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-1);
  max-width: 100%;
  margin: 0;
  padding: var(--sp-3) var(--sp-5);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-xl);
  background-color: var(--c-glass-light);
  box-shadow: var(--sh-hair-dark);
}

@supports (backdrop-filter: blur(1px)) {
  .product-hero .price {
    backdrop-filter: blur(14px) saturate(120%);
  }
}

.product-hero .price__label {
  color: var(--c-sky);
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
}

.product-hero .price__value {
  color: var(--c-on-dark);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-head);
}

.product-hero__audience {
  max-width: 60ch;
  margin: 0;
  color: var(--c-on-dark-2);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  overflow-wrap: break-word;
  hyphens: manual;
}

.product-hero__audience-label {
  margin-inline-end: .45em;
  color: var(--c-sky);
  font-weight: var(--fw-bold);
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  width: 100%;
  margin-block-start: var(--sp-2);
}

.product-hero__actions .btn {
  flex: 1 1 100%;
  border-radius: var(--r-pill);
}

.product-details {
  border: 1px solid var(--c-line-light);
  border-radius: var(--r-2xl);
  background-color: var(--c-white);
  box-shadow: var(--sh-card);
  overflow: hidden;
}

.product-details__summary {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-2) var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  padding-inline-end: calc(var(--sp-5) + 3.1em);
  background-color: var(--c-mist);
  cursor: pointer;
  list-style: none;
  transition: background-color var(--dur-base) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.product-details__summary::-webkit-details-marker {
  display: none;
}

.product-details__summary::marker {
  content: "";
}

.product-details__summary:hover {
  background-color: var(--c-ice);
}

.product-details__summary:focus-visible {
  outline: 2px solid var(--c-azure);
  outline-offset: -4px;
}

.product-details__summary::before {
  content: "";
  position: absolute;
  inset-inline-end: var(--sp-4);
  top: 50%;
  width: 2.2em;
  height: 2.2em;
  margin-block-start: -1.1em;
  border: 1px solid var(--c-line-light);
  border-radius: 50%;
  background-color: var(--c-white);
  box-shadow: var(--sh-card);
  transition: border-color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}

.product-details__summary::after {
  content: "";
  position: absolute;
  inset-inline-end: calc(var(--sp-4) + .85em);
  top: 50%;
  width: .5em;
  height: .5em;
  border-right: 2px solid var(--c-brand);
  border-bottom: 2px solid var(--c-brand);
  transform: translateY(-70%) rotate(45deg);
  transform-origin: center;
  transition: transform var(--dur-base) var(--ease-out);
}

.product-details__summary:hover::before {
  border-color: var(--c-sky);
  background-color: var(--c-white);
}

.product-details[open] .product-details__summary::after {
  transform: translateY(-28%) rotate(-135deg);
}

.product-details__summary-title {
  color: var(--c-ink);
  font-family: var(--f-head);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  line-height: var(--lh-head);
  letter-spacing: var(--ls-head);
  overflow-wrap: break-word;
  hyphens: manual;
}

.product-details__summary-hint {
  padding: .3em .9em;
  border: 1px solid var(--c-line-light);
  border-radius: var(--r-pill);
  background-color: var(--c-white);
  color: var(--c-ink-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
  overflow-wrap: break-word;
}

.product-details__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  padding: var(--sp-5);
  border-top: 1px solid var(--c-line-light);
}

.product-details[open] .product-details__body {
  animation: product-details-reveal var(--dur-slow) var(--ease-out) both;
}

@keyframes product-details-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-4);
}

.details-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  min-width: 0;
  padding: var(--sp-4);
  border: 1px solid var(--c-line-light);
  border-radius: var(--r-xl);
  background-color: var(--c-mist);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.details-block:hover {
  border-color: var(--c-sky);
  box-shadow: var(--sh-card);
}

.details-block__label {
  margin: 0;
  color: var(--c-brand);
  font-family: var(--f-head);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-caps);
  line-height: var(--lh-snug);
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.details-block__text {
  min-width: 0;
  color: var(--c-ink-2);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  overflow-wrap: break-word;
  hyphens: manual;
}

.details-block__text p {
  margin: 0 0 .7em;
}

.details-block__text ul,
.details-block__text ol {
  margin: 0 0 .7em;
  padding-inline-start: 1.15em;
}

.details-block__text li + li {
  margin-block-start: .35em;
}

.details-block__text strong,
.details-block__text b {
  color: var(--c-ink);
  font-weight: var(--fw-semibold);
}

.details-block__text a {
  color: var(--c-brand);
  text-underline-offset: .18em;
}

.details-block__text > :last-child {
  margin-block-end: 0;
}

.benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  min-width: 0;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--c-line-light);
  border-radius: var(--r-lg);
  background-color: var(--c-white);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.benefit:hover {
  border-color: var(--c-sky);
  box-shadow: var(--sh-card);
}

.benefit__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.7em;
  height: 1.7em;
  margin-block-start: .12em;
  border-radius: 50%;
  background-image: var(--g-brand);
  color: var(--c-white);
  box-shadow: var(--sh-brand-sm);
}

.benefit__icon svg {
  width: .78em;
  height: .78em;
}

.benefit__text {
  min-width: 0;
  color: var(--c-ink);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  overflow-wrap: break-word;
  hyphens: manual;
}

.section--dark .benefit,
.section--gradient .benefit {
  border-color: var(--c-line-dark);
  background-color: var(--c-glass-light);
}

.section--dark .benefit__text,
.section--gradient .benefit__text {
  color: var(--c-on-dark-2);
}

.product-details__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block-start: var(--sp-5);
  border-top: 1px solid var(--c-line-light);
}

.product-details__foot .price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-1);
  margin: 0;
}

.product-details__foot .price__label {
  color: var(--c-brand);
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
}

.product-details__foot .price__value {
  color: var(--c-ink);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-head);
}

.product-details__foot .btn {
  flex: 1 1 100%;
  border-radius: var(--r-pill);
}

.video-product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-block-start: var(--sp-5);
  padding: var(--sp-5);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-2xl);
  background-color: var(--c-glass-light);
  box-shadow: var(--sh-hair-dark);
}

@supports (backdrop-filter: blur(1px)) {
  .video-product {
    backdrop-filter: blur(14px) saturate(120%);
  }
}

.video-product__label {
  margin: 0;
  color: var(--c-sky);
  font-family: var(--f-head);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-caps);
  line-height: var(--lh-snug);
  text-transform: uppercase;
}

.video-product__title {
  margin: 0;
  color: var(--c-on-dark);
  font-family: var(--f-head);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  line-height: var(--lh-head);
  letter-spacing: var(--ls-head);
  text-wrap: pretty;
  overflow-wrap: break-word;
  hyphens: manual;
}

.video-product__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}

.video-product__title a:hover {
  color: var(--c-sky);
}

.video-product__title a:focus-visible {
  outline: 2px solid var(--c-azure);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.video-product__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-1);
  max-width: 100%;
  margin: 0;
  color: var(--c-on-dark);
  font-family: var(--f-head);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  line-height: var(--lh-head);
  letter-spacing: var(--ls-head);
  overflow-wrap: break-word;
}

.video-product__price-label {
  color: var(--c-on-dark-3);
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-caps);
  line-height: var(--lh-snug);
  text-transform: uppercase;
}

.video-product > .btn {
  width: 100%;
  margin-block-start: var(--sp-2);
  border-radius: var(--r-pill);
}

.page--product .grid.grid--cards[data-testimonials] {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.page--product .testimonial,
.page--product .testimonial__text,
.page--product .testimonial__author,
.page--product .testimonial__role,
.page--product .testimonial__product {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

@media (min-width: 300px) {
  .product-hero {
    gap: var(--sp-6);
  }

  .product-details__summary {
    padding-inline-end: calc(var(--sp-5) + 3.4em);
  }
}

@media (min-width: 515px) {
  .product-hero__actions .btn,
  .product-details__foot .btn,
  .video-product > .btn {
    flex: 0 0 auto;
    width: auto;
  }

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

  .benefits {
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  }

  .product-details__body {
    padding: var(--sp-6);
  }

  .product-details__summary {
    padding: var(--sp-5) var(--sp-6);
    padding-inline-end: calc(var(--sp-6) + 3.6em);
  }

  .product-details__summary::before {
    inset-inline-end: var(--sp-5);
  }

  .product-details__summary::after {
    inset-inline-end: calc(var(--sp-5) + .85em);
  }
}

@media (min-width: 920px) {
  .product-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: var(--sp-7);
    align-items: center;
    margin-block-start: var(--sp-6);
  }

  .details-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--sp-5);
  }

  .product-details__body {
    gap: var(--sp-7);
    padding: var(--sp-7);
  }

  .video-product {
    padding: var(--sp-6);
  }
}

@media (min-width: 1200px) {
  .product-hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr);
    gap: var(--sp-8);
  }

  .product-hero__body {
    gap: var(--sp-5);
  }

  .product-details__summary {
    padding-inline: var(--sp-7);
    padding-inline-end: calc(var(--sp-7) + 3.6em);
  }

  .product-details__summary::before {
    inset-inline-end: var(--sp-6);
  }

  .product-details__summary::after {
    inset-inline-end: calc(var(--sp-6) + .85em);
  }

  .product-details__body {
    padding: var(--sp-8);
  }
}

@media (min-width: 2000px) {
  .product-hero__title {
    max-width: 18ch;
  }

  .details-block {
    padding: var(--sp-5);
  }

  .benefit {
    padding: var(--sp-4) var(--sp-5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-details__summary,
  .product-details__summary::before,
  .product-details__summary::after,
  .details-block,
  .benefit,
  .video-product__title a {
    transition: none;
  }

  .product-details[open] .product-details__body {
    animation: none;
  }
}
