:root {
  --main: #e8640b;
  --orange: #e8640b;
  --orange-dark: #cc4a0a;
  --black: #152649;
  --black-sec: #4c5367;
  --blue: #1d4b90;
  --gray-sec: #91979e;
  --light-gray: #e4e7ed;
  --light-gray-sec: #c3cbda;
  --light-gray-bg: #f5f7fa;
  --light-pink: #f8d0b6;
  --shadow: 0px 8px 12px 0px #282c301f;
}
*,
::after,
::before {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.main {
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1464px;
  margin-inline: auto;
  padding: 0 2rem;
  @media (width <= 768px) {
    padding: 0 1rem;
  }
}
.section {
  padding: 2rem 0;
  &:last-child {
    padding-bottom: 4rem;
  }
  .section-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    &.--col {
      flex-direction: column;
    }
    .title_block {
      margin-bottom: 0;
    }
    .page-data {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      font-size: 0.875rem;
      line-height: 1.4285714285714286;
      font-weight: 600;
    }
  }
  .section-title {
    font-size: 2.5em;
    line-height: 1.2;
    font-weight: 600;
    color: var(--black);
  }
  @media (width <= 768px) {
    padding: 1rem 0;
    &:last-child {
      padding-bottom: 2rem;
    }
    .section-header {
      margin-bottom: 1rem;
      .ico-link {
        span {
          span {
            display: none;
          }
        }
      }
    }
    .section-title {
      font-size: 1.375em;
    }
  }
}

.title_block {
  margin-bottom: 2rem;
  color: var(--black);
  @media (width <= 768px) {
    margin-bottom: 1rem;
  }
}
.white-block__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  @media (width <= 768px) {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
}
.white-block {
  box-shadow: 0px 0px 12px 0px #282c301f;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #fff;
  .white-block__title {
    margin-bottom: 1.5rem;
  }
  @media (width <= 768px) {
    padding: 1rem;
    .white-block__title {
      margin-bottom: 1rem;
    }
  }
}
a {
  transition: color 0.2s ease;
}
.orange-link {
  color: var(--orange);
  &:hover {
    color: var(--orange-dark);
  }
}
.ico-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 1.4285714285714286;
  font-weight: 600;
  color: var(--black);
  svg {
    width: 1.5rem;
    height: 1.5rem;
    margin: -0.25rem 0;
  }
  &:hover {
    color: var(--orange);
  }
}
.svg-defs,
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  z-index: -100;
}

/*  */
/* catalog-sections */
/*  */
.catalog-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  .catalog-sections__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    border: 1px solid var(--light-gray);
    color: var(--black);
    transition: color 0.2s ease;
    transition-property: color, background-color;
    &.--active {
      color: #fff;
      background: var(--blue);
      border: 1px solid var(--blue);
    }
    &:hover,
    &:active {
      color: #fff;
      background: var(--blue);
      border: 1px solid var(--blue);
    }
  }
  .gd-select {
    display: none;
    width: 100%;
  }
  @media (width < 768px) {
    .catalog-sections__item {
      display: none;
    }
    .gd-select {
      display: block;
    }
  }
}

/*  */
/* catalog-grid */
/*  */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(284px, 1fr));
  gap: 1.5rem;
  .catalog-showmore {
    grid-column: 1 / -1;
    text-align: center;
    @media (width < 768px) {
      .btn {
        width: 100%;
      }
    }
  }
}

/*  */
/* catalog-slider */
/*  */
.catalog-slider {
  .swiper {
    padding: 1.5rem 0.75rem;
    margin: -1.5rem -0.75rem;
    &:not(.swiper-initialized) .swiper-slide:not(:first-child) {
      display: none;
    }
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: absolute;
    .catalog-slider:not(:has(.swiper-initialized)) & {
      display: none;
    }
  }
  .product-card {
    width: 332px;
    &:not(:last-child) {
      margin-right: 1.5rem;
    }
  }
  .product-card.--inline {
    width: calc(50% - 0.75rem);
    height: 18.5rem;
    &:not(:last-child) {
      margin-right: 1.5rem;
    }
  }
  @media (width < 1024px) {
    .product-card.--inline {
      height: auto;
    }
  }
  @media (width < 768px) {
    .swiper-button-next,
    .swiper-button-prev {
      display: none;
    }
    .swiper-pagination {
      display: none;
    }
    .product-card.--inline {
      width: 18.75rem;
      height: auto;
      &:not(:last-child) {
        margin-right: 1rem;
      }
      .product-card__desc {
        display: none;
      }
    }
  }
}

/*  */
/* product-card */
/*  */
.product-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  @media (width <= 768px) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
  }
}
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: clip;
  box-shadow: var(--shadow);
  .product-card__img {
    display: block;
    width: 100%;
    aspect-ratio: 332 / 230;
    background: var(--light-gray-bg);
    flex-shrink: 0;
    overflow: hidden;
    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: scale 0.6s ease;
    }
  }
  .product-card__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    flex-grow: 1;
  }
  .product-card__header {
    display: flex;
    align-items: start;
    gap: 1rem;
  }
  .product-card__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
    transition: color 0.2s ease;
    .product-card__from {
      color: var(--blue);
      transition: color 0.2s ease;
    }
  }
  a.product-card__title:hover {
    color: var(--main);
    .product-card__from {
      color: var(--main);
    }
  }
  .product-card__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
    font-size: 0.875rem;
    line-height: 1.428571428571;
    font-weight: 600;
    color: var(--black);
    svg {
      width: 1rem;
      height: 1rem;
      color: var(--orange);
      flex-shrink: 0;
    }
  }
  .product-card__desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    font-size: 0.875rem;
    line-height: 1.428571428571;
    color: var(--black-sec);
  }
  .product-card__stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    div {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      line-height: 1.428571428571;
      color: var(--black-sec);
      img,
      svg {
        width: 1rem;
        height: 1rem;
        flex-shrink: 0;
      }
    }
  }
  .product-card__footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: auto;
    .product-card__btn,
    .product-card__more {
      grid-column: 2 / 3;
    }
    .product-card__btn {
      .btn {
        width: 100%;
      }
    }
    .product-card__more {
      display: flex;
      justify-content: end;
    }
  }
  .product-card__price {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--black);
    font-weight: 600;
    &.--old {
      font-size: 0.875rem;
      line-height: 1.428571428571;
      color: var(--black-sec);
      text-decoration: line-through;
    }
  }
  .product-card__date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 1.5rem;
    background-color: var(--light-gray-bg);
    color: var(--black);
    font-size: 0.875rem;
    line-height: 1.428571428571;
  }
  &:hover .product-card__img img {
    scale: 1.05;
  }

  &.--inline {
    display: flex;
    flex-direction: row;
    .product-card__img {
      /* width: 14.375rem; */
      width: 33.430232558139533%;
    }
    .product-card__content {
      gap: 1rem;
    }
    .product-card__title {
      -webkit-line-clamp: 2;
    }
    .product-card__footer {
      padding-top: 1rem;
    }
  }
  &.--gray {
    background-color: var(--light-gray-bg);
    box-shadow: none;
    .product-card__img {
      aspect-ratio: 688 / 316;
    }
    .product-card__content {
      background-color: var(--light-gray-bg);
    }
  }
  @media (width < 1024px) {
    &.--inline {
      flex-direction: column;
      .product-card__img {
        width: auto;
      }
    }
  }
  @media (width < 768px) {
    .product-card__content {
      padding: 1rem;
      gap: 1rem;
    }
    &.--inline {
    }
    &.--gray {
      .product-card__img {
        height: auto;
        width: auto;
        aspect-ratio: 343 / 230;
      }
    }
  }
  @media (width < 480px) {
    &.--inline {
      .product-card__footer {
        grid-template-columns: auto auto;
      }
    }
  }
}

/*  */
/* places grid */
/*  */
.places-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  &:has(.product-card:last-child:nth-child(3)) > :first-child {
    grid-row: 1 / 3;
  }
  @media (width < 1024px) {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    > :first-child {
      grid-row: auto;
    }
  }
}

/* service-grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  > :first-child {
    grid-column: span 2;
    .product-card__img {
      height: 100%;
      aspect-ratio: auto;
    }
  }
  @media (width < 991px) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  @media (width < 768px) {
    display: flex;
    overflow: auto;
    margin: -12px;
    padding: 12px;
    gap: 1rem;
    .product-card {
      flex-shrink: 0;
      width: 300px;
    }
  }
}

/*  */
/* transport-card */
/*  */
.transport-card {
  position: relative;
  display: flex;
  aspect-ratio: 513 / 320;
  .transport-card__img {
    position: absolute;
    inset: 0;
    display: block;
    background: var(--light-gray-bg);
    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .transport-card__name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(1.5rem);
    border-radius: 1rem;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
    margin: auto auto 1.5rem auto;
    transition: background-color 0.3s ease;
    transition-property: background-color, transform, color;
    cursor: pointer;
    svg {
      flex-shrink: 0;
    }
  }
}

/* advantages */
.orange-advantages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  .advantages-item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 0.25rem;
  }
  .advantages-ico {
    display: flex;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    margin: 0 auto;
    margin-bottom: 0.25rem;
    background: var(--orange);
    color: #fff;
    svg,
    img {
      width: 2rem;
      height: 2rem;
      margin: auto;
    }
  }
  .advantages-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--black);
    overflow: hidden;
  }
  .advantages-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 0.875rem;
    line-height: 1.375;
    font-weight: 500;
    color: var(--black-sec);
    overflow: hidden;
  }
}

/*  */
/* breadcrumbs */
/*  */
.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  line-height: 1.42857;
  color: var(--black-sec);
  .breadcrumbs-ico {
    margin: auto 0;
    flex-shrink: 0;
  }
  .breadcrumbs-item {
    margin: auto 0;
  }
  .breadcrumbs-item.active,
  a.breadcrumbs-item:active,
  a.breadcrumbs-item:hover {
    color: var(--orange);
  }
}

/* warning-block */
.warning-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #ffede0;
  font-size: 0.875rem;
  line-height: 1.428571428571;
  color: var(--black-sec);
  .warning-block__head {
    display: flex;
    gap: 0.5rem;
    color: var(--black);
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.2;
    svg {
      flex-shrink: 0;
      color: var(--orange);
    }
    span {
      margin: auto 0;
    }
  }
}

/*  */
/* contacs data in header in footer */
/*  */
.contacts-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  &:hover {
    color: var(--orange);
  }
  svg {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
  }
  span {
    padding-top: 0.125rem;
    margin-bottom: -0.125rem;
  }
}

/*  */
/* lang-selector */
/*  */
.lang-selector {
  position: relative;
  .lang-selector__trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    &:hover {
      color: var(--orange);
    }
    .lang-selector__flag {
      display: block;
      width: 1rem;
      height: 0.75rem;
      margin-right: 0.25rem;
      border-radius: 0.25rem;
      flex-shrink: 0;
      overflow: clip;
    }
    .lang-selector__arrow {
      width: 1rem;
      height: 1rem;
      flex-shrink: 0;
    }
  }
  .lang-selector__list {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 12rem;
    margin-top: 0.25rem;
    border-radius: 0.75rem;
    background: #fff;
    padding: 0.5rem;
    box-shadow: 0px 8px 32px 0px #282c301f;
    z-index: 2;
    .lang-selector__item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6125rem 0.725rem;
      border-radius: 0.75rem;
      transition: background-color 0.2s ease;
      &.--active,
      &:hover {
        background-color: var(--light-gray-bg);
      }
    }
    .lang-selector__flag {
      display: block;
      width: 1.5rem;
      height: 1.125rem;
      border-radius: 0.25rem;
      flex-shrink: 0;
      overflow: clip;
    }
    .lang-selector__arrow {
      display: block;
      width: 1.5rem;
      height: 1.5rem;
      flex-shrink: 0;
      margin-left: auto;
      color: var(--gray-sec);
    }
  }
}

/*  */
/* simple card */
/*  */
/* container */
.simple-card__container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  .simple-card__grid {
    grid-column: span 3;
  }
  @media (width <= 1416px) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    .simple-card__grid {
      grid-column: span 2;
    }
  }
  @media (width <= 1072px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    .simple-card__grid {
      grid-column: span 1;
    }
  }
  @media (width <= 840px) {
    grid-template-columns: minmax(0, 1fr);
    .simple-card__grid {
      grid-column: auto;
    }
    .simple-card__filter-container {
      order: -1;
    }
  }
  &:has(.simple-card__grid:first-child:last-child),
  &:has(.swiper-container) {
    display: block;
  }
}
/* filter */
.simple-card__filter-container {
  .simple-card__filter-block {
    & ~ & {
      margin-top: 1.5rem;
    }
  }
  .simple-card__filter-title {
    font-size: 1.125rem;
    line-height: 1.3;
    color: var(--black);
    font-weight: 600;
  }
  .simple-card__filter-items {
    margin-top: 1rem;
  }
  @media (width > 768px) {
    .simple-card__filter {
      position: sticky;
      top: 0;
      left: 0;
      box-shadow: 0px 0px 12px 0px #282c301f;
      padding: 1.5rem;
      border-radius: 1.5rem;
      background: #fff;
    }
  }
  @media (width <= 768px) {
    .simple-card__filter-block {
      & ~ & {
        margin-top: 1rem;
      }
    }
    .simple-card__filter-title {
      display: none;
    }

    .simple-card__filter-items {
      margin-top: 0;
    }
  }
}

.catalog-tags {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 0.5rem;
  .catalog-tag {
    position: relative;
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4285714285714286;
    font-weight: 600;
    border: 1px solid var(--light-gray);
    border-radius: 2rem;
    padding: 0.1875rem 0.4375rem;
    margin: 0;
    background: #fff;
    color: var(--black);
    cursor: pointer;
    transition:
      color 0.2s ease,
      background-color 0.2s ease,
      border-color 0.2s ease;
    input {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
    }
    &:hover {
      background: var(--light-gray);
    }
    &.--active,
    &:has(input:checked) {
      color: #fff;
      background: var(--blue);
      border-color: var(--blue);
    }
    &.disabled {
      opacity: 0.4;
      pointer-events: none;
    }
  }
  .gd-select {
    width: 100%;
    display: none;
  }
  @media (width <= 768px) {
    .catalog-tag {
      display: none;
    }
    .gd-select {
      display: block;
    }
  }
}
/* cards */
.simple-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.simple-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  .simple-card__img {
    display: block;
    width: 100%;
    height: 230px;
    border-radius: 1.5rem;
    overflow: clip;
    background: var(--light-gray-bg);
    margin-bottom: 0.5em;
    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .simple-card__name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-weight: 600;
    line-height: 1.375em;
    color: var(--black);
    transition: color 0.2s ease;
    a.simple-card:hover & {
      color: var(--orange);
    }
  }
  .simple-card__info {
    font-size: 0.875rem;
    line-height: 1.428571428571;
    color: var(--black-sec);
  }
}

.news-container {
  max-width: 1440px;
  margin: 0 0 !important;
  padding: 20px 0;
  h1 {
    margin-bottom: 0px;
  }
}
.news-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.news-title-link {
  text-decoration: none;
}

.all-news-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ff6b00 !important;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  .arrow {
    color: #ff6b00;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  &:hover {
    color: #e65c00 !important;
    transform: translateX(5px);
    .arrow {
      transform: translateX(3px);
    }
  }
}

/*  */
/* SWIPER CUSTOM */
/*  */
.swiper-container,
.swiper-full-container {
  /* --swiper-navigation-sides-offset: calc(var(--swiper-navigation-size) / -1); */
  --swiper-navigation-sides-offset: -1.5rem;
  --swiper-navigation-size: 1rem;
  --swiper-navigation-color: var(--black);

  --swiper-pagination-bullet-horizontal-gap: 0.25rem;
  --swiper-pagination-bullet-width: 0.75rem;
  --swiper-pagination-bullet-height: 0.75rem;
  --swiper-pagination-bullet-border-radius: 2rem;
  --swiper-pagination-bullet-inactive-color: var(--light-gray-sec);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: var(--black);
  position: relative;
  .swiper-button-next,
  .swiper-button-prev {
    width: 2.75rem;
    height: 2.75rem;
    margin-top: -1.25rem;
    border-radius: 2.75rem;
    background-color: #fff;
    box-shadow: var(--shadow);
    svg {
      width: var(--swiper-navigation-size);
      height: var(--swiper-navigation-size);
    }
    &:hover {
      color: var(--main);
    }
    &.--inside {
      --swiper-navigation-sides-offset: 1rem;
      width: 2rem;
      height: 2rem;
      margin-top: -1rem;
      box-shadow: none;
      background-color: transparent;
    }
  }
  .swiper-pagination.--static {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    --swiper-pagination-bullet-horizontal-gap: 0.5rem;
    --swiper-pagination-bullet-width: 4rem;
    --swiper-pagination-bullet-height: 0.25rem;
    --swiper-pagination-bullet-border-radius: 0;
    --swiper-pagination-bullet-inactive-color: var(--light-gray-sec);
  }
}

/* JS */
[data-dropdown-content] {
  display: none;
}
[data-dropdown-link] [data-dropdown-arrow] {
  transition: transform 0.2s ease;
}
[data-dropdown-link].active [data-dropdown-arrow] {
  transform: rotate(180deg);
}

/*  */
/* 404 */
/*  */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 4rem 0;
  .error-page__ico {
    flex-shrink: 0;
    svg {
      display: block;
      width: 100%;
      max-width: 450px;
      height: auto;
      aspect-ratio: 450/464;
      margin: auto;
    }
  }
  .error-page__content {
    text-align: center;
  }
  .error-page__title {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1.25rem;
  }
  .error-page__desc {
    color: var(--black-sec);
  }
  .error-page__btns {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  @media (width < 1024px) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }
  @media (width < 850px) {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    padding: 2rem 0;
  }
  @media (width < 640px) {
    .error-page__title {
      font-size: 1.5rem;
    }
  }
}

body:has(.product-detail__sidebar) .mgo-mcw-widget_mobile-view {
  bottom: 5rem;
}