@charset "UTF-8";
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-VariableFont_wdth\\,wght.ttf");
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-VariableFont_wdth\\,wght.ttf");
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-VariableFont_opsz\\,wght.ttf");
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  color: #000C2C;
  font-weight: 600;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  color: #000C2C;
  font-weight: 600;
}

ol,
ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  font-size: 14px;
  color: #000C2C;
  font-weight: 600;
}

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

button,
input[type=submit] {
  font-size: 14px;
  color: #000C2C;
  font-weight: 600;
  border: none;
  outline: none;
  background-color: transparent;
}

.hidden {
  display: none !important;
}

.wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1322px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}

section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.flex {
  display: flex;
}

.column {
  flex-direction: column;
}

.gap-0 {
  gap: 0;
}

.row-gap-0 {
  row-gap: 0;
}

.col-gap-0 {
  -moz-column-gap: 0;
       column-gap: 0;
}

.gap-5 {
  gap: 5px;
}

.row-gap-5 {
  row-gap: 5px;
}

.col-gap-5 {
  -moz-column-gap: 5px;
       column-gap: 5px;
}

.gap-8 {
  gap: 8px;
}

.row-gap-8 {
  row-gap: 8px;
}

.col-gap-8 {
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.gap-9 {
  gap: 9px;
}

.row-gap-9 {
  row-gap: 9px;
}

.col-gap-9 {
  -moz-column-gap: 9px;
       column-gap: 9px;
}

.gap-10 {
  gap: 10px;
}

.row-gap-10 {
  row-gap: 10px;
}

.col-gap-10 {
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.row-gap-12 {
  row-gap: 12px;
}

.col-gap-12 {
  -moz-column-gap: 12px;
       column-gap: 12px;
}

.gap-15 {
  gap: 15px;
}

.row-gap-15 {
  row-gap: 15px;
}

.col-gap-15 {
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.gap-16 {
  gap: 16px;
}

.row-gap-16 {
  row-gap: 16px;
}

.col-gap-16 {
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.row-gap-20 {
  row-gap: 20px;
}

.col-gap-20 {
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.row-gap-24 {
  row-gap: 24px;
}

.col-gap-24 {
  -moz-column-gap: 24px;
       column-gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.row-gap-32 {
  row-gap: 32px;
}

.col-gap-32 {
  -moz-column-gap: 32px;
       column-gap: 32px;
}

.gap-37 {
  gap: 37px;
}

.row-gap-37 {
  row-gap: 37px;
}

.col-gap-37 {
  -moz-column-gap: 37px;
       column-gap: 37px;
}

.gap-50 {
  gap: 50px;
}

.row-gap-50 {
  row-gap: 50px;
}

.col-gap-50 {
  -moz-column-gap: 50px;
       column-gap: 50px;
}

.ver_center {
  align-items: center;
}

.hor_start {
  justify-content: start;
}

.catalog_btn {
  display: flex;
  padding: 12px 16px;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  align-items: center;
  border-radius: 8px;
  border: 1px solid transparent;
  background-color: #FFB401;
  transition: 0.4s;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #2B2940;
  font-weight: 600;
}
.catalog_btn img {
  width: 14px;
}
.catalog_btn:hover {
  background-color: transparent;
  border: 1px solid #2B2940;
}

.btn {
  cursor: pointer;
  display: flex;
  padding: 12px;
  background-color: #000C2C;
  font-size: 16px;
  color: #FFF;
  font-weight: 600;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid transparent;
  transition: 0.4s;
}
.btn:hover {
  border: 1px solid #000C2C;
  background-color: transparent;
  color: #000C2C;
}
.btn.btn_fill {
  background-color: #C4C4C4;
  color: #000C2C;
}
.btn.btn_fill.active {
  background-color: #000C2C;
  color: #FFF;
}
.btn.btn_fill:hover {
  background-color: #000C2C;
  color: #FFF;
}

.btn__sort {
  display: flex;
  gap: 8px;
  padding: 8px;
  background-color: transparent;
  font-weight: 400;
  font-size: 14px;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  border-radius: 8px;
  transition: 0.4s;
  align-items: center;
  cursor: pointer;
}
.btn__sort:hover {
  background-color: #F4F6F8;
}
.btn__sort.active {
  background-color: #F4F6F8;
}
.btn__sort img {
  width: auto;
  height: 16px;
}

.btn__grey {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #8C8C8C;
  transition: 0.4s;
  background-color: transparent;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000C2C;
  cursor: pointer;
}
.btn__grey svg {
  width: 20px;
  height: 20px;
}
.btn__grey svg path {
  transition: 0.4s;
  fill: #8C8C8C;
}
.btn__grey:hover {
  background-color: #000C2C;
  border-color: #000C2C;
  color: #FFF;
}
.btn__grey:hover svg path {
  fill: #fff;
}

.btn__icon_text {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  cursor: pointer;
}
.btn__icon_text:hover .btn__icon_text-icon {
  background-color: #000C2C;
}
.btn__icon_text:hover svg path {
  fill: #FFFFFF;
}
.btn__icon_text.active .btn__icon_text-icon {
  background-color: #000C2C;
}
.btn__icon_text.active svg path {
  fill: #FFFFFF;
}
.btn__icon_text .btn__icon_text-icon {
  display: flex;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: 0.4s;
}
.btn__icon_text .btn__icon_text-icon svg {
  width: 24px;
  height: 24px;
}
.btn__icon_text .btn__icon_text-icon svg path {
  transition: 0.4s;
}
.btn__icon_text .btn__icon_text-text {
  font-weight: 400;
  font-size: 16px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
  letter-spacing: 0%;
}

.search_wiget {
  display: flex;
  padding: 20px 16px;
  align-items: center;
  background-color: #DAE0E8;
  border-radius: 8px;
  max-width: 310px;
  width: 100%;
  gap: 9px;
}
.search_wiget img {
  width: 12px;
}
.search_wiget input {
  border: none;
  outline: none;
  background-color: transparent;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  width: 100%;
}
.search_wiget input::-moz-placeholder {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
.search_wiget input::placeholder {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.city-select {
  position: relative;
  width: 170px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.city-select__label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 12px;
  color: #6C6C6C;
  max-width: 170px;
  width: 100%;
}
.city-select__button {
  max-width: 170px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  color: #000C2C;
  font-size: 14px;
  font-weight: 600;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  text-align: start;
}
.city-select__button:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.city-select__chevron {
  font-size: 12px;
  color: #666;
}
.city-select__listbox {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 220px;
  overflow: auto;
  border: 1px solid #c7c7c7;
  border-radius: 8px;
  background: #fff;
  padding: 6px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.city-select__option {
  list-style: none;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
}
.city-select__option[aria-selected=true] {
  background: #eef2ff;
  color: #1e40af;
  font-weight: 600;
}
.city-select__option--active {
  background: #f3f4f6;
}
.city-select__error {
  margin-top: 6px;
  font-size: 13px;
  color: #b91c1c;
}

.bread__crumbs {
  display: flex;
  width: 100%;
  gap: 5px;
  align-items: center;
}
.bread__crumbs a, .bread__crumbs span {
  font-weight: 400;
  font-size: 14px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
  transition: 0.4s;
  align-items: center;
  display: flex;
}
.bread__crumbs a:not(:first-child)::before, .bread__crumbs span:not(:first-child)::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #6C6C6C;
  margin-right: 5px;
}
.bread__crumbs a:hover {
  color: #FFB401;
}
.bread__crumbs span {
  color: #000C2C;
}

.share__btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
  align-items: center;
  padding: 8px;
  border: 1px solid transparent;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
}
.share__btn svg path {
  transition: 0.4s;
}
.share__btn:hover {
  border-color: #FFB401;
  color: #FFB401;
}
.share__btn:hover svg path {
  fill: #FFB401;
}

.print__btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
  align-items: center;
  padding: 8px;
  border: 1px solid transparent;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #2B2940;
}
.print__btn svg path {
  transition: 0.4s;
}
.print__btn:hover {
  border-color: #FFB401;
  color: #FFB401;
}
.print__btn:hover svg path {
  fill: #FFB401;
}

.select_all__btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
  align-items: center;
  padding: 8px;
  border: 1px solid transparent;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #2B2940;
}
.select_all__btn svg path {
  transition: 0.4s;
}
.select_all__btn:hover {
  border-color: #FFB401;
  color: #FFB401;
}
.select_all__btn:hover svg path {
  fill: #FFB401;
}

.call__widget {
  z-index: 100;
  display: flex;
  width: 51px;
  height: 51px;
  justify-content: center;
  align-items: center;
  background-color: #FFB401;
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  transition: 0.4s;
  border: 1px solid transparent;
}
.call__widget:hover {
  background-color: #000C2C;
}
.call__widget img {
  width: 32px;
}

.reviews__list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 15px;
}
.reviews__list > .reviews__item {
  display: flex;
  flex-direction: column;
  max-width: 411px;
  width: 100%;
  border: 1px solid #DAE0E8;
  border-radius: 6px;
  background-color: #FFF;
  gap: 7px;
  padding: 25px;
}
.reviews__list > .reviews__item > .grade {
  display: flex;
  gap: 4px;
}
.reviews__list > .reviews__item > .grade[data-grade="1"] svg:is(:nth-child(1)), .reviews__list > .reviews__item > .grade[data-grade="2"] svg:is(:nth-child(1), :nth-child(2)), .reviews__list > .reviews__item > .grade[data-grade="3"] svg:is(:nth-child(1), :nth-child(2), :nth-child(3)), .reviews__list > .reviews__item > .grade[data-grade="4"] svg:is(:nth-child(1), :nth-child(2), :nth-child(3), :nth-child(4)), .reviews__list > .reviews__item > .grade[data-grade="5"] svg:is(:nth-child(1), :nth-child(2), :nth-child(3), :nth-child(4), :nth-child(5)) {
  fill: #FFB401;
}
.reviews__list > .reviews__item > .reviews {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  overflow: hidden;
  font-weight: 400;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  color: #6C6C6C;
  font-style: normal;
}

.title__section {
  margin-left: 12px;
  font-weight: 600;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 32px;
  color: #2B2940;
  margin-bottom: 20px;
}

.popup__form {
  position: fixed;
  bottom: 40px;
  right: -400px;
  display: flex;
  flex-direction: column;
  background-color: #2B2940;
  max-width: 382px;
  width: 100%;
  padding: 39px;
  border-radius: 10px;
  gap: 14px;
  align-items: center;
  transition: 0.5s;
}
.popup__form.open {
  right: 100px;
}
.popup__form > .close__popup {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  transition: 0.4s;
}
.popup__form > .close__popup svg path {
  transition: 0.4s;
}
.popup__form > .close__popup:hover svg path {
  fill: #b91c1c;
}
.popup__form > h2 {
  font-weight: 600;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 20px;
  color: #FFF;
  margin-bottom: 20px;
}
.popup__form > .instructions {
  margin-top: -7px;
  font-weight: 400;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #FFF;
  width: 100%;
  text-align: end;
}
.popup__form > .btn__form {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #FFF;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 31px;
  text-transform: uppercase;
  margin-top: 36px;
  background-color: #FFB401;
  border-radius: 8px;
  transition: 0.4s;
  border: 1px solid transparent;
}
.popup__form > .btn__form:hover {
  color: #FFB401;
  border-color: #FFB401;
  background-color: transparent;
}
.popup__form > .text__form {
  text-align: center;
  max-width: 304px;
  width: 100%;
  font-weight: 600;
  font-size: 10px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #FFF;
}
.popup__form > .text__form > a {
  font-weight: 600;
  font-size: 10px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #FFB401;
  text-decoration: underline;
}

.fixed__navigation {
  display: flex;
  gap: 1px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #EDF0F4;
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 20;
  /* поверх контента */
  box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.0588235294);
}
.fixed__navigation a {
  position: relative;
  padding: 16px 32px;
  background-color: #fff;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000C2C;
  transition: 0.4s;
}
.fixed__navigation a:hover {
  background-color: transparent;
}
.fixed__navigation a.active {
  font-weight: 500;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.fixed__navigation a.active::after {
  content: "";
  width: calc(100% - 64px);
  position: absolute;
  background-color: #FFB401;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.catalog__modal_overlay {
  position: fixed;
  top: var(--header-height, 0px);
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-height, 0px));
  background-color: #ffffff;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.catalog__modal_overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 999;
}

.catalog__modal {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1322px;
  height: calc(100vh - var(--header-height, 0px));
  z-index: 0;
  background-color: #ffffff;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(-20px);
}
.catalog__modal * {
  pointer-events: none !important;
}
.catalog__modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  z-index: 1000;
}
.catalog__modal.open * {
  pointer-events: auto !important;
}
.catalog__modal .catalog__modal_content {
  display: flex;
  gap: 20px;
  padding: 24px 5px;
  max-width: 1322px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100%;
  position: relative;
}

.catalog__categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-right: 19px;
  border-right: 0.5px solid #B9B7B7;
  max-width: 220px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.catalog__categories .category__btn {
  display: flex;
  gap: 7px;
  padding: 7px 4px;
  border-radius: 4px;
  width: 100%;
  align-items: center;
  justify-content: start;
  transition: 0.4s;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2B2940;
  cursor: pointer;
  text-align: start;
}
.catalog__categories .category__btn img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.catalog__categories .category__btn:hover {
  background-color: rgba(255, 180, 1, 0.4);
}
.catalog__categories .category__btn.active {
  background-color: rgba(255, 180, 1, 0.4);
}

.catalog__subcategories__wrapper {
  position: relative;
  min-width: 275px;
}

.catalog__subcategories {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.catalog__subcategories.active {
  opacity: 1;
  visibility: visible;
}
.catalog__subcategories .subcategory__btn {
  display: flex;
  align-items: center;
  justify-content: start;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px;
  gap: 8px;
  cursor: pointer;
}
.catalog__subcategories .subcategory__btn span {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  border-bottom: 1px solid transparent;
  transition: 0.4s;
  text-align: start;
}
.catalog__subcategories .subcategory__btn:hover span {
  color: #2B2940;
  border-color: #6C6C6C;
}
.catalog__subcategories .subcategory__btn.active span {
  color: #2B2940;
  border-color: #6C6C6C;
}
.catalog__subcategories .subcategory__btn .counter {
  padding: 2px 4px;
  border-radius: 4px;
  background-color: #6C6C6C;
  color: #FFFFFF;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 8px;
  font-weight: 300;
}

.catalog__subsubcategories__wrapper {
  position: relative;
  min-width: 200px;
}

.catalog__subsubcategories {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.catalog__subsubcategories.active {
  opacity: 1;
  visibility: visible;
}
.catalog__subsubcategories .subsubcategory__btn {
  display: flex;
  align-items: center;
  justify-content: start;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6C6C6C;
  transition: 0.4s;
  cursor: pointer;
}
.catalog__subsubcategories .subsubcategory__btn:hover {
  color: #2B2940;
}

body.catalog-modal-open {
  overflow: hidden;
}

.input__custom {
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #FFF;
  padding: 19px 16px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
}
.input__custom::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
}
.input__custom::placeholder {
  font-weight: 400;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
}

textarea.input__custom {
  height: 121px;
  resize: none;
}

.product-review-page {
  min-height: 100vh;
  background-color: #FFF;
  padding-bottom: 60px;
}

.review-form__sec {
  padding-top: 20px;
}

.review-form__title {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #2B2940;
  margin-bottom: 24px;
}

.review-form__wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.review-form {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.review-form__label {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #000C2C;
}

.review-form__input,
.review-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #DAE0E8;
  border-radius: 8px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000C2C;
  background-color: #FFF;
  transition: border-color 0.3s;
}
.review-form__input::-moz-placeholder, .review-form__textarea::-moz-placeholder {
  color: #6C6C6C;
}
.review-form__input::placeholder,
.review-form__textarea::placeholder {
  color: #6C6C6C;
}
.review-form__input:focus,
.review-form__textarea:focus {
  outline: none;
  border-color: #FFB401;
}
.review-form__input:disabled,
.review-form__textarea:disabled {
  background-color: #FFF;
  color: #000C2C;
}

.review-form__textarea {
  min-height: 80px;
  resize: none;
}

.review-form__counter {
  position: absolute;
  right: 0;
  top: 0;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #6C6C6C;
}

.review-form__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-form__star {
  cursor: pointer;
  padding: 2px;
  background: none;
  border: none;
  transition: transform 0.2s;
}
.review-form__star:hover {
  transform: scale(1.15);
}
.review-form__star svg {
  display: block;
  width: 24px;
  height: 24px;
}

.review-form__rating-text {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6C6C6C;
  margin-left: 8px;
}

.review-form__images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.review-form__image-add {
  width: 80px;
  height: 80px;
  border: 1px solid #DAE0E8;
  border-radius: 8px;
  cursor: pointer;
  background-color: #FFF;
  transition: border-color 0.3s, background-color 0.3s;
}
.review-form__image-add input {
  display: none;
}
.review-form__image-add:hover {
  border-color: #FFB401;
  background-color: rgba(255, 180, 1, 0.03);
}

.review-form__image-add-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 4px;
}
.review-form__image-add-content svg {
  width: 24px;
  height: 24px;
}
.review-form__image-add-content svg path {
  stroke: #6C6C6C;
}
.review-form__image-add-content span {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #6C6C6C;
  text-align: center;
  line-height: 1.3;
}

.review-form__image-preview {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #DAE0E8;
}
.review-form__image-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.review-form__image-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.review-form__image-remove svg {
  width: 12px;
  height: 12px;
}
.review-form__image-remove:hover {
  background-color: #b91c1c;
}

.review-form__images-hint {
  display: none;
}

.review-form__user-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.review-form__subtitle {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000C2C;
}

.review-form__submit {
  width: 100%;
  max-width: 280px;
  margin: 16px auto 0;
  padding: 14px 32px;
  background-color: #2B2940;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFF;
  cursor: pointer;
  transition: all 0.3s;
}
.review-form__submit:hover:not(:disabled) {
  background-color: #211f30;
}
.review-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.review-form__agreement {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #6C6C6C;
  text-align: center;
  max-width: 350px;
  margin: 12px auto 0;
  line-height: 1.5;
}
.review-form__agreement a {
  color: #000C2C;
  text-decoration: underline;
  font-size: 11px;
  font-weight: 400;
}
.review-form__agreement a:hover {
  text-decoration: none;
}

.review-form__product-card {
  width: 260px;
  flex-shrink: 0;
  background-color: #FFF;
  border: 1px solid #DAE0E8;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 100px;
}

.review-form__product-image {
  width: 160px;
  height: 140px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-form__product-image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.review-form__product-title {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0066CC;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-form__product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-form__product-price .actual {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFB401;
}
.review-form__product-price .actual::after {
  content: " ₽";
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.review-form__product-price .old {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6C6C6C;
  text-decoration: line-through;
}
.review-form__product-price .old::after {
  content: " ₽";
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

@media (max-width: 992px) {
  .review-form__wrapper {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .review-form__product-card {
    width: 100%;
    flex-direction: row;
    gap: 20px;
    position: static;
    padding: 16px;
  }
  .review-form__product-image {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .review-form__product-title {
    text-align: left;
    margin-bottom: 8px;
  }
  .review-form {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .review-form__title {
    font-size: 20px;
  }
  .review-form__submit {
    max-width: 100%;
  }
  .review-form__product-card {
    flex-direction: column;
  }
  .review-form__product-image {
    width: 100px;
    height: 100px;
  }
  .review-form__product-title {
    text-align: center;
  }
  .review-form__image-add,
  .review-form__image-preview {
    width: 70px;
    height: 70px;
  }
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 315px);
  gap: 16px;
  grid-template-areas: "i1 i2 i2 i3" "i1 i4 i5 i6" "i7 i7 i8 i8";
  width: 1308px;
  margin: 0 auto;
}
.catalog__grid > a {
  display: flex;
  padding: 30px 24px;
  min-height: 182px;
  background-color: #D9D9D9;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3019607843);
}
.catalog__grid > a:hover {
  background-color: #b6b6b6;
}
.catalog__grid > a:hover .catalog__card__image {
  transform: scale(1.05);
}
.catalog__grid > a > .catalog_link__title {
  font-size: 24px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 600;
  color: #000C2C;
  position: relative;
  z-index: 1;
}
.catalog__grid > a .catalog__card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
  transition: transform 0.4s ease;
  border-radius: 8px;
}
.catalog__grid > a:nth-child(1) {
  grid-area: i1;
}
.catalog__grid > a:nth-child(2) {
  grid-area: i2;
}
.catalog__grid > a:nth-child(3) {
  grid-area: i3;
}
.catalog__grid > a:nth-child(4) {
  grid-area: i4;
}
.catalog__grid > a:nth-child(5) {
  grid-area: i5;
}
.catalog__grid > a:nth-child(6) {
  grid-area: i6;
}
.catalog__grid > a:nth-child(7) {
  grid-area: i7;
}
.catalog__grid > a:nth-child(8) {
  grid-area: i8;
}

.catalog__page__sec {
  padding: 40px 0 80px;
}

.catalog__page__title {
  font-size: 36px;
  font-weight: 700;
  color: #000C2C;
  margin: 0 0 24px 0;
}

.catalog__categories {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.category__tab {
  padding: 12px;
  width: -moz-fit-content;
  width: fit-content;
  background: #F5F7FA;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2B2940;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category__tab:hover {
  background: #E8EDF2;
}
.category__tab.active {
  background: #2B2940;
  color: #FFF;
}

.catalog__content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

.catalog__filters {
  background: #FFF;
  border-radius: 12px;
  padding: 24px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.filter__group {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #EAEAEA;
}
.filter__group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #2B2940;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  text-align: left;
}
.filter__title svg {
  transition: transform 0.3s ease;
}
.filter__title.collapsed svg {
  transform: rotate(-90deg);
}

.filter__price {
  display: flex;
  gap: 12px;
}

.filter__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.filter__input:focus {
  outline: none;
  border-color: #2B2940;
}

.filter__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2B2940;
  cursor: pointer;
}
.filter__checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  border: 2px solid #EAEAEA;
  border-radius: 4px;
  cursor: pointer;
}
.filter__checkbox input[type=checkbox]:checked {
  background-color: #2B2940;
  border-color: #2B2940;
}

.filter__show-more,
.filter__collapse {
  background: none;
  border: none;
  color: #2B2940;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
}
.filter__show-more:hover,
.filter__collapse:hover {
  text-decoration: underline;
}

.catalog__products {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.catalog__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.catalog__results {
  font-size: 14px;
  color: #5A5A6E;
  margin: 0;
}

.catalog__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.catalog__sort {
  padding: 10px 16px;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #FFF;
  cursor: pointer;
}
.catalog__sort:focus {
  outline: none;
  border-color: #2B2940;
}

.catalog__view-switcher {
  display: flex;
  gap: 8px;
}

.view-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F7FA;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #5A5A6E;
}
.view-btn:hover {
  background: #E8EDF2;
}
.view-btn.active {
  background: #2B2940;
  color: #FFF;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products__grid:not(.active) {
  display: none;
}

.products__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.products__list:not(.active) {
  display: none;
}

.product__list_item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px;
  background: #FFF;
  border-radius: 12px;
  border: 1px solid #EAEAEA;
  transition: all 0.3s ease;
}
.product__list_item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product__list_image {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F7FA;
  border-radius: 8px;
  overflow: hidden;
}
.product__list_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__list_info {
  display: flex;
  flex-direction: column;
  position: relative;
}
.product__list_info .favorit__btn {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.product__list_info .favorit__btn svg {
  width: 26px;
  height: 24px;
}

.product__list_title {
  font-size: 18px;
  font-weight: 600;
  color: #000C2C;
  margin: 0 0 16px 0;
  padding-right: 40px;
}

.product__list_details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.detail__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail__label {
  font-size: 12px;
  color: #5A5A6E;
}

.detail__value {
  font-size: 14px;
  color: #2B2940;
  font-weight: 500;
}

.product__list_actions {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: auto;
}

.stock__info {
  font-size: 13px;
  color: #5A5A6E;
}

.delivery__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #5A5A6E;
}
.delivery__info div {
  white-space: nowrap;
}

.catalog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 32px 0;
}

.pagination__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F7FA;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2B2940;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination__btn:hover:not(:disabled) {
  background: #E8EDF2;
}
.pagination__btn.active {
  background: #2B2940;
  color: #FFF;
}
.pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination__btn.prev svg, .pagination__btn.next svg {
  width: 8px;
  height: 12px;
}

.catalog__show-more {
  padding: 14px 32px;
  background: #F5F7FA;
  border: 2px solid #2B2940;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #2B2940;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
}
.catalog__show-more:hover {
  background: #2B2940;
  color: #FFF;
}

.catalog__description {
  padding: 60px 0;
  background: #F5F7FA;
}
.catalog__description h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000C2C;
  margin: 0 0 16px 0;
}
.catalog__description p {
  font-size: 16px;
  color: #2B2940;
  line-height: 1.6;
  margin: 0 0 16px 0;
}
.catalog__description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.catalog__description ul li {
  font-size: 15px;
  color: #2B2940;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}
.catalog__description ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2B2940;
  font-size: 20px;
}

@media (max-width: 1200px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .catalog__content {
    grid-template-columns: 1fr;
  }
  .catalog__filters {
    position: static;
  }
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product__list_item {
    grid-template-columns: 150px 1fr;
  }
  .product__list_image {
    width: 150px;
    height: 150px;
  }
  .product__list_actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .catalog__page__title {
    font-size: 28px;
  }
  .catalog__toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .products__grid {
    grid-template-columns: 1fr;
  }
  .product__list_item {
    grid-template-columns: 1fr;
  }
  .product__list_image {
    width: 100%;
    height: 200px;
  }
  .product__list_details {
    grid-template-columns: 1fr;
  }
}
.subcategory-slider {
  position: relative;
  margin-bottom: 32px;
  padding: 0 50px;
}

.subcategory-slider__wrapper {
  overflow: hidden;
}

.subcategory-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
}

.subcategory-slider__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  padding: 16px;
  background: #F5F7FA;
  border-radius: 12px;
  text-decoration: none;
  color: #2B2940;
  transition: all 0.3s ease;
}
.subcategory-slider__item:hover {
  background: #E8EDF2;
  transform: translateY(-2px);
}
.subcategory-slider__item.active {
  background: #2B2940;
  color: #000;
}

.subcategory-slider__image {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border-radius: 8px;
  overflow: hidden;
}
.subcategory-slider__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.subcategory-slider__placeholder {
  color: #9CA3AF;
}

.subcategory-slider__name {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.subcategory-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  cursor: pointer;
  color: #2B2940;
  transition: all 0.3s ease;
  z-index: 10;
}
.subcategory-slider__nav:hover {
  background: #2B2940;
  border-color: #2B2940;
}
.subcategory-slider__nav--prev {
  left: 0;
}
.subcategory-slider__nav--next {
  right: 0;
}

@media (max-width: 768px) {
  .subcategory-slider {
    padding: 0 40px;
  }
  .subcategory-slider__item {
    min-width: 150px;
    padding: 12px;
  }
  .subcategory-slider__image {
    width: 60px;
    height: 60px;
  }
  .subcategory-slider__name {
    font-size: 12px;
  }
}
.product {
  min-width: 242px;
  max-height: 409px;
}
.product.hits > a::after, .product.sale > a::after {
  display: flex;
  padding: 5px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 18px;
  left: 14px;
  border-radius: 4px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #FFF;
}
.product.hits > a::after {
  content: "Хиты";
  background-color: #3F51B5;
}
.product.sale > a::after {
  content: "Скидка";
  background-color: #E53935;
}
.product.favorit_select .favorit__btn svg {
  fill: #1C1B1F;
}
.product > a {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 10px;
  padding: 18px 14px;
  background-color: #FFF;
  border-radius: 10px;
  border: 1px solid #EAEAEA;
  align-items: center;
}
.product > a > .favorit__btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
}
.product > a > .favorit__btn svg {
  fill: #FFF;
  transition: 0.4s;
}
.product > a > .favorit__btn:hover svg {
  fill: #1C1B1F;
}
.product > a > .product__image {
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.product > a > .product__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 600;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  color: #000C2C;
  width: 100%;
}
.product > a > .existence {
  font-weight: 500;
  font-size: 12px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1C1B1F;
  text-align: start;
  width: 100%;
}
.product > a > .existence.true {
  color: #27C840;
}
.product > a > .thing_tabs {
  display: flex;
  width: 100%;
  gap: 5px;
}
.product > a > .thing_tabs > span {
  cursor: pointer;
  display: flex;
  padding: 4px 7px;
  background-color: transparent;
  border: 1px solid #2B2940;
  color: #2B2940;
  border-radius: 10px;
  transition: 0.4s;
}
.product > a > .thing_tabs > span.active, .product > a > .thing_tabs > span:hover {
  background-color: #2B2940;
  color: #FFF;
  border-color: transparent;
}
.product > a > .price__block {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.product > a > .price__block > .price {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.product > a > .price__block > .price::after {
  content: "₽";
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.product > a > .price__block > .actual {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 18px;
  color: #2B2940;
  font-weight: 500;
}
.product > a > .price__block > .actual::after {
  font-weight: 400;
  color: #2B2940;
}
.product > a > .price__block > .old {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  color: #6C6C6C;
  font-weight: 500;
  position: relative;
}
.product > a > .price__block > .old::before {
  position: absolute;
  content: "";
  display: flex;
  height: 1px;
  width: 70%;
  background-color: #6C6C6C;
}
.product > a > .price__block > .old::after {
  text-decoration: none !important;
  font-weight: 400;
  color: #6C6C6C;
}
.product > a > .basket_btn__block {
  display: flex;
  width: 100%;
  margin-top: auto;
}
.product > a > .basket_btn__block > .btn_add_basket {
  padding-top: 8px;
  padding-bottom: 8px;
  width: 100%;
  justify-content: center;
}
.product > a > .basket_btn__block > .btn_add_basket:hover {
  border-color: transparent;
  background-color: #FFB401;
}
.product > a > .basket_btn__block > .btn_add_basket svg {
  width: 24px;
  transition: 0.4s;
}

.product__sec .bread__crumbs {
  margin-bottom: 18px;
}
.product__sec .share__btn {
  margin-left: auto;
}
.product__sec > .container > .row {
  margin-top: 20px;
  gap: 50px;
  justify-content: space-between;
}
.product__sec .product__galery {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  gap: 16px;
}
.product__sec .product__galery .product__galery_main__image {
  display: flex;
  position: relative;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #DAE0E8;
  padding: 1.5px;
}
.product__sec .product__galery .product__galery_main__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.product__sec .product__galery .product__galery_main__image .product__label {
  display: flex;
  position: absolute;
  padding: 6px 18px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  background-color: #FFB401;
  font-weight: 500;
  font-size: 12px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #FFF;
  top: 16px;
  left: 14px;
}
.product__sec .product__galery .product__galery_main__image .product__favorit_btn {
  display: flex;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 18px;
  transition: 0.4s;
  width: 32px;
  height: 29px;
}
.product__sec .product__galery .product__galery_main__image .product__favorit_btn svg path {
  transition: 0.4s;
}
.product__sec .product__galery .product__galery_main__image .product__favorit_btn:hover svg path {
  fill: #FFB401;
}
.product__sec .product__galery .product__galery_list {
  display: flex;
  width: 100%;
  gap: 8px;
  flex-wrap: wrap;
}
.product__sec .product__galery .product__galery_list .product__galery_list_item {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 1px solid #374F81;
  padding: 1.5px;
  transition: 0.4s;
  cursor: pointer;
}
.product__sec .product__galery .product__galery_list .product__galery_list_item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.product__sec .product__galery .product__galery_list .product__galery_list_item:hover {
  border-color: #FFB401;
}
.product__sec .product__main_info {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 9px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2509803922);
  padding: 65px 45px 45px 45px;
  border: 0.5px solid rgba(0, 0, 0, 0.0509803922);
  background-color: #FFF;
}
.product__sec .product__main_info .product__title {
  font-weight: 500;
  font-size: 24px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #2B2940;
  margin-bottom: 10px;
}
.product__sec .product__main_info .product__rate_count_reviews {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 30px;
}
.product__sec .product__main_info .product__rate_count_reviews .product__reate_line {
  display: flex;
  gap: 4px;
}
.product__sec .product__main_info .product__rate_count_reviews .product__reviews_count {
  font-weight: 400;
  font-size: 14px;
  color: #6C6C6C;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.product__sec .product__main_info .product__existence {
  font-weight: 500;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 20px;
  color: #27C840;
  margin-bottom: 10px;
}
.product__sec .product__main_info .product__thing_tabs {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  gap: 5px;
}
.product__sec .product__main_info .product__thing_tabs > span {
  cursor: pointer;
  display: flex;
  padding: 4px 7px;
  background-color: transparent;
  border: 1px solid #2B2940;
  color: #2B2940;
  border-radius: 10px;
  transition: 0.4s;
}
.product__sec .product__main_info .product__thing_tabs > span.active, .product__sec .product__main_info .product__thing_tabs > span:hover {
  background-color: #2B2940;
  color: #FFF;
  border-color: transparent;
}
.product__sec .product__main_info .product__price_block {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product__sec .product__main_info .product__price_block > .product__price {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.product__sec .product__main_info .product__price_block > .product__price::after {
  content: "₽";
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 20px;
}
.product__sec .product__main_info .product__price_block > .actual {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 32px;
  color: #2B2940;
  font-weight: 500;
}
.product__sec .product__main_info .product__price_block > .actual::after {
  font-weight: 400;
  color: #2B2940;
}
.product__sec .product__main_info .product__price_block > .old {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 32px;
  color: #6C6C6C;
  font-weight: 500;
  position: relative;
}
.product__sec .product__main_info .product__price_block > .old::before {
  position: absolute;
  content: "";
  display: flex;
  height: 1px;
  width: 80%;
  background-color: #6C6C6C;
  margin-top: 5px;
}
.product__sec .product__main_info .product__price_block > .old::after {
  text-decoration: none !important;
  font-weight: 400;
  color: #6C6C6C;
}
.product__sec .product__main_info .product__amount_calc {
  display: flex;
  border-radius: 8px;
  background-color: #EDF0F4;
  padding: 2px 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 36px;
}
.product__sec .product__main_info .product__amount_calc .product__amount_calc__btn {
  cursor: pointer;
  padding: 5px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000C2C;
}
.product__sec .product__main_info .product__amount_calc .product__amount_calc__input {
  border: none;
  outline: none;
  background-color: transparent;
  width: 60px;
  font-weight: 400;
  font-size: 14px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000000;
  text-align: center;
}
.product__sec .product__main_info .product__add_basket {
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: #2B2940;
  padding: 16px 8px;
  width: 100%;
  transition: 0.4s;
  justify-content: center;
  align-items: center;
  display: flex;
  cursor: pointer;
  margin-top: 65px;
  color: #FFF;
  font-size: 30px;
}
.product__sec .product__main_info .product__add_basket svg {
  width: 50px;
  height: 50px;
}
.product__sec .product__main_info .product__add_basket svg path {
  transition: 0.4s;
}
.product__sec .product__main_info .product__add_basket:hover {
  background-color: transparent;
  border-color: #000C2C;
  color: #000C2C;
}
.product__sec .product__main_info .product__add_basket:hover svg path {
  fill: #000C2C;
}

.active__category__sec {
  padding-top: 50px;
  padding-bottom: 0;
}
.active__category__sec .active__category {
  width: 100%;
  margin-bottom: 20px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #2B2940;
}

.similar_prod__sec > .container {
  gap: 20px;
}

.product_info__sec .container {
  align-items: start;
}
.product_info__sec .container > .column {
  max-width: 585px;
}
.product_info__sec .product_info__list {
  display: flex;
  flex-direction: column;
  background-color: #D9D9D9;
  width: 100%;
}
.product_info__sec .product_info__list .product_info__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #D9D9D9;
}
.product_info__sec .product_info__list .product_info__item {
  position: relative;
  background-color: #fff;
  padding: 16px 0;
  width: 100%;
}
.product_info__sec .product_info__list .product_info__item .product_info__item__title {
  margin-bottom: 16px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #2B2940;
}
.product_info__sec .product_info__list .product_info__item#description > p {
  font-weight: 500;
  font-size: 12px;
  color: #6C6C6C;
  font-family: inherit;
}
.product_info__sec .feature__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
.product_info__sec .feature__list .feature__item {
  display: flex;
  width: 100%;
  gap: 10px;
}
.product_info__sec .feature__list .feature__item .feature__item__title {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  color: #6C6C6C;
  white-space: nowrap;
}
.product_info__sec .feature__list .feature__item .feature__item__space_border {
  width: 100%;
  border-bottom: 1px dashed #DAE0E8;
}
.product_info__sec .feature__list .feature__item .feature__item__value {
  font-weight: 500;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  color: #2B2940;
  white-space: nowrap;
}
.product_info__sec .documents__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
.product_info__sec .documents__list .documents__item {
  width: 100%;
}
.product_info__sec .documents__list .documents__item a {
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  display: flex;
  align-items: center;
}
.product_info__sec .documents__list .documents__item a img {
  width: 40px;
  height: 40px;
}
.product_info__sec #reviews .product_info__item__title {
  display: flex;
  align-items: center;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 24px;
  font-weight: 500;
}
.product_info__sec #reviews .product_info__item__title .reviews_write__btn {
  margin-left: auto;
  display: flex;
  border: 1px solid #374F81;
  border-radius: 8px;
  padding: 18px 33px;
  font-weight: 700;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  color: #374F81;
  transition: 0.4s;
  cursor: pointer;
}
.product_info__sec #reviews .product_info__item__title .reviews_write__btn:hover {
  background-color: #374F81;
  color: #fff;
}
.product_info__sec #reviews .reviews__sort_btns p {
  font-weight: 400;
  font-size: 14px;
  color: #6C6C6C;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.product_info__sec #description,
.product_info__sec #feature,
.product_info__sec #documents,
.product_info__sec #reviews {
  scroll-margin-top: 50px;
  /* чтобы заголовок не уезжал под фикс-меню */
}

.product_reviews__list {
  padding-top: 17px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.product_reviews__list .product_reviews__item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.product_reviews__list .product_reviews,
.product_reviews__list .product_reviews__respons {
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid #DAE0E8;
}
.product_reviews__list .product_reviews .product_reviews__name_user,
.product_reviews__list .product_reviews__respons .product_reviews__name_user {
  width: 100%;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000C2C;
  margin-bottom: 5px;
}
.product_reviews__list .product_reviews .product_reviews__date_add,
.product_reviews__list .product_reviews__respons .product_reviews__date_add {
  width: 100%;
  font-weight: 400;
  font-size: 12px;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
  margin-bottom: 20px;
}
.product_reviews__list .product_reviews .hor__line,
.product_reviews__list .product_reviews__respons .hor__line {
  width: 100%;
  height: 1px;
  background-color: #DAE0E8;
  margin-bottom: 16px;
}
.product_reviews__list .product_reviews .product_reviews__rate_line,
.product_reviews__list .product_reviews__respons .product_reviews__rate_line {
  margin-bottom: 10px;
}
.product_reviews__list .product_reviews .product_reviews__body_adva,
.product_reviews__list .product_reviews__respons .product_reviews__body_adva {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product_reviews__list .product_reviews .product_reviews__body_adva p.head,
.product_reviews__list .product_reviews__respons .product_reviews__body_adva p.head {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000C2C;
}
.product_reviews__list .product_reviews .product_reviews__body_adva p.body,
.product_reviews__list .product_reviews__respons .product_reviews__body_adva p.body {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6C6C6C;
}
.product_reviews__list .product_reviews .product_reviews__body_adva p.body b,
.product_reviews__list .product_reviews__respons .product_reviews__body_adva p.body b {
  font-weight: 500;
}
.product_reviews__list .product_reviews .product_reviews__grade,
.product_reviews__list .product_reviews__respons .product_reviews__grade {
  display: flex;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 8px;
}
.product_reviews__list .product_reviews {
  border-radius: 6px 6px 0 0;
  border-bottom: none;
}
.product_reviews__list .product_reviews__respons {
  border-radius: 0 0 6px 6px;
  background-color: rgba(237, 240, 244, 0.6);
}

.buyers__sec {
  padding-bottom: 100px;
}
.buyers__sec .container {
  flex-direction: row;
  gap: 50px;
}
.buyers__sec .buyers__nav {
  display: flex;
  flex-direction: column;
  max-width: 330px;
  width: 100%;
  gap: 14px;
  position: relative;
}
.buyers__sec .buyers__nav .from__ask {
  position: relative;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  transition: 0.4s;
  margin-left: -200%;
  visibility: hidden;
  opacity: 0;
}
.buyers__sec .buyers__nav .from__ask.active {
  margin-left: 0;
  visibility: visible;
  opacity: 1;
}
.buyers__sec .buyers__nav .from__ask h3 {
  font-weight: 600;
  font-size: 28px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
  margin-bottom: 12px;
}
.buyers__sec .buyers__nav .from__ask input, .buyers__sec .buyers__nav .from__ask textarea {
  border: none;
  outline: none;
  background-color: transparent;
  border: 1px solid #DAE0E8;
  border-radius: 8px;
  padding: 20px 16px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
}
.buyers__sec .buyers__nav .from__ask input::-moz-placeholder, .buyers__sec .buyers__nav .from__ask textarea::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
}
.buyers__sec .buyers__nav .from__ask input::placeholder, .buyers__sec .buyers__nav .from__ask textarea::placeholder {
  font-weight: 400;
  font-size: 14px;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
}
.buyers__sec .buyers__nav .from__ask textarea {
  resize: none;
  height: 109px;
}
.buyers__sec .buyers__nav .from__ask .btn__form {
  padding: 18px;
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  border: 1px solid #FFB401;
  font-weight: 700;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #FFB401;
  margin-top: 12px;
  transition: 0.4s;
  cursor: pointer;
}
.buyers__sec .buyers__nav .from__ask .btn__form:hover {
  color: #2B2940;
  background-color: transparent;
  border-color: #2B2940;
}
.buyers__sec .buyers__layout_list {
  position: relative;
  overflow: hidden;
  max-width: 656px;
  width: 100%;
  height: 100%;
}
.buyers__sec .buyers__layout_list .buyers__layout_item {
  position: absolute;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background-color: #EFEFEF;
  gap: 16px;
  padding: 24px;
  width: 656px;
  top: 0;
  right: -200%;
  transition: 0.7s;
  visibility: hidden;
  opacity: 0;
}
.buyers__sec .buyers__layout_list .buyers__layout_item.active {
  position: relative;
  visibility: visible;
  opacity: 1;
  right: 0;
}
.buyers__sec .buyers__layout_list .buyers__layout_item .buyers__layout_item-title {
  display: flex;
  width: 100%;
  gap: 28px;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
}
.buyers__sec .buyers__layout_list .buyers__layout_item .buyers__layout_item-title .buyers__layout_item-title_icon {
  width: 78px;
  height: 78px;
  border-radius: 8px;
  background-color: #2B2940;
  display: flex;
  justify-content: center;
  align-items: center;
}
.buyers__sec .buyers__layout_list .buyers__layout_item .buyers__layout_item-title .buyers__layout_item-title_icon svg {
  width: 48px;
  height: 48px;
}
.buyers__sec .buyers__layout_list .buyers__layout_item .buyers__layout_item-title .buyers__layout_item-title_icon svg path {
  fill: #FFF;
}
.buyers__sec .buyers__layout_list .buyers__layout_item .buyers__layout_item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.buyers__sec .buyers__layout_list .buyers__layout_item p {
  font-weight: 400;
  font-size: 16px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000000;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.buyers__sec .buyers__layout_list .buyers__layout_item p span {
  display: flex;
  gap: 12px;
  max-width: 400px;
  align-items: start;
}
.buyers__sec .buyers__layout_list .buyers__layout_item p span img {
  width: 20px;
  height: 20px;
}
.buyers__sec .buyers__layout_list .buyers__layout_item h4 {
  font-weight: 600;
  font-size: 20px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
}

.faq__layout_item {
  background-color: transparent !important;
}

.faq__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}

.faq__category {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq__layout_item_payment {
  display: flex;
  gap: 20px;
  align-items: center;
}

.faq__layout_item_payment {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}
.faq__layout_item_payment h2 {
  font-size: 28px;
  font-weight: 600;
  color: #000000;
}
.faq__layout_item_payment img {
  width: 32px;
  height: 32px;
}

.faq__questions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: #EFEFEF;
  padding: 26px;
  border-radius: 10px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq__item.active {
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(43, 41, 64, 0.08);
}

.faq__picture-wrapper {
  width: 78px;
  height: 78px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq__picture-wrapper.active {
  background-color: #2B2940;
}
.faq__picture-wrapper.active svg path {
  fill: #fff;
}
.faq__picture-wrapper svg {
  width: 38px;
  height: 37px;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  text-align: left;
  transition: all 0.3s ease;
}
.faq__question img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.faq__question:hover {
  color: #F5A623;
}
.faq__question:hover img {
  opacity: 1;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.faq__item.active .faq__answer {
  max-height: 1000px;
  padding: 16px 0px 0px 0px;
}
.faq__answer p {
  margin: 0 0 16px 0;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.faq__answer ol {
  margin: 0;
}
.faq__answer ol li {
  color: #000;
  font-size: 16px;
  line-height: 20px;
}
.faq__answer ol li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq__container {
    gap: 32px;
    margin-top: 24px;
  }
  .faq__category {
    gap: 16px;
  }
  .faq__category-title {
    font-size: 20px;
    gap: 10px;
  }
  .faq__category-title img {
    width: 28px;
    height: 28px;
  }
  .faq__questions {
    gap: 12px;
  }
  .faq__question {
    padding: 16px 20px;
    font-size: 15px;
    gap: 12px;
  }
  .faq__question img {
    width: 20px;
    height: 20px;
  }
  .faq__item.active .faq__answer {
    padding: 0 20px 20px 52px;
  }
  .faq__answer p {
    font-size: 15px;
  }
  .faq__answer ol li {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .faq__container {
    gap: 24px;
    margin-top: 20px;
  }
  .faq__category-title {
    font-size: 18px;
    gap: 8px;
  }
  .faq__category-title img {
    width: 24px;
    height: 24px;
  }
  .faq__question {
    padding: 14px 16px;
    font-size: 14px;
    gap: 10px;
  }
  .faq__item.active .faq__answer {
    padding: 0 16px 16px 46px;
  }
  .faq__answer p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .faq__answer ol {
    padding-left: 16px;
  }
  .faq__answer ol li {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 6px;
  }
}
.baner__slider {
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.baner__slider.is-grabbing .slider__line {
  transition: none;
  cursor: grabbing;
}
.baner__slider > .slider__line {
  display: flex;
  width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s ease;
  touch-action: pan-y;
  cursor: grab;
}
.baner__slider > .slider__line > .slide {
  flex: 0 0 100%;
  width: 100%;
  height: 448px;
  border-radius: 18px;
  background-color: #C4C4C4;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.baner__slider > .slider__line > .slide > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
  draggable: false;
}
.baner__slider > .slider__nav {
  display: flex;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 11px auto 0;
}
.baner__slider > .slider__nav > .slide__button {
  display: flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #C4C4C4;
  cursor: pointer;
  transition: 0.4s;
}
.baner__slider > .slider__nav > .slide__button.active, .baner__slider > .slider__nav > .slide__button:hover {
  background-color: #000C2C;
}

.slider__product {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  position: relative;
}
.slider__product .slider__line__wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.slider__product .slider__line {
  display: flex;
  gap: 5px;
  transition: transform 400ms ease;
  will-change: transform;
  align-items: stretch;
}
.slider__product > .slider__button {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  background: white;
  border: 1px solid #E0E0E0;
  z-index: 10;
  transition: all 0.3s ease;
}
.slider__product > .slider__button:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  border-color: #2B2940;
  transform: scale(1.05);
}
.slider__product > .slider__button:active {
  transform: scale(0.95);
}
.slider__product > .slider__button.next svg {
  transform: rotate(180deg);
}
.slider__product > .slider__button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.slider__product > .slider__button:disabled:hover {
  transform: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  border-color: #E0E0E0;
}
.slider__product > .slider__button svg {
  pointer-events: none;
}
.slider__product .product {
  flex-shrink: 0;
  box-sizing: border-box;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1001;
  background-color: #ffffff;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 12px 0;
  border-bottom: 1px solid #2B2940;
}
header .container .header_logo img {
  max-width: 160px;
}
header .container .header_navigation {
  display: flex;
  align-items: center;
  gap: 22px;
}
header .container .header_navigation a:not(.catalog_btn) {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2B2940;
  transition: 0.4s;
}
header .container .header_navigation a:not(.catalog_btn):hover {
  color: #FFB401;
}
header .container .header__actions ul {
  display: flex;
  align-items: center;
  gap: 37px;
}
header .container .header__actions ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
header .container .header__actions ul a svg path {
  transition: 0.4s;
}
header .container .header__actions ul a:hover svg path {
  fill: #FFB401;
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
footer > .container {
  flex-direction: row;
  border-radius: 18px;
  background-color: #2B2940;
  padding: 64px;
  gap: 20px;
}
footer > .container > .footer__logo {
  max-width: 160px;
  width: 100%;
}
footer > .container > .footer__nav {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
}
footer > .container > .footer__nav > .column {
  max-width: 220px;
  width: 100%;
}
footer > .container > .footer__nav > .column > .title__footer_nav {
  font-size: 18px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 600;
  color: #DAE0E8;
  margin-bottom: 14px;
  width: 100%;
}
footer > .container > .footer__nav > .column > .footer__link_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
footer > .container > .footer__nav > .column > .footer__link_list > li {
  width: 100%;
  display: flex;
  justify-content: start;
  gap: 5px;
}
footer > .container > .footer__nav > .column > .footer__link_list > li.social__link {
  margin-top: 10px;
}
footer > .container > .footer__nav > .column > .footer__link_list > li > a {
  font-weight: 300;
  font-size: 14px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-style: normal;
  color: #DAE0E8;
  transition: 0.4s;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
}
footer > .container > .footer__nav > .column > .footer__link_list > li > a > svg path {
  transition: 0.4s;
}
footer > .container > .footer__nav > .column > .footer__link_list > li > a:hover svg path {
  fill: #FFB401;
}
footer > .container > .footer__nav > .column > .footer__link_list > li > a:hover {
  color: #FFB401;
}
footer > .container > .footer__dop_info {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 250px;
  width: 100%;
}
footer > .container > .footer__dop_info > .column {
  gap: 5px;
}
footer > .container > .footer__dop_info > .column > h3 {
  font-weight: 600;
  font-size: 18px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #DAE0E8;
}
footer > .container > .footer__dop_info > .column > p {
  font-weight: 400;
  font-size: 14px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #DAE0E8;
}

.about__sec_baner {
  background-color: #EEEEEE;
}
.about__sec_baner .container {
  align-items: center;
  padding: 20px 0;
}
.about__sec_baner h2 {
  font-weight: 400;
  font-size: 36px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.about__sec {
  padding-top: 50px;
}
.about__sec .container {
  gap: 64px;
}
.about__sec .about__row {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}
.about__sec .about__row .about__yelow_block {
  max-width: 534px;
  width: 100%;
  padding: 17px;
  border: 1px solid #FFB401;
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
}
.about__sec .about__row .about__text_block {
  display: flex;
  max-width: 534px;
  width: 100%;
  flex-direction: column;
  gap: 24px;
}
.about__sec .about__row .about__text_block h3 {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
.about__sec .about__row .about__text_block p {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 30px;
}
.about__sec .about__row .about__image_block {
  display: flex;
  width: 100%;
  max-width: 534px;
}
.about__sec .about__row .about__image_block img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  -o-object-position: center;
     object-position: center;
}

.about_steps__sec {
  padding-bottom: 100px;
}
.about_steps__sec .container {
  gap: 80px;
}
.about_steps__sec .about_sec__title {
  font-weight: 600;
  font-size: 24px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
}
.about_steps__sec .about_steps__list {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 1;
  justify-content: space-between;
}
.about_steps__sec .about_steps__list::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  left: 0;
  top: 47px;
  z-index: 1;
}
.about_steps__sec .about_steps__list li {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 200px;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about_steps__sec .about_steps__list li .about_step__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  width: 78px;
  height: 78px;
  background-color: #2B2940;
  margin-bottom: 25px;
}
.about_steps__sec .about_steps__list li .about_step__icon img {
  width: 48px;
  height: 48px;
}
.about_steps__sec .about_steps__list li .about_step__number {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  color: #000;
}
.about_steps__sec .about_steps__list li .about_step__description {
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  color: #000;
}

.contact__sec {
  padding-bottom: 100px;
}
.contact__sec .container {
  gap: 32px;
}
.contact__sec > h2 {
  font-weight: 600;
  font-size: 32px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #2B2940;
  margin-bottom: 4px;
}
.contact__sec .contact__list_card {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.contact__sec .contact__list_card li {
  display: flex;
  flex-direction: column;
  max-width: 372px;
  width: 100%;
  border-radius: 7px;
  border: 1px solid #D9D9D9;
  padding: 14px;
  gap: 23px;
}
.contact__sec .contact__list_card li img {
  width: 53px;
  height: 53px;
  margin-bottom: -5px;
}
.contact__sec .contact__list_card li h3 {
  font-weight: 600;
  font-size: 24px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
}
.contact__sec .contact__list_card li p {
  font-weight: 400;
  font-size: 16px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
}
.contact__sec .contact__list_card li a {
  font-weight: 700;
  font-size: 16px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
  transition: 0.4s;
}
.contact__sec .contact__list_card li a:hover {
  color: #FFB401;
}
.contact__sec .contact__list_text {
  display: flex;
  gap: 90px;
  width: 100%;
}
.contact__sec .contact__list_text li {
  width: 100%;
  max-width: 373px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__sec .contact__list_text li p {
  font-weight: 400;
  font-size: 16px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
}
.contact__sec .contact__list_text li p a {
  font-weight: 400;
  font-size: 16px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
  border-bottom: 1px solid #000;
  transition: 0.4s;
}
.contact__sec .contact__list_text li p a:hover {
  color: #FFB401;
  border-color: #FFB401;
}

.privacy-policy__section .privacy-policy__content {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  font-weight: 400;
  font-size: 16px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
  line-height: 30px;
  max-width: 856px;
}
.privacy-policy__section .privacy-policy__content ul {
  padding-left: 35px;
  list-style: disc;
}
.privacy-policy__section .privacy-policy__content ul li {
  list-style: disc;
}

.requisite__sec .requisite__table {
  max-width: 960px;
  width: 100%;
  margin-left: 20px;
  background-color: rgba(0, 0, 0, 0.2);
}
.requisite__sec .requisite__table tr {
  width: 100%;
  background-color: #fff;
}
.requisite__sec .requisite__table tr td:nth-child(2) {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
.requisite__sec .requisite__table tr td {
  align-self: flex-start;
  width: 50%;
  padding: 20px;
  background-color: #fff;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.favorit__section .favorit_empty__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 50vh;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.favorit__section .favorit_empty__content p {
  font-weight: 400;
  font-size: 12px;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
  text-align: center;
}
.favorit__section .favorit_empty__content .btn {
  background-color: #FFB401;
  color: #fff;
  padding: 18px 32px;
  font-weight: 700;
  font-size: 16px;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.favorit__section .favorit_empty__content .btn:hover {
  border-color: transparent;
  background-color: #2B2940;
}
.favorit__section .favorit__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.favorit__section .favorit__content .favorit_btn__bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.favorit__section .favorit__content .favorit_btn__bar .btn__block {
  display: flex;
  gap: 10px;
}
.favorit__section .favorit__content .favorit__list {
  display: flex;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}
.favorit__section .favorit__content .favorit__list .product {
  max-width: 242px;
  position: relative;
}

.cart__section {
  padding-bottom: 60px;
}
.cart__section .cart__wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .cart__section .cart__wrapper {
    flex-direction: column;
  }
}
.cart__section .cart__main {
  flex: 1;
  min-width: 0;
}
.cart__section .cart__sidebar {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
}
@media (max-width: 991px) {
  .cart__section .cart__sidebar {
    width: 100%;
    position: static;
    order: -1;
  }
}
.cart__section .cart__search {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 0;
  margin-bottom: 20px;
  overflow: hidden;
}
.cart__section .cart__search-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  outline: none;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  color: #2B2940;
  background: transparent;
}
.cart__section .cart__search-input::-moz-placeholder {
  color: #9A9A9A;
}
.cart__section .cart__search-input::placeholder {
  color: #9A9A9A;
}
.cart__section .cart__search-btn {
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart__section .cart__search-btn:hover svg path {
  stroke: #FFB401;
}
.cart__section .cart_empty__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 300px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px;
  background: #F9F9F9;
  border-radius: 12px;
}
.cart__section .cart_empty__content p {
  font-weight: 400;
  font-size: 14px;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
  text-align: center;
  line-height: 1.5;
}
.cart__section .cart_empty__content .btn {
  background-color: #FFB401;
  color: #fff;
  padding: 18px 32px;
  font-weight: 700;
  font-size: 16px;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cart__section .cart_empty__content .btn:hover {
  background-color: #2B2940;
}
.cart__section .cart__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 16px;
}
.cart__section .cart__loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #E5E5E5;
  border-top-color: #FFB401;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.cart__section .cart__loading span {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  color: #6C6C6C;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.cart__section .cart__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart__section .cart__toolbar-actions {
  display: flex;
  gap: 10px;
}
.cart__section .select_all__btn,
.cart__section .print__btn,
.cart__section .share__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 13px;
  color: #2B2940;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cart__section .select_all__btn:hover,
.cart__section .print__btn:hover,
.cart__section .share__btn:hover {
  border-color: #FFB401;
  color: #FFB401;
}
.cart__section .select_all__btn:hover svg path,
.cart__section .print__btn:hover svg path,
.cart__section .share__btn:hover svg path {
  fill: #FFB401;
}
.cart__section .cart__table-header {
  display: grid;
  grid-template-columns: 1fr 120px 150px 120px 40px;
  gap: 16px;
  padding: 16px 20px;
  background: #F5F5F5;
  border-radius: 8px 8px 0 0;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #6C6C6C;
}
@media (max-width: 767px) {
  .cart__section .cart__table-header {
    display: none;
  }
}
.cart__section .cart__col--product {
  text-align: left;
}
.cart__section .cart__col--price, .cart__section .cart__col--quantity, .cart__section .cart__col--total {
  text-align: center;
}
.cart__section .cart__items {
  border: 1px solid #E5E5E5;
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.cart__section .cart__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.cart__section .clear__btn {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  color: #6C6C6C;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cart__section .clear__btn:hover {
  border-color: #FF4D4D;
  color: #FF4D4D;
}
.cart__section .cart__summary {
  background: #F9F9F9;
  border-radius: 12px;
  padding: 24px;
}
.cart__section .cart__summary-title {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2B2940;
  margin-bottom: 8px;
}
.cart__section .cart__summary-info {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  color: #6C6C6C;
  margin-bottom: 20px;
}
.cart__section .cart__summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #E5E5E5;
  margin-bottom: 20px;
}
.cart__section .cart__summary-label {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2B2940;
}
.cart__section .cart__summary-price {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2B2940;
}
.cart__section .cart__summary-empty {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 13px;
  color: #9A9A9A;
  padding: 16px 0;
  border-top: 1px solid #E5E5E5;
  margin-bottom: 20px;
}
.cart__section .cart__checkout-btn {
  width: 100%;
  padding: 18px 24px;
  background: #FFB401;
  border: none;
  border-radius: 8px;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cart__section .cart__checkout-btn:hover:not(:disabled) {
  background: #2B2940;
}
.cart__section .cart__checkout-btn:disabled {
  background: #E5E5E5;
  color: #9A9A9A;
  cursor: not-allowed;
}
.cart__section .cart__recommendations {
  margin-top: 60px;
}
.cart__section .cart__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
}
.cart__section .cart__tab {
  padding: 14px 24px;
  background: #F5F5F5;
  border: none;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6C6C6C;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cart__section .cart__tab:first-child {
  border-radius: 8px 0 0 8px;
}
.cart__section .cart__tab:last-child {
  border-radius: 0 8px 8px 0;
}
.cart__section .cart__tab.active {
  background: #2B2940;
  color: #FFFFFF;
}
.cart__section .cart__tab:hover:not(.active) {
  background: #E5E5E5;
}
.cart__section .cart__recommendations-slider .products__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cart__section .cart__recommendations-slider .products__list .product {
  max-width: 242px;
}

.cart__item {
  display: grid;
  grid-template-columns: 1fr 120px 150px 120px 40px;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
}
.cart__item:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .cart__item {
    grid-template-columns: 80px 1fr;
    gap: 12px;
    position: relative;
    padding: 16px;
  }
}
.cart__item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.cart__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cart__item-image {
    grid-row: span 2;
  }
}
.cart__item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .cart__item-info {
    grid-column: 2;
  }
}
.cart__item-title {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2B2940;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart__item-title:hover {
  color: #FFB401;
}
.cart__item-availability {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 12px;
  color: #FF4D4D;
}
.cart__item-availability.in-stock {
  color: #4CAF50;
}
.cart__item-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media (max-width: 767px) {
  .cart__item-price {
    align-items: flex-start;
    grid-column: 2;
  }
}
.cart__item-price-value {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2B2940;
}
.cart__item-price-types {
  display: flex;
  gap: 4px;
}
.cart__item-unit {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 12px;
  color: #6C6C6C;
  background: #F5F5F5;
  padding: 4px 8px;
  border-radius: 4px;
}
.cart__item-quantity {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cart__item-quantity {
    justify-content: flex-start;
    grid-column: 2;
  }
}
.cart__item-total {
  text-align: center;
}
@media (max-width: 767px) {
  .cart__item-total {
    text-align: left;
    grid-column: 2;
  }
}
.cart__item-total-value {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2B2940;
}
.cart__item-remove {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .cart__item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
  }
}
.cart__item-remove:hover {
  background: #FFF0F0;
}
.cart__item-remove:hover svg path {
  stroke: #FF4D4D;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  overflow: hidden;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F5F5;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #2B2940;
  transition: all 0.2s ease;
}
.quantity-btn:hover:not(:disabled) {
  background: #FFB401;
  color: #FFFFFF;
}
.quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quantity-input {
  width: 50px;
  height: 36px;
  text-align: center;
  border: none;
  outline: none;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2B2940;
  background: #FFFFFF;
  /* Убираем стрелки у input[type=number] */
  -moz-appearance: textfield;
}
.quantity-input::-webkit-outer-spin-button, .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-type-btn {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 11px;
  color: #6C6C6C;
  background: #F5F5F5;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.price-type-btn:hover {
  background: #E5E5E5;
}
.price-type-btn.active {
  background: #2B2940;
  color: #FFFFFF;
}

.auth__sec {
  height: 100vh;
  padding: 0;
  display: flex;
  width: 100%;
}
.auth__sec .image__container {
  width: 50%;
  display: flex;
}
.auth__sec .image__container img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.auth__sec .auth__container {
  width: 50%;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 37px;
}
.auth__sec .auth__container .auth__logo {
  width: 195px;
  height: 42px;
  margin-bottom: 30px;
}
.auth__sec .auth__container .auth__logo img {
  width: 100%;
  height: 100%;
}
.auth__sec .password__reset_success p {
  font-weight: 400;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
  text-align: center;
}

.auth__form {
  display: flex;
  flex-direction: column;
  max-width: 396px;
  width: 100%;
  gap: 8px;
}
.auth__form .input_label__block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.auth__form .input_label__block label {
  font-weight: 400;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
}
.auth__form .input_label__block .input__custom {
  display: flex;
  border: none;
  outline: none;
  border: 1px solid #DAE0E8;
  border-radius: 8px;
  background-color: transparent;
  padding: 15px 16px 29px 16px;
  font-weight: 400;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000;
}
.auth__form .input_label__block .input__custom::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
}
.auth__form .input_label__block .input__custom::placeholder {
  font-weight: 400;
  font-size: 14px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
}
.auth__form .input_label__block .input__custom:focus {
  background-color: #DAE0E8;
}
.auth__form .input_label__block .input__custom.fill {
  background-color: #DAE0E8;
}
.auth__form .btn_auth {
  margin-top: 36px;
  margin-bottom: 16px;
  display: flex;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #2B2940;
  border-radius: 8px;
  color: #FFF;
  border: 1px solid transparent;
  transition: 0.4s;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 24px;
  font-weight: 400;
  width: 100%;
  padding: 10px 40px;
}
.auth__form .btn_auth:hover {
  background-color: transparent;
  border-color: #2B2940;
  color: #2B2940;
}
.auth__form .form__text {
  margin: 0 auto 16px auto;
  text-align: center;
  max-width: 258px;
  width: 100%;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6C6C6C;
}
.auth__form .form__text a {
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6C6C6C;
  border-bottom: 1px solid #6C6C6C;
  transition: 0.4s;
}
.auth__form .form__text a:hover {
  color: #2B2940;
  border-color: #2B2940;
}
.auth__form .text__btn_form {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: 0.4s;
}
.auth__form .text__btn_form:hover {
  border-color: #2B2940;
}
.auth__form .account-type {
  display: flex;
  gap: 45px;
  width: 100%;
  justify-content: center;
}
.auth__form .account-type .radio {
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.auth__form .account-type .radio input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.auth__form .account-type .radio input[type=radio]:checked + .radio__icon {
  background-color: #2B2940;
}
.auth__form .account-type .radio input[type=radio]:checked ~ .radio__text {
  color: #2B2940;
}
.auth__form .account-type .radio .radio__icon {
  width: 16px;
  height: 16px;
  box-sizing: content-box;
  border: 2px solid #8C8C8C;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.2s ease;
}
.auth__form .account-type .radio .radio__text {
  font-size: 14px;
  font-weight: 400;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #6C6C6C;
}

.auth__navigation {
  display: flex;
  gap: 5px;
  max-width: 370px;
  width: 100%;
  justify-content: center;
}
.auth__navigation a {
  display: flex;
  max-width: 180px;
  justify-content: center;
  padding: 12px 2px;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  font-family: "OpenSans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #2B2940;
  transition: 0.4s;
  border-radius: 8px;
}
.auth__navigation a:hover {
  background-color: #2B2940;
  color: #fff;
}
.auth__navigation a.active {
  background-color: #2B2940;
  color: #fff;
}