html {
  --gap-content: clamp(2rem, 4vw, 4.5rem);
  --flex-basis: 288px;
}
.maxwidth .page-top {
  padding-bottom: 8px;
}
@media (min-width: 992px) {
  .page-top,
  .products-footer {
    max-width: calc(100% - var(--flex-basis) - var(--gap-content));
  }
}

/* content */
.content {
  display: flex;
  gap: var(--gap-content);
}

.content img:not(.products-list__item-image):not(.rounded) {
  border-radius: 12px;
}

@media (max-width: 991px) {
  .content {
    flex-direction: column-reverse;
  }
  .content__aside:not(:has(*)){
    display:none;
  }
}

.content__article {
  flex: 1 1 auto;
}
.content__article .wide-video {
  min-height: 0;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}
.content__article .wide-video img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.content__article > :first-child {
  margin-top: 0;
}

.content__aside {
  flex: 0 0 var(--flex-basis);
}

@media (max-width: 992px) {
  .content__aside {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .content__aside:not(:has(*)){
    display:none;
  }
}

.content__image {
  aspect-ratio: 27 / 16;
  margin-bottom: 1.25rem;
}

.emphasize {
  font-size: var(--fs-20);
  line-height: var(--fs-20-line-height);
  color: var(--title-color);
  margin: 1.25rem 0;
}

.highlight {
  color: var(--title-color);
  font-weight: 500;
  margin: clamp(var(--g9-mobile), 2.5vw, var(--g9-desktop)) 0;
  padding-left: clamp(1.5rem, 2vw, 2rem);
  border-left: 2px solid var(--blue-shade-1);
  font-size: var(--fs-20);
}

/* topbar */
.topbar {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 864px;
}

@media (max-width: 600px) {
  .topbar {
    gap: 1rem;
    align-items: flex-start;
  }
}

.topbar__left {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
}

.topbar__back {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.topbar__back svg,
.topbar__back use {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.topbar__back svg path,
.topbar__back use {
  transition: stroke 0.3s ease;
  stroke: var(--title-color);
}

@media (any-hover: hover) {
  .topbar__back:hover {
    color: var(--blue-hover);
  }

  .topbar__back:hover svg path,
  .topbar__back:hover use {
    stroke: var(--blue-hover);
  }
}

.topbar__item {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.topbar__item svg,
.topbar__item use {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  stroke: var(--title-color);
}

.topbar__interact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* like */
.like {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  border: 0;
}

@media (any-hover: hover) {
  .like:hover .like__icon path,
  .like:hover .like__icon use {
    stroke: var(--blue-shade-1);
  }
}

.like--pressed .like__icon path,
.like--pressed .like__icon use {
  fill: var(--blue-shade-1);
  stroke: var(--blue-shade-1);
}

.like__icon,
.like__icon > svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.like__icon path,
.like__icon use {
  transition: stroke 0.3s ease, fill 0.3s ease;
  stroke: var(--title-color);
  fill: none;
}

/* aside */
.aside__contents {
  position: sticky;
  top: 100px;
}

.aside__item {
  padding-left: 0.75rem;
}

.aside__item::before {
  top: 9px;
}

.aside__item a {
  display: block;
}

@media (any-hover: hover) {
  .aside__link:hover {
    color: var(--blue-hover);
  }
}

@media (min-width: 992px) {
  .aside__item--current .aside__link {
    color: var(--blue);
  }
}

/* quote */
.quote {
  margin: clamp(var(--g9-mobile), 2.5vw, var(--g9-desktop)) 0;
  padding: clamp(var(--g8-mobile), 2vw, var(--g8-desktop))
    clamp(var(--g8-mobile), 2vw, var(--g8-desktop))
    clamp(var(--g8-mobile), 2vw, var(--g8-desktop))
    clamp(var(--g9-mobile), 3vw, var(--g9-desktop));
  border: 1px solid var(--grey-shade-5);
  position: relative;
}

.quote__text {
  font-size: var(--fs-18);
  line-height: var(--fs-18-line-height);
  color: var(--title-color);
  font-weight: 500;
}

.quote__name {
  margin-top: clamp(var(--g5-mobile), 2vw, var(--g5-desktop));
  font-size: var(--fs-15);
  line-height: var(--fs-15-line-height);
  color: var(--title-color);
}

.quote__position {
  color: var(--grey);
  font-size: var(--fs-13);
  line-height: var(--fs-13-line-height);
}

.quote__decor {
  background: url("img/quote.svg") center / cover no-repeat;
  position: absolute;
  top: 40px;
  left: -10px;
  width: 20px;
  height: 15px;
}

/* comments */
.comments__more {
  color: var(--blue-shade-1);
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
}

.comments__item {
  border-bottom: 1px solid var(--grey-shade-8);
  padding-bottom: 0.25rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.comments__btn {
  width: 100%;
}

.comments__form {
  gap: var(--g4);
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* comment */
.comment {
  container-type: inline-size;
  width: 100%;
}

.comment__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@container (width < 400px) {
  .comment__top {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }
}

.comment__name {
  color: var(--dark);
}

.comment__date {
  color: var(--muted);
}

.comment__text {
  margin-top: 0.5rem;
  color: var(--basic);
}

.comment__text p {
  margin: 0.5rem 0;
  font-size: var(--fs-16);
  line-height: var(--fs-16-line-height);
}

.comment__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.comment__wrap {
  flex: 1 1 100%;
}

.comment__answer {
  color: var(--dark);
  position: relative;
}

.comment__answer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1px dotted var(--dark);
}

@media (any-hover: hover) {
  .comment__answer:hover {
    color: var(--blue-shade-2);
  }
  .comment__answer:hover::after {
    border-color: var(--blue-shade-2);
  }
}

.comment__appendix {
  display: flex;
  gap: clamp(0.5rem, 1.5vw, 1rem);
}

.comment__reply-to,
.comment__reply-to svg,
.comment__reply-to use {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.comment__reply-to svg {
  position: relative;
  top: 4px;
}

.swiper-container .swiper-wrapper {
  box-sizing: border-box;
}

.swiper-container .swiper-slide {
  height: auto;
}

.heading-section {
  position: relative;
  padding-right: 100px;
}

.heading-section h3 {
  margin: 0;
}

.heading-section .swiper-button-prev,
.heading-section .swiper-button-next {
  background-color: #f7f7fb;
  margin-top: 0;
  transform: translateY(-50%);
}

.heading-section__swiper-button-next,
.heading-section__swiper-button-prev {
  transition: border-color 0.3s ease;
  border: 1px solid transparent;
}


.heading-section__swiper-button-next::after,
.heading-section__swiper-button-prev::after {
  display: none;
}

.heading-section__swiper-button-next.swiper-button-next {
  right: 0;
  border-radius: 50%;
}

.heading-section__swiper-button-prev.swiper-button-prev {
  left: unset;
  right: 48px;
  border-radius: 50%;
}

.heading-section__swiper-button-next svg,
.heading-section__swiper-button-next use,
.heading-section__swiper-button-prev svg,
.heading-section__swiper-button-prev use {
  width: 40px;
  height: 40px;
  stroke: var(--title-color);
  transition: stroke 0.1s ease;
}

@media (any-hover: hover) {
  .heading-section__swiper-button-next:hover,
  .heading-section__swiper-button-prev:hover {
    background-color: var(--color-base);
  }

  .heading-section__swiper-button-next:hover svg,
  .heading-section__swiper-button-next:hover use,
  .heading-section__swiper-button-prev:hover svg,
  .heading-section__swiper-button-prev:hover use {
    stroke: var(--white);
  }
}

.blog-materials {
  min-width: 0;
}
.img-quote {
  width: 28px;
  height: 22px;
}
.aside__icon img {
  width: 288px;
  height: 288px;
  object-fit: cover;
}
.product-icon {
  width: 48px;
  height: 48px;
}

.topbar__item {
  padding-right: 0.9375rem;
  margin-right: 0.75rem;
  --bg-color-breadcrumbs: #989aa0;
  --color-breadcrumbs: var(--title-color);
}
.review-description p {
  line-height: var(--fs-16-line-height);
}
.banners__button-wrap {
  margin-left: 48px;
}
@media (max-width: 991px) {
  .review-add {
    flex-direction: column;
    gap: 1rem;
  }
  .banners__button-wrap {
    margin-left: 0;
  }
}
@media (max-width: 990px) {
  .content__aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    flex: auto;
  }
  .content__aside:not(:has(*)){
    display:none;
  }

  .aside-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
  }
  .setvices-container .setvices-title {
    margin-top: 48px;
  }
  .aside__icon {
    width: 49%;
  }
  .aside-info > .aside__icon:only-child {
    width: 100%;
  }
  .aside__icon img {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    object-fit: cover;
  }
  .aside-info > .aside__icon:only-child img {
    width: 100%;
    height:480px;
    object-fit: cover;
  }
  .content__aside .review-product {
    flex: 1;
    margin-top: 0;
  }
  .review-product a {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 625px) {
  .aside-info {
    flex-direction: column;
  }
  .aside__icon {
    width: 100%;

  }
  .aside__icon img {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    object-fit: cover;
  }
  .aside-info > .aside__icon:only-child img {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    object-fit: cover;
  }
  .reviews-item-footer-logo div {
    margin-top: 24px;
  }
  .content__aside .review-product {
    padding: 24px;
  }
  .review-tizers-container .review-tizers {
    overflow-x: auto;
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .review-tizers .review-tizer {
    width: 240px;
    min-width: 240px;
  }
}
.servisec-item:not(:first-child) {
  border-top: 1px solid var(--stroke);
}
@media (max-width: 400px) {
  .review-product a {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
  }
}
.topbar__item{
  position: relative;
}
.topbar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background-color: var(--bg-color-breadcrumbs);
  opacity: 0.24;
}