.video-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.video-hero__media {
  position: relative;
  width: 100vw;
  line-height: 0;
}

.video-hero__video {
  display: block;
  width: 100vw;
  height: auto;
}

.video-hero__video--desktop {
  display: none;
}

.video-hero__video--mobile {
  display: block;
}

@media (min-width: 992px) {
  .video-hero__video--desktop {
    display: block;
  }

  .video-hero__video--mobile {
    display: none;
  }
}

.video-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-hero__box {
  position: absolute;
  left: 50%;
  top: 64%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  margin: 0;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 2.5vw, 20px) clamp(20px, 8vw, 72px);
  min-height: clamp(52px, 12vw, 70px);
  width: max-content;
  max-width: calc(100vw - 32px);
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 18px;
  background: rgba(30, 30, 30, 0.15);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  text-align: center;
  scrollbar-width: thin;
}

.video-hero__caption {
  margin: 0;
  font-size: clamp(16px, 2.2vw + 8px, 30px);
  line-height: 1;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
}

.video-hero__caption-regular {
  font-weight: 400;
}

.video-hero__caption-strong {
  font-weight: 600;
}

@media (max-width: 640px) {
  .video-hero__box {
    padding-inline: clamp(14px, 4vw, 24px);
  }
}

.carousel {
  --visible-count: 1;
  --slide-gap: 0;
  --slide-offset-percent: 0;
  --slide-offset-px: 0;
  width: 100%;
  position: relative;
}

.carousel--fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.carousel__button {
  position: absolute;
  top: 50%;
  width: 32px;
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
  z-index: 2;
}

.carousel__button img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel__button:focus-visible {
  outline: 2px solid var(--color-base);
  outline-offset: 2px;
}

.carousel__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.carousel__button--prev {
  left: 9px;
}

.carousel__button--next {
  right: 9px;
}

.carousel__viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.carousel.is-dragging .carousel__viewport {
  cursor: grabbing;
}

.carousel__track {
  display: flex;
  gap: var(--slide-gap);
  will-change: transform;
  transform: translate3d(calc(var(--slide-offset-px) * -1px), 0, 0);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
  align-items: stretch;
}

.carousel__slide {
  flex: 0 0 100vw;
  width: 100vw;
  max-width: 100vw;
  padding: 50px;
  background: var(--color-bg);
  border: none;
  box-shadow: none;
}

.carousel__slide h2 {
  margin: 0 0 1rem;
}

.carousel__slide p {
  margin: 0 0 1rem;
  color: var(--color-base);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .carousel__slide {
    padding: 20px;
  }

  .carousel__button {
    width: 12px;
  }

  .carousel__button--prev {
    left: 2px;
  }

  .carousel__button--next {
    right: 2px;
  }
}

.carousel {
  --visible-count: 1;
  --slide-gap: 0;
  --slide-offset-percent: 0;
  width: 100vw;
  position: relative;
}

.carousel__button {
  position: absolute;
  top: 50%;
  width: 32px;
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
  z-index: 2;
}

.carousel__button img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel__button:focus-visible {
  outline: 2px solid var(--color-base);
  outline-offset: 2px;
}

.carousel__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.carousel__button--prev {
  left: 9px;
}

.carousel__button--next {
  right: 9px;
}

.carousel__viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.carousel.is-dragging .carousel__viewport {
  cursor: grabbing;
}

.carousel__track {
  display: flex;
  gap: var(--slide-gap);
  will-change: transform;
  transform: translate3d(calc(var(--slide-offset-px) * -1px), 0, 0);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
  align-items: stretch;
}

.carousel__slide {
  flex: 0 0 100vw;
  width: 100vw;
  max-width: 100vw;
  padding: 50px;
  background: var(--color-bg);
  border: none;
  box-shadow: none;
}

.carousel__slide h2 {
  margin: 0 0 1rem;
}

.carousel__slide p {
  margin: 0 0 1rem;
  color: var(--color-base);
  line-height: 1.6;
}

.impact__title {
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.impact__title strong {
  font-weight: 700;
}

.impact__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.impact__item {
  --impact-item-size: 120px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.impact__tag {
  background: #ffffff;
  color: var(--color-base);
  text-align: center;
}

.impact__tag--left {
  width: var(--impact-item-size);
  min-width: var(--impact-item-size);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  padding: 24px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
}

.impact__item:nth-child(3) .impact__tag--left,
.impact__item:nth-child(5) .impact__tag--left {
  font-size: 14px;
  line-height: 16px;
}

.impact__tag--right {
  flex: 1;
  border-radius: 999px;
  padding: 24px;
  font-size: clamp(0.95rem, 1.5vw, 1.6rem);
  line-height: 1.2;
  min-height: var(--impact-item-size);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__slide--protection {
  padding-inline: 60px;
  display: flex;
  align-items: center;
}

.protection {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 0.85fr);
  gap: clamp(24px, 2.4vw, 36px);
  align-items: center;
  width: 100%;
}

.protection__diagram {
  --ring-size: clamp(460px, 36vw, 580px);
  position: relative;
  min-height: clamp(560px, 44vw, 680px);
  min-width: 0;
  padding-inline: clamp(20px, 2.2vw, 34px);
}

.protection__ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(100%, var(--ring-size));
  height: min(100%, var(--ring-size));
  transform: translate(-50%, -50%);
  border: 1px solid color-mix(in srgb, var(--color-base) 55%, #ffffff);
  border-radius: 50%;
}

.protection__node {
  position: absolute;
  max-width: clamp(210px, 14vw, 300px);
  font-size: 30px;
  line-height: 1.25;
  z-index: 1;
  background: var(--color-bg);
  padding: 20px;
}

.protection__node h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.protection__node p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.protection__node strong {
  font-weight: 700;
}

.protection__node::after {
  display: none;
}

.protection__node--top {
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - (var(--ring-size) / 2)));
}

.protection__node--left {
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - (var(--ring-size) / 2)), -50%);
}

.protection__node--right {
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + (var(--ring-size) / 2)), -50%);
  max-width: clamp(180px, 20vw, 300px);
}

.protection__node--bottom {
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + (var(--ring-size) / 2)));
}

.protection__checks {
  display: flex;
  flex-direction: column;
  gap: 38px;
  min-width: 0;
}

@media (min-width: 992px) and (max-width: 1240px) {
  .protection {
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 0.75fr);
    gap: 20px;
  }

  .protection__diagram {
    --ring-size: clamp(430px, 34vw, 500px);
    min-height: clamp(520px, 42vw, 620px);
    padding-inline: 18px;
  }

  .protection__node {
    max-width: 200px;
    padding: 12px 14px;
  }

  .protection__node h3 {
    margin-bottom: 8px;
  }
}

.protection__check {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.protection__check img {
  width: 36px;
  height: 36px;
}

.protection__check p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .impact__list {
    gap: 12px;
  }

  .carousel__slide {
    padding: 20px;
  }

  .carousel__slide--protection {
    padding-inline: 20px;
  }

  .carousel__button {
    width: 12px;
  }

  .carousel__button--prev {
    left: 2px;
  }

  .carousel__button--next {
    right: 2px;
  }

  .impact__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
  }

  .impact__tag--left {
    margin: 0;
  }

  .impact__tag--left,
  .impact__tag--right {
    background: transparent;
    padding: 0;
    text-align: left;
  }

  .impact__tag--left {
    width: 100%;
    aspect-ratio: auto;
    font-size: 20px;
    line-height: 20px;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .impact__item:nth-child(3) .impact__tag--left,
  .impact__item:nth-child(5) .impact__tag--left {
    font-size: 20px;
    line-height: 20px;
  }

  .impact__tag--right {
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
  }

  .impact__title {
    font-size: 24px;
  }

  .protection {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .protection__diagram {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-inline: 0;
    position: relative;
  }

  .protection__diagram::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: color-mix(in srgb, var(--color-base) 35%, #ffffff);
    z-index: 0;
  }

  .protection__ring {
    display: none;
  }

  .protection__node {
    position: static;
    transform: none;
    max-width: none;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    z-index: 1;
  }

  .protection__node::after {
    display: none;
  }

  .protection__node h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .protection__node p {
    font-size: 16px;
  }

  .protection__checks {
    gap: 16px;
  }

  .protection__check {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .protection__check img {
    width: 32px;
    height: 32px;
  }

  .protection__check p {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .impact__title {
    font-size: 20px;
  }
}

.impact__title {
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.impact__title strong {
  font-weight: 700;
}

.impact__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.impact__item {
  --impact-item-size: 120px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.impact__tag {
  background: #ffffff;
  color: var(--color-base);
  text-align: center;
}

.impact__tag--left {
  width: var(--impact-item-size);
  min-width: var(--impact-item-size);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  padding: 24px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
}

.impact__item:nth-child(3) .impact__tag--left,
.impact__item:nth-child(5) .impact__tag--left {
  font-size: 14px;
  line-height: 16px;
}

.impact__tag--right {
  flex: 1;
  border-radius: 999px;
  padding: 24px;
  font-size: clamp(0.95rem, 1.5vw, 1.6rem);
  line-height: 1.2;
  min-height: var(--impact-item-size);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__slide--protection {
  padding-inline: 60px;
  display: flex;
  align-items: center;
}

.protection {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 0.85fr);
  gap: clamp(24px, 2.4vw, 36px);
  align-items: center;
  width: 100%;
}

.protection__diagram {
  --ring-size: clamp(460px, 36vw, 580px);
  position: relative;
  min-height: clamp(560px, 44vw, 680px);
  min-width: 0;
  padding-inline: clamp(20px, 2.2vw, 34px);
}

.protection__ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(100%, var(--ring-size));
  height: min(100%, var(--ring-size));
  transform: translate(-50%, -50%);
  border: 1px solid color-mix(in srgb, var(--color-base) 55%, #ffffff);
  border-radius: 50%;
}

.protection__node {
  position: absolute;
  max-width: clamp(210px, 14vw, 300px);
  font-size: 30px;
  line-height: 1.25;
  z-index: 1;
  background: var(--color-bg);
  padding: 20px;
}

.protection__node h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.protection__uva {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.35em;
  height: 2.35em;
  padding: 0;
  margin-inline: 0.1em;
  line-height: 1;
  vertical-align: middle;
}

.protection__uva::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-base);
  border-radius: 50%;
  transform: translateY(-0.05em);
}

.protection__node p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.protection__node strong {
  font-weight: 700;
}

.protection__node::after {
  display: none;
}

.protection__node--top {
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - (var(--ring-size) / 2)));
}

.protection__node--left {
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - (var(--ring-size) / 2)), -50%);
}

.protection__node--right {
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + (var(--ring-size) / 2)), -50%);
  max-width: clamp(180px, 20vw, 300px);
}

.protection__node--bottom {
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + (var(--ring-size) / 2)));
}

.protection__checks {
  display: flex;
  flex-direction: column;
  gap: 38px;
  min-width: 0;
}

.protection__check {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.protection__check img {
  width: 36px;
  height: 36px;
}

.protection__check p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

@media (min-width: 992px) and (max-width: 1240px) {
  .protection {
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 0.75fr);
    gap: 20px;
  }

  .protection__diagram {
    --ring-size: clamp(430px, 34vw, 500px);
    min-height: clamp(520px, 42vw, 620px);
    padding-inline: 18px;
  }

  .protection__node {
    max-width: 220px;
    padding: 12px 14px;
  }

  .protection__node h3 {
    margin-bottom: 8px;
  }
}

@media (max-width: 991px) {
  .impact__list {
    gap: 12px;
  }

  .impact__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
  }

  .impact__tag--left {
    margin: 0;
  }

  .impact__tag--left,
  .impact__tag--right {
    background: transparent;
    padding: 0;
    text-align: left;
  }

  .impact__tag--left {
    width: 100%;
    aspect-ratio: auto;
    font-size: 20px;
    line-height: 20px;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .impact__item:nth-child(3) .impact__tag--left,
  .impact__item:nth-child(5) .impact__tag--left {
    font-size: 20px;
    line-height: 20px;
  }

  .impact__tag--right {
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
  }

  .impact__title {
    font-size: 24px;
  }

  .carousel__slide--protection {
    padding-inline: 20px;
  }

  .protection {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .protection__diagram {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-inline: 0;
    position: relative;
  }

  .protection__diagram::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: color-mix(in srgb, var(--color-base) 35%, #ffffff);
    z-index: 0;
  }

  .protection__ring {
    display: none;
  }

  .protection__node {
    position: static;
    transform: none;
    max-width: none;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    z-index: 1;
  }

  .protection__node--left {
    order: 1;
  }

  .protection__node--bottom {
    order: 2;
  }

  .protection__node--right {
    order: 3;
  }

  .protection__node--top {
    order: 4;
  }

  .protection__node::after {
    display: none;
  }

  .protection__node h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .protection__node p {
    font-size: 16px;
  }

  .protection__checks {
    gap: 16px;
  }

  .protection__check {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .protection__check img {
    width: 32px;
    height: 32px;
  }

  .protection__check p {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .impact__title {
    font-size: 20px;
  }
}

.carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

.product-list {
  padding: 50px;
  background: #ffffff;
}

.product-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-list__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
}

.product-list__title strong {
  font-weight: 600;
}

.product-list__badge {
  display: block;
  width: auto;
  height: clamp(68px, 7vw, 120px);
  object-fit: contain;
  flex-shrink: 0;
}

.product-filter {
  margin-top: 24px;
  background: #f3f3f3;
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow-x: auto;
}

.product-filter__item {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #575653;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

.product-filter__item.is-active {
  font-weight: 600;
}

.product-carousel {
  --slide-gap: 16px;
  margin-top: 24px;
  width: 100%;
  max-width: 100%;
}

.product-carousel .carousel__track {
  gap: var(--slide-gap);
}

.product-carousel .carousel__slide {
  flex: 0 0 calc((100% - (var(--visible-count) - 1) * var(--slide-gap)) / var(--visible-count));
  width: auto;
  max-width: none;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.product-carousel__slide h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-carousel__slide p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.product-card {
  flex: 1;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
}

.product-card__media {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 16px auto;
  overflow: hidden;
  background: #ffffff;
}

.product-card__media::before {
  content: "";
  display: block;
  grid-row: 1;
  grid-column: 1;
  height: 16px;
  pointer-events: none;
}

.product-card__media img {
  grid-row: 2;
  grid-column: 1;
  display: block;
  width: 100%;
  height: auto;
  align-self: end;
  transition: opacity 220ms ease;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  position: relative;
  z-index: 2;
}

.product-card__overlay {
  grid-row: 2;
  grid-column: 1;
  align-self: start;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  position: relative;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  color: var(--color-base);
  background: #ffffff;
  z-index: 1;
}

.product-card__details-row {
  border-top: 1px solid #1a1a1a;
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.product-card__details-row--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: flex-start;
  gap: 12px;
}

.product-card__details-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}

.product-card__details-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.product-card__details-row--split .product-card__details-content {
  align-items: flex-end;
  text-align: right;
}

.product-card__details-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
}

.product-card__meta {
  display: flex;
  flex-shrink: 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.product-card__title {
  margin: 0;
  min-height: 115px;
  line-height: 1.15;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2px;
}

.product-card__title-line {
  display: block;
  text-transform: uppercase;
}

.product-card__title-line--1 {
  font-size: 20px;
  font-weight: 700;
}

.product-card__title-line--2 {
  font-size: 20px;
  font-weight: 400;
}

.product-card__title-line--3 {
  font-size: 18px;
  font-weight: 400;
}

.product-card__toggle {
  position: relative;
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.product-card__toggle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--color-base);
  transform: translate(-50%, -50%);
}

.product-card__toggle-line--vertical {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease;
}

.product-carousel__slide--expandable.is-open .product-card__media img {
  opacity: 0;
  z-index: 1;
}

.product-carousel__slide--expandable.is-open .product-card__overlay {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.product-carousel__slide--expandable.is-open .product-card__toggle-line--vertical {
  transform: translate(-50%, -50%) rotate(0deg);
}

.product-carousel__button {
  width: 18px;
}

.product-carousel .carousel__button--prev {
  left: 12px;
}

.product-carousel .carousel__button--next {
  right: 12px;
}

@media (max-width: 991px) {
  .product-list {
    padding: 20px;
  }

  .product-list__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-list__title {
    font-size: 24px;
  }

  .product-list__badge {
    height: 80px;
  }

  .product-filter {
    gap: 12px 18px;
    padding: 16px;
    flex-wrap: wrap;
  }
  
  .product-filter__item {
    font-size: 14px;
  }

  .product-carousel {
    --slide-gap: 12px;
  }

  .product-carousel .carousel__slide {
    padding: 16px;
  }

  .product-card__overlay {
    padding: 0;
  }

  .product-card__details-row {
    padding: 12px 0;
    gap: 6px;
  }

  .product-card__details-title {
    font-size: 16px;
  }

  .product-card__details-content p {
    font-size: 14px;
  }

  .product-card__details-row--split {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-card__details-row--split .product-card__details-content {
    align-items: flex-start;
    text-align: left;
  }

  .product-carousel__button {
    width: 12px;
  }

  .product-carousel .carousel__button--prev {
    left: 6px;
  }
  
  .product-carousel .carousel__button--next {
    right: 6px;
  }
}

@media (max-width: 640px) {
  .product-list__title {
    font-size: 20px;
  }
}