header {
  position: relative;
}

.topinfo {
  padding: 20px 0;
  background-color: var(--bg-secondary);
}

@media (max-width: 991px) {
  .topinfo {
    display: none;
  }
}

.topinfo__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 1399px) {
  .topinfo__content {
    justify-content: center;
  }
}

.topinfo__block {
  display: flex;
  gap: 1rem;
}

@media(max-width: 991px) {
  .topinfo__block {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

.topinfo__information {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.topinfo__information-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.25rem;
}

.topinfo__information-text {
  display: flex;
  flex-direction: column;
}

.topinfo__information-text p {
  color: var(--text-secondary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.topinfo__information-text a {
  color: var(--text-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s;
}

.topinfo__information-text a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.topinfo__block-link {
  color: var(--text-secondary);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: 0.3s;
}

.topinfo__block-link:hover {
  color: var(--text-primary);
}

.hero {
  position: relative;
  background-color: var(--color-primary);
  background-image: url('../img/bg_hero.png');
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 2.5rem;
  padding: 0;
}

@media(max-width: 991px) {
  .hero {
    margin-top: 0;
  }
}

.hero__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media(max-width: 991px) {
  .hero__content {
    flex-wrap: wrap;
    padding-top: 2rem;
    padding-bottom: 0;
  }
}

.hero__block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 500px;
  gap: 1rem;
  z-index: 1;
}

.hero--second .hero__block {
  max-width: 780px;
}

.hero__block h1 {
  color: #FFF;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

@media(max-width: 991px) {
  .hero__block h1 {
    font-size: 36px;
  }
}

.hero__block h1 span {
  display: inline;
  background-color: var(--bg-secondary);
  color: var(--color-primary);
}

.hero__block p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

.hero-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  pointer-events: none;
  z-index: 0;
}

.hero--second .hero-image {
  left: unset;
}

@media(max-width: 991px) {
  .hero-image {
    position: relative;
    margin-top: 1rem;
  }
}

.categories__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

@media(max-width: 991px) {
  .categories__content {
    flex-wrap: wrap;
  }
}

.categories__block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  padding: 0;
}

.categories__block img {
  width: 100%;
}

@media(max-width: 991px) {
  .categories__block img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-height: 370px;
    margin: auto;
  }
}

.categories__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 2rem;
}

.categories__header h2 {
  color: var(--black);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
}

.categories__header h2 span {
  color: var(--color-primary);
}

.categories__external {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

.categories__column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-width: 200px;
}

@media(max-width: 991px) {
  .categories__column {
    width: 100%;
  }
}

.categories__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-image: url(../img/bg_categories.svg);
  background-color: var(--bg-accent);
  padding: .75rem 1.125rem;
  border-radius: 20px;
  height: 100%;
  width: 100%;
}

@media(max-width: 991px) {
  .categories__item {
    min-height: 140px;
    height: auto;
  }
}

.categories__item h2 {
  color: #FFF;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.categories__item img {
  display: block;
  margin: 5px auto;
}

.categories-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  transition: 0.3s;
}

.categories-link iconify-icon {
  font-size: 1.5rem;
}

.categories-link:hover {
  color: #FFF;
  opacity: 0.7;
}

.categories__item--sell {
  background-image: none;
  background-color: var(--color-primary);
}

.categories__item--sell h2 {
  color: #FFF;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.categories__item--sell h2 span {
  display: inline-block;
  color: var(--color-primary);
  background: #FFF;
  border-radius: 65px;
  padding: 0 0.75rem;
  line-height: 105%;
}

.categories__item--sell p {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

.products__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .products__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products__content {
    grid-template-columns: 1fr;
  }
}


.product__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.product__header {
  position: relative;
  border-radius: 30px 30px 0 0;
  background: var(--bg-secondary);
  padding: 1.25rem;
}

.product__header .badge {
  position: absolute;
  top: 2.25rem;
  left: 2.25rem;
}

.product__header>img {
  margin-bottom: 1rem;
  border-radius: 20px;
  width: 256px;
  height: 256px;
}

.reviews-ratings {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.reviews-ratings p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.reviews-stars {
  display: flex;
  align-items: center;
  gap: .125rem;
}

.product__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  border-radius: 0 0 30px 30px;
  background: var(--bg-primary);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
  padding-bottom: 1.5rem;
  height: 100%;
}

.product__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.features {
  background-color: var(--bg-secondary);
}

.features__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

@media(max-width: 991px) {
  .features__content {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.features__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 2.25rem;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0px 0 12px var(--border-primary);
}

.features__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 215px;
}

.features__info h2 {
  color: var(--black);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.features__info p {
  color: var(--black);
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.information__content {
  position: relative;
  background-color: var(--color-primary);
  border-radius: 30px;
  padding: 2rem;
  background-image: url('../img/bg_info.png');
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: bottom;
  min-height: 300px;
}

@media(max-width: 991px) {
  .information__content {
    padding-bottom: 0;
  }
}

.information__text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.information__text h2 {
  color: #FFF;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 70%;
}

.information__paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.information__paragraphs p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 64%;
}

.information__paragraphs p:first-child {
  max-width: 70%;
}

@media(max-width: 991px) {
  .information__text h2 {
    max-width: 100%;
  }

  .information__paragraphs p {
    max-width: 100%;
  }

  .information__paragraphs p:first-child {
    max-width: 100%;
  }
}

.information-image {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  margin: auto;
  pointer-events: none;
  z-index: 0;
}

@media(max-width: 991px) {
  .information-image {
    position: relative;
    margin-top: 1rem;
  }
}

.text__content {
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 20px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.text__content img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.text__content ul,
.text__content ul li {
  list-style: disc;
  list-style-position: inside;
}

.shop__body {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 2.5rem;
}

@media(max-width: 991px) {
  .shop__body {
    grid-template-columns: 1fr;
  }
}

.shop__filters {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.shop__filter-title {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.shop__filter-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shop__filter-price {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shop__filter-price-inputs {
  display: flex;
  gap: 1rem;
}

.shop__filterin {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop__filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.shop__filter-checkbox p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--text-secondary);
  margin-bottom: 1px;
}

.shop__products {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.shop__products-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

@media(max-width: 991px) {
  .shop__products-header {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.shop__filters-selected {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.shop__sort {
  display: flex;
  gap: 0.5rem;
}

.shop__products-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.pagination {
  display: flex;
  width: 100%;
}

.pagination__list {
  display: flex;
  gap: 0.25rem;
  margin: 0 auto;
}

.pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 14px;
  width: 27px;
  height: 27px;
  background: var(--border-primary);
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  transition: 0.3s;
}

.pagination__item:first-child,
.pagination__item:last-child {
  background-color: transparent;
  border-color: transparent;
}

.pagination__item:hover,
.pagination__item--active {
  background-color: var(--color-primary);
  color: #FFF;
}

.guide-link {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.guide-link:hover,
.guide-link.active {
  color: var(--color-primary);
}

.guide-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

h1.guide-title {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media(max-width: 991px) {
  .guide-title {
    flex-wrap: wrap;
  }
}

.guides__body {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

@media(max-width: 991px) {
  .guides__body {
    flex-wrap: wrap;
  }
}

.guides__block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  width: 100%;
}

.guides__block h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq {
  background-color: var(--bg-secondary);
}

.reviews {
  background-color: var(--bg-secondary);
}

.oproduct__body {
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 0.7fr 1fr;
  gap: 2rem;
}

@media(max-width: 991px) {
  .oproduct__body {
    grid-template-columns: 1fr;
  }
}

.oproduct__images {
  display: grid;
  align-items: center;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  max-height: 320px;
}

@media (max-width: 575px) {
  .oproduct__images {
    grid-template-columns: 1fr;
    max-height: 100%;
  }
}

.oproduct__vslider {
  position: relative;
  overflow: hidden;
  height: 100%;
}

@media (max-width: 575px) {
  .oproduct__vslider {
    height: 100px;
  }
}

.oproduct__vslider .swiper {
  height: 100%;
}

.oproduct__vslider .swiper-slide {
  opacity: 0.55;
  transition: 0.3s;
}

.oproduct__vslider .swiper-slide-active {
  opacity: 1;
}

.oproduct__vslider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.oproduct__vslider .oproduct__slider-prev,
.oproduct__vslider .oproduct__slider-next {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  z-index: 2;
  margin: auto;
}

.oproduct__vslider .oproduct__slider-prev:hover,
.oproduct__vslider .oproduct__slider-next:hover {
  cursor: pointer;
  opacity: 0.7;
}

.oproduct__vslider .oproduct__slider-prev {
  top: 0;
  left: 0;
  right: 0;
}

.oproduct__vslider .oproduct__slider-next {
  bottom: 0;
  left: 0;
  right: 0;
}

@media (max-width: 575px) {
  .oproduct__vslider .oproduct__slider-prev {
    top: 0;
    bottom: 0;
    right: unset;
    rotate: -90deg;
  }

  .oproduct__vslider .oproduct__slider-next {
    top: 0;
    bottom: 0;
    left: unset;
    rotate: -90deg;
  }
}

.oproduct__hslider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 320px;
}

.oproduct__hslider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  max-height: 320px;
}

.oproduct__hslider .oproduct__slider-prev,
.oproduct__hslider .oproduct__slider-next {
  position: absolute;
  z-index: 2;
}

.oproduct__hslider .oproduct__slider-prev:hover,
.oproduct__hslider .oproduct__slider-next:hover {
  cursor: pointer;
  opacity: 0.7;
}

.oproduct__hslider .oproduct__slider-prev {
  left: -1rem;
}

.oproduct__hslider .oproduct__slider-next {
  right: -1rem;
}

.oproduct__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.oproduct__info h1,
.oproduct__info h2 {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.oproduct__info p {
  display: inline;
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.oproduct__info a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.oproduct__info ul,
.oproduct__info ul li {
  list-style: disc;
  list-style-position: inside;
}

.oproduct__order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-secondary);
  border-radius: 10px;
}

@media(max-width: 991px) {
  .oproduct__order {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.oproduct_price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.oproduct_price h3 {
  color: var(--color-primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.oproduct_price p {
  color: var(--text-secondary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.reviews__body {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 370px;
  gap: 1.25rem;
}

@media(max-width: 991px) {
  .reviews__body {
    grid-template-columns: 1fr;
  }
}

.reviews__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reviews__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1rem;
  border-radius: 10px;
  background: var(--white);
}

@media(max-width: 991px) {
  .reviews__item {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.reviews__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 2rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
}

.reviews__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

@media(max-width: 991px) {
  .reviews__info {
    flex: unset;
  }
}

.reviews__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media(max-width: 991px) {
  .reviews__title {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
  }
}

.reviews__title h3 {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.reviews__title h3 span {
  font-size: 14px;
  font-weight: 400;
}

.reviews__info p {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.reviews__leave {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem 1rem;
  border-radius: 10px;
  background: var(--white);
}

.rating {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media(max-width: 991px) {
  .rating {
    align-items: center;
  }
}

.rating__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media(max-width: 991px) {
  .rating__header {
    justify-content: center;
  }
}

.rating__header>p {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.rating__common {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.rating__common p {
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.rating__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}

@media(max-width: 991px) {
  .rating__list {
    align-items: center;
    justify-content: center;
  }
}

.rating__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating__item p {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.rating__rate {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.rating__line {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: var(--bg-secondary);
  overflow: hidden;
  border-radius: 65px;
  min-width: 180px;
}

@media(max-width: 991px) {
  .rating__line {
    min-width: 100px;
  }
}

.rating__line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--loader-progress, 40%);
  background: var(--color-primary);
  animation: loader-line 1.2s infinite ease-in-out;
  border-radius: 65px;
}

.rating>p {
  color: var(--text-secondary);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.rating>p b {
  color: var(--text-primary);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.evaluate {
  display: flex;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
}

.evaluate input {
  display: none;
}

.evaluate label {
  display: inline-block;
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-image: url('/assets/site/img/icons/evaluate.svg');
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-size: 200%;
}

.evaluate input:checked~label~label {
  background-position-x: 0;
}

.evaluate label:hover {
  background-position-x: 100% !important;
}

.evaluate input:checked~label {
  background-position-x: 100%;
}

.order__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.order__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media(max-width: 991px) {
  .order__row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.order__row>p {
  color: var(--text-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.order__row-information {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.order__row-information p {
  color: var(--text-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.order__count>input {
  color: var(--text-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  width: 2rem;
  background: transparent;
  padding: 0;
  border: 0;
  text-align: center;
}

.order__count {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.order__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media(max-width: 991px) {
  .order__total {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.order__total p {
  color: var(--text-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 125% */
}

.order__total b {
  color: var(--color-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 100% */
}

.order__form p {
  color: var(--text-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.order__form .form__flex>* {
  width: 100%;
}

.buttons_cart {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.btn1 {
  width: 210px;
  justify-content: center;
}