.o-product__content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  grid-template-areas: "media" "information" "media-info";
}
@media screen and (min-width: 990px) {
  .o-product__content {
    grid-template-rows: auto auto;
    grid-template-areas: "media information" "media-info information";
    gap: 2rem 8rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 990px) and (min-width: 1250px) {
  .o-product__content {
    gap: 4rem 12rem;
  }
}
@media screen and (min-width: 990px) and (min-width: 1440px) {
  .o-product__content {
    gap: 4rem 16rem;
  }
}
@media screen and (min-width: 990px) {
  .o-product__content[data-content-size="5"] {
    grid-template-columns: 1.25fr 1fr;
  }
}
@media screen and (min-width: 990px) {
  .o-product__content[data-content-size="6"] {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 990px) {
  .o-product__content[data-content-size="7"] {
    grid-template-columns: 1fr 1.25fr;
  }
}
@media screen and (min-width: 990px) {
  .o-product__content:has(.o-product__media--right) {
    grid-template-areas: "information media" "information media-info";
  }
}
.o-product__media {
  grid-area: media;
  margin-bottom: 0;
  margin-left: calc(var(--layout-site-padding) * -1);
  margin-right: calc(var(--layout-site-padding) * -1);
  min-width: 0;
  width: 100vw;
}
@media screen and (min-width: 990px) {
  .o-product__media {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.o-product__media-info-wrapper {
  grid-area: media-info;
  min-width: 0;
}
@media screen and (min-width: 990px) {
  .o-product__media-info-wrapper {
    width: 100%;
  }
}
.o-product__media-info > * + * {
  margin-top: 1rem;
}
.o-product__information {
  grid-area: information;
  min-width: 0;
}
@media screen and (min-width: 990px) {
  .o-product__information {
    width: 100%;
  }
}
@media screen and (min-width: 990px) {
  .o-product__information--sticky {
    position: sticky;
    overflow-y: auto;
    overflow-x: hidden;
    transition: top var(--default-transition-easing) var(--default-transition-timing);
    bottom: 3rem;
    align-self: flex-end;
    overflow-y: hidden;
  }
}
.o-product__information-block {
  display: flex;
  gap: 0.3rem 1rem;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 1250px) {
  .o-product__information-block {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.o-product__information-block h1,
.o-product__information-block h2 {
  margin-bottom: 0;
}
.o-product__information-block .o-product__usp {
  order: 1;
}
@media screen and (min-width: 1250px) {
  .o-product__information-block .o-product__usp {
    order: 2;
    margin-top: 1rem;
  }
}
.o-product__information-block-content {
  order: 2;
}
@media screen and (min-width: 1250px) {
  .o-product__information-block-content {
    order: 1;
  }
}
.o-product__title h1 {
  margin-bottom: 0;
}
.o-product__share {
  gap: 1rem;
}
.o-product__accordion .m-accordion__text {
  padding-top: 0;
}
.o-product__accordion .m-accordion__content {
  width: 100%;
}
.o-product__trust {
  gap: 0.8rem 1.6rem;
  flex-wrap: wrap;
}
.o-product__trust-item {
  display: flex;
  align-self: center;
  gap: 0.8rem;
}
.o-product__trust-item.body-fs-sm .icon, .o-product__trust-item.body-fs-xs .icon {
  width: 1.6rem;
  height: 1.6rem;
}
.o-product__trust-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.o-product__trust-label p:last-child {
  margin-bottom: 0;
}
.o-product__volume-select-inner {
  padding: 0.2rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.o-product__volume-select-item {
  padding: 1rem 1.6rem;
  border-radius: 1rem;
  background-color: inherit;
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  flex-wrap: wrap;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: max-content;
}
.o-product__volume-select-item.active {
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-text));
}
.o-product__volume-select-badge {
  white-space: nowrap;
  padding: 0.4rem 0.8rem;
  border-radius: 1rem;
  display: none;
}
@media screen and (min-width: 990px) {
  .o-product__volume-select-badge {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

body.u-sticky-header-hidden .o-product__information--sticky, body.u-no-sticky-header .o-product__information--sticky {
  top: 0;
}
