@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Raleway", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

h1 {
  font-family: "Prosto One", sans-serif;
  font-size: 40px;
  font-weight: 400;
}

h2 {
  font-family: "Prosto One", sans-serif;
  font-size: 30px;
  font-weight: 400;
}

h3 {
  font-family: "Prosto One", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1400px;
}

h2 {
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
}

.m-0 {
  margin: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.modal_window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  z-index: 1000;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal_content {
  position: relative;
}

#register_modal {
  overflow-y: auto;
}

.cat_pagination {
  align-items: center;
  justify-content: center;
}
.cat_pagination li:first-child a {
  color: var(--seryu-light);
  font-size: 25px;
}
.cat_pagination li:last-child a {
  color: var(--seryu-light);
  font-size: 25px;
}
.cat_pagination li a {
  font-size: 18px;
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 500;
  transition: all 0.5s ease;
  border-radius: 5px;
  line-height: 32px;
}
.cat_pagination li a:hover, .cat_pagination li a.active {
  color: white;
  background: var(--orange-main);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  max-width: 250px;
  width: 100%;
  height: 50px;
  border-radius: 5px;
}

.main_btn {
  background: var(--orange-main);
  color: white;
}
.main_btn:hover {
  background: #000;
  color: white;
}

.sec_btn {
  background: var(--svetloseryu);
  color: black;
}
.sec_btn:hover {
  background: var(--orange-main);
  color: white;
}

.grey_btn {
  background: var(--seryu-mid);
  color: white;
}
.grey_btn:hover {
  background: var(--orange-main);
  color: white;
}

.black_btn {
  background: var(--black-mid);
  color: white;
}
.black_btn:hover {
  background: var(--orange-main);
  color: white;
}

.prod_card {
  display: flex;
  flex-direction: column;
  max-width: 310px;
  width: 100%;
  height: 360px;
  padding: 12px;
  background: white;
  border-radius: 5px;
  position: relative;
}
.prod_card .prod_link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.prod_card .label {
  padding: 4px 6px;
  font-size: 14px;
  color: white;
  height: 28px;
}
.prod_card.new .label {
  background: #180A3E;
}
.prod_card.discount .label {
  background: var(--orange-light);
}
.prod_card .card_header {
  display: flex;
  justify-content: space-between;
}
.prod_card .card_header .card_header_actions {
  margin-left: auto;
  gap: 10px;
  display: flex;
}
.prod_card .card_header .card_header_actions a {
  color: var(--seryu-mid);
  opacity: 0.5;
  transition: all 0.5s ease;
}
.prod_card .card_header .card_header_actions a:hover {
  color: #000;
  opacity: 1;
}
.prod_card .prod_card__slider {
  width: 100%;
  margin-top: 4px;
  margin-bottom: 14px;
}
.prod_card .prod_card__slider img {
  max-width: 212px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.prod_card h3 {
  font-size: 16px;
  margin-top: 10px;
}
.prod_card .card_footer {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.prod_card .card_footer .price_box {
  display: flex;
  font-size: 18px;
  font-weight: 600;
}
.prod_card .card_footer .price_box .old_price {
  font-size: 16px;
  text-decoration: line-through;
  color: #DEDBDB;
  font-weight: normal;
  margin-left: 4px;
}
.prod_card .card_footer .status {
  font-size: 12px;
  margin-left: 15px;
  color: #149b5d;
  margin-right: auto;
}
.prod_card .card_footer .to_cart {
  position: absolute;
  display: flex;
  width: 60px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange-main);
  border-radius: 5px 0px 5px 0px;
  font-size: 20px;
  right: 0;
  bottom: 0;
  color: var(--orange-main);
  transition: all 0.5s ease;
}
.prod_card .card_footer .to_cart:hover {
  background: var(--orange-main);
  color: white;
}
.prod_card .list_desc {
  display: none;
}

.swiper_navs {
  gap: 10px;
  margin-left: auto;
}
.swiper_navs a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #000;
  background: white;
  border-radius: 50%;
}
.swiper_navs a i {
  display: block;
  margin-top: -1px;
}

.card_slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card_slider img {
  max-width: 320px;
  width: 100%;
}

.swiper_thumbs .swiper-slide {
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper_thumbs .swiper-slide img {
  max-width: 60px;
}
.swiper_thumbs .thumb_box {
  max-width: 90px;
  height: 90px;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper_thumbs .thumb_box:hover {
  box-shadow: 0px 5px 20px 0px rgba(240, 90, 0, 0.2);
  transform: scale(1.1);
}
.swiper_thumbs .swiper-slide-thumb-active .thumb_box {
  box-shadow: 0px 5px 20px 0px rgba(240, 90, 0, 0.2);
}

.card_main_row {
  padding-top: 60px;
  align-items: center;
  padding-bottom: 58px;
  background: white;
  border-radius: 5px;
}

.firma_box {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 8px;
}

.card_section {
  background: rgb(203, 203, 203);
}
.card_section .status {
  color: rgb(18, 105, 53);
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
}
.card_section .status.no {
  color: #e5771a;
}
.card_section .description {
  font-size: 16px;
  margin-bottom: 60px;
}
.card_section .prise {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.card_section .prise .main_price {
  font-family: "Prosto One";
  font-size: 30px;
  font-weight: 400;
  margin-right: 15px;
}
.card_section .prise .old_price {
  color: rgb(138, 138, 138);
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 500;
  text-decoration: line-through;
}
.card_section .like {
  width: 50px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  color: black;
}
.card_section .info_row {
  margin-top: 2px;
  background: white;
  border-radius: 5px;
  padding: 40px 60px;
}
.card_section .info_row .tab_links {
  gap: 60px;
}
.card_section .info_row .tab_links a {
  font-family: "Prosto One";
  font-size: 20px;
  font-weight: 400;
  color: rgb(222, 219, 219);
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease;
}
.card_section .info_row .tab_links a.active, .card_section .info_row .tab_links a:hover {
  color: black;
  border-bottom: 1px solid var(--orange-main);
}
.card_section .info_row .tab {
  display: none;
  min-height: 148px;
}
.card_section .info_row .tab.active {
  display: flex;
  align-items: center;
}
.card_section .slides_row {
  margin-top: 84px;
  padding-bottom: 84px;
}
.card_section .same_prod,
.card_section .extra_prod {
  padding-bottom: 84px;
  padding-top: 20px;
}
.card_section .label {
  font-weight: bold;
  min-width: 150px;
}

.description_box {
  flex-direction: column;
  flex-wrap: wrap;
  height: 148px;
  display: flex;
  column-gap: 132px;
  margin-top: 36px;
}

.item {
  display: flex;
  justify-content: flex-start;
  /* Выровнять элементы по левому краю */
  margin-bottom: 12px;
}

.value {
  font-weight: normal;
  /* Обычный текст для значения */
  color: #555;
  /* Дополнительный цвет для значения */
}

#tab_content_1.active,
#tab_content_3.active {
  display: block;
  padding-top: 30px;
}

#tab_content_4.active {
  padding-top: 36px;
  gap: 20px;
  flex-wrap: wrap;
}
#tab_content_4.active .main_btn {
  flex: 0 0 102%;
  margin-left: auto;
  margin-right: auto;
}

.review_box {
  max-width: 580px;
  width: 100%;
  flex: 0 0 49%;
  border: 1px solid #DEDBDB;
  border-radius: 5px;
  padding: 24px;
}
.review_box .review-text {
  display: block;
  transition: all 0.3s ease;
  /* Плавное изменение текста */
  line-height: 1.5;
  /* Интерлиньяж для читаемости */
}
.review_box .read-more {
  color: #f05a00;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
  margin-left: auto;
}
.review_box .read-more:hover {
  text-decoration: underline;
}

.review_form {
  width: 100%;
}

.review_form h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #000;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  box-sizing: border-box;
}

.form-group textarea {
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f05a00;
  box-shadow: 0 0 5px rgba(240, 90, 0, 0.3);
}

.form-rules {
  font-size: 12px;
  margin-bottom: 20px;
  color: #555;
}

.form-rules a {
  color: #f05a00;
  text-decoration: none;
}

.form-rules a:hover {
  text-decoration: underline;
}

.submit-btn {
  display: inline-block;
  background: #f05a00;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-left: auto;
}

.submit-btn:hover {
  background: #e05000;
}

.cart_section {
  padding-top: 32px;
  padding-bottom: 80px;
}
.cart_section .cart_table_box .table {
  margin-top: 32px;
}
.cart_section .cart_table_box th {
  vertical-align: middle;
}
.cart_section .cart_table_box th img {
  width: 60px;
  height: 60px;
}
.cart_section .cart_table_box th a {
  font-size: 14px;
  color: #8A8A8A;
}
.cart_section .cart_table_box th div {
  display: inline-block;
  margin-left: 81px;
  vertical-align: middle;
}
.cart_section .cart_table_box th h2 {
  font-size: 16px;
  font-weight: 500;
}
.cart_section .cart_table_box .price_cell {
  font-family: Raleway;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  vertical-align: middle;
}
.cart_section .cart_table_box .quant_cell {
  vertical-align: middle;
}
.cart_section .cart_table_box .price_cell {
  font-family: Raleway;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
}
.cart_section .cart_table_box .delete_item {
  width: 24px;
  height: 24px;
  display: inline-block;
  opacity: 0.5;
  transition: all 0.5s ease;
  margin-left: 20px;
}
.cart_section .cart_table_box .delete_item:hover {
  opacity: 1;
}
.cart_section .cart_table_box .delete_item img {
  width: 100%;
}
.cart_section .change_quant {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cart_section .change_quant button {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  line-height: 1;
}
.cart_section .change_quant button:hover {
  background-color: #e6e6e6;
}
.cart_section .change_quant input {
  width: 50px;
  height: 30px;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 16px;
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
}
.cart_section .change_quant input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
}
.cart_section .change_quant input::-webkit-inner-spin-button,
.cart_section .change_quant input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart_section .summ {
  margin-left: auto;
  margin-top: 24px;
}
.cart_section .summ p:first-child {
  font-family: Raleway;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding-bottom: 20px;
  border-bottom: 1px solid #DEDBDB;
  display: flex;
  justify-content: space-between;
}
.cart_section .summ p:nth-child(2) {
  font-family: Raleway;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #8A8A8A;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  border-bottom: 1px solid #DEDBDB;
  padding-bottom: 20px;
}
.cart_section .summ .finish {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.cart_section .summ .finish p {
  font-family: Prosto One;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  border: 0;
}
.cart_section .summ .finish .all_summ {
  font-family: Prosto One;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #F05A00;
}
.cart_section .summ .btn {
  margin-left: auto;
  margin-right: auto;
}

.compare_section {
  padding-top: 32px;
  padding-bottom: 80px;
}
.compare_section .row {
  gap: 20px;
}
.compare_section h2 {
  margin-bottom: 32px;
}
.compare_section .compare_box {
  max-width: 200px;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  padding: 4px 16px 10px;
}
.compare_section .compare_box .compare_box__close {
  display: block;
  margin-left: auto;
  margin-right: -10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.compare_section .compare_box .compare_box__close img {
  width: 100%;
}
.compare_section .compare_image {
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.compare_section h3 {
  font-family: Raleway;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 24px;
  margin-top: 9px;
}
.compare_section .compare_box__price {
  display: inline-block;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.compare_section .to_cart {
  margin-left: auto;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 60px;
}
.compare_section .to_cart i {
  font-size: 30px;
  color: #F05A00;
}
.compare_section .table-responsive {
  margin-top: 40px;
}

.category_child_section {
  padding-top: 32px;
}
.category_child_section .brand_box img {
  display: inline-block;
  max-width: 310px;
  width: 100%;
  height: 160px;
}
.category_child_section .brand_box p {
  display: inline-block;
  margin-left: 40px;
  max-width: 860px;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.category_child_section .filter_section .sidebar .catalog_menu .sub_menu {
  opacity: 0;
  visibility: hidden;
}
.category_child_section .filter_section .sidebar .catalog_menu li:hover .sub_menu {
  opacity: 1;
  visibility: visible;
}

.checkout_section {
  padding: 20px 0 80px;
}
.checkout_section .tab_links {
  gap: 60px;
}
.checkout_section .tab_links a {
  font-family: "Prosto One";
  font-size: 20px;
  font-weight: 400;
  color: rgb(222, 219, 219);
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease;
}
.checkout_section .tab_links a.active, .checkout_section .tab_links a:hover {
  color: black;
  border-bottom: 1px solid var(--orange-main);
}
.checkout_section .tab {
  display: none;
  min-height: 148px;
}
.checkout_section .tab.active {
  display: flex;
  align-items: center;
}
.checkout_section .customer_form {
  width: 100%;
  margin-top: 20px;
}
.checkout_section .form_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.checkout_section .form_group {
  width: 48%;
}
.checkout_section .form_group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: rgb(138, 138, 138);
  font-family: "Prosto One", sans-serif;
}
.checkout_section .form_group input {
  width: 100%;
  padding: 10px;
  border: 1px solid rgb(222, 219, 219);
  border-radius: 5px;
  outline: none;
  font-size: 14px;
}
.checkout_section .shipping_form {
  width: 100%;
  margin-top: 20px;
}
.checkout_section .form_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.checkout_section .form_group {
  width: 48%;
}
.checkout_section .hidden {
  display: none;
}
.checkout_section label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: rgb(138, 138, 138);
  font-family: "Prosto One", sans-serif;
}
.checkout_section #tab_shipping .form_group input {
  width: auto;
  margin-right: 10px;
}
.checkout_section #tab_shipping .form_group label {
  margin: 0;
}
.checkout_section #tab_shipping #courier_fields input {
  width: 100%;
}
.checkout_section #pickup_fields * {
  margin-bottom: 10px;
}
.checkout_section #courier_fields h3 {
  margin-bottom: 30px;
  margin-top: 10px;
}
.checkout_section #tab_payment {
  flex-wrap: wrap;
}
.checkout_section #tab_payment p {
  width: 100%;
}
.checkout_section .payment_on_delivery {
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.checkout_section .summary_box {
  background: #f8f8f8;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: "Prosto One", sans-serif;
  color: #333;
}
.checkout_section .summary_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}
.checkout_section .summary_item span:first-child {
  font-weight: bold;
  color: #333;
}
.checkout_section .summary_item span:last-child {
  font-weight: bold;
  color: #f05a00; /* Цвет для итоговых сумм */
}
.checkout_section .summary_item:last-child {
  margin-bottom: 0;
}

.favorite_section {
  background: var(--svetloseryu);
  padding-bottom: 80px;
}
.favorite_section h2 {
  margin-bottom: 76px;
}
.favorite_section .row {
  gap: 20px;
}

.acc_section {
  background: #F2F5F7;
}
.acc_section .tab_links {
  list-style: none;
  padding: 0;
  width: 100%;
}
.acc_section .tab_links li {
  height: 64px;
  margin-bottom: 1px;
}
.acc_section .tab_links li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: all 0.5s ease;
  background: white;
  border-radius: 5px;
}
.acc_section .tab_links li a:hover, .acc_section .tab_links li a.active {
  background: var(--orange-main);
  color: white;
}
.acc_section .tabs_content_box {
  position: relative;
  min-height: 950px;
}
.acc_section .tab {
  border-radius: 5px;
  margin-top: 2px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  padding-bottom: 1px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
}
.acc_section .tab.active {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.acc_section .order_header {
  display: flex;
  height: 80px;
  padding: 24px 24px 24px 40px;
  align-items: center;
  background: white;
  border-radius: 8px;
  margin-bottom: 2px;
  cursor: pointer;
}
.acc_section .order_header .order_num {
  font-family: Prosto One;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.acc_section .order_header .order_create, .acc_section .order_header .order_take {
  font-family: Raleway;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #8A8A8A;
}
.acc_section .order_header .order_create {
  margin-left: auto;
  margin-right: 40px;
}
.acc_section .order_header .order_take {
  margin-right: 70px;
}
.acc_section .order_content {
  margin-top: -2px;
  background: white;
  padding-left: 93px;
  padding-bottom: 28px;
  display: none;
}
.acc_section .order_content .order_row {
  display: flex;
  align-items: center;
  height: 68px;
}
.acc_section .order_content .order_row img {
  width: 60px;
  height: 60px;
}
.acc_section .order_content .order_row h3 {
  font-family: Raleway;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-left: 81px;
}
.acc_section .order_content .order_row p {
  font-family: Raleway;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-left: auto;
  margin-right: auto;
}
.acc_section .order_content .order_row .order_fullprice {
  margin-right: 73px;
}
.acc_section .order_content .order_finish_all_summ {
  display: flex;
  justify-content: space-between;
  padding-right: 73px;
  padding-top: 40px;
  font-family: Prosto One;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.acc_section .account_info_form label {
  color: black;
  font-family: "Prosto One";
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.acc_section .account_info_form form {
  margin: 0 auto;
  width: 100%;
  margin-top: 34px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.acc_section .account_info_form textarea {
  box-sizing: border-box;
  height: 100px;
  width: 100%;
  resize: none;
  border: 1px solid rgb(222, 219, 219);
  border-radius: 5px;
  outline: 0;
}
.acc_section .account_info_form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgb(222, 219, 219);
  outline: 0;
  background: transparent;
}
.acc_section .account_info_form .form_control {
  margin-bottom: 24px;
  max-width: 48%;
  width: 100%;
}
.acc_section .account_info_form .form_control:nth-child(12), .acc_section .account_info_form .form_control:nth-child(11), .acc_section .account_info_form .form_control:nth-child(10) {
  max-width: 100%;
}
.acc_section .account_info_form .black_btn {
  width: 100%;
  max-width: 100%;
  background-color: #000;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.acc_section .account_info_form .black_btn:hover {
  background-color: #333;
}

:root {
  --svetloseryu: #f2f5f7;
  --seryu-light: #dedbdb;
  --seryu-mid: #8A8A8A;
  --black-light: #3B3B3B;
  --black-mid: #212526;
  --orange-main: #f05a00;
  --orange-light: #fc573b;
}

.header {
  background: var(--black-mid);
  color: white;
}
.header .burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 35px;
  height: 25px;
  margin-left: auto;
  margin-right: 20px;
}
.header .burger span {
  height: 2px;
  width: 100%;
  display: block;
  background: white;
  transition: all 0.5s ease-out;
  position: relative;
}
.header .burger.active span:nth-child(1) {
  transform: rotate(45deg);
  bottom: -11px;
}
.header .burger.active span:nth-child(2) {
  width: 0;
}
.header .burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: -11px;
}
.header .pre_header {
  display: flex;
  align-items: center;
  min-height: 96px;
}
.header .pre_header .row {
  height: 96px;
}
.header .logo_box a {
  display: flex;
  align-items: center;
  justify-content: center;
  /*max-width: 90px;*/
}
.header .logo_box a img {
  width: 100%;
}
.header .time {
  font-size: 16px;
  font-weight: 500;
}
.header .phone_box {
  display: flex;
  flex-direction: column;
  color: white;
}
.header .phone_box .phone {
  font-size: 18px;
  color: white;
}
.header .phone_box .callback {
  color: var(--orange-light);
  text-decoration: underline;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}
.header .actions_menu li a {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: var(--black-light);
  font-size: 30px;
  color: white;
  margin-right: 1px;
  transition: all 0.3s ease;
}
.header .actions_menu li a:hover {
  background: var(--orange-main);
}
.header .actions_menu li a .quant {
  position: absolute;
  right: 22px;
  top: 24px;
  font-size: 11px;
  background: var(--orange-main);
  display: block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
}
.header .all_quants {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
}
.header .nav_header {
  background: #000;
  height: 88px;
}
.header .catalog {
  cursor: pointer;
  position: relative;
  font-family: "Prosto One", sans-serif;
}
.header .catalog .catalog_link {
  color: white;
  border: 1px solid rgb(240, 90, 0);
  border-radius: 5px;
  max-width: 200px;
  width: 100%;
  align-items: center;
  padding: 14px 16px;
  display: flex;
  height: 48px;
  position: relative;
  font-family: "Raleway";
}
.header .catalog .catalog_link img {
  margin-right: 15px;
}
.header .catalog .catalog_link:hover {
  background: var(--orange-main);
}
.header .catalog .catalog_menu {
  position: absolute;
  left: 0;
  top: calc(100% + 20px);
  padding: 0;
  list-style: none;
  background: white;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}
.header .catalog .catalog_menu a {
  display: flex;
  align-items: center;
  height: 73px;
  padding: 0 24px;
  min-width: 310px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  transition: all 0.5s ease;
}
.header .catalog .catalog_menu a i {
  font-size: 30px;
  display: block;
  margin-left: auto;
}
.header .catalog .catalog_menu a:hover {
  background: var(--black-mid);
  color: white;
}
.header .catalog .catalog_menu a:hover i {
  color: white;
}
.header .catalog .catalog_menu .sub_menu a {
  padding: 0px;
}

.header .catalog .catalog_menu .sub_menu {
  list-style: none;
  position: absolute;
  left: 100%;
  top: -999px;
  column-count: 2;
  padding: 32px 16px;
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 500;
  background: white;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  width: 300px;
}
.header .catalog .catalog_menu .sub_menu a {
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.header .catalog .catalog_menu .sub_menu a:hover {
  background: transparent;
  color: var(--orange-main);
}
.header .catalog .catalog_menu li {
  position: relative;
}
.header .catalog .catalog_menu li:hover .sub_menu {
  top: 0;
}
.header .catalog:hover .catalog_menu {
  visibility: visible;
  opacity: 1;
}
.header .catalog.active {
  background: var(--orange-main);
}
.header .main_menu {
  margin-left: 52px;
}
.header .main_menu li:first-child a {
  margin-left: 0;
}
.header .main_menu a {
  color: white;
  display: flex;
  margin-left: 60px;
}
.header .main_menu a:hover {
  color: var(--orange-main);
}
.header .soc_menu {
  margin-left: 51px;
  gap: 12px;
}
.header .soc_menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: white;
}
.header .soc_menu a i {
  color: #000;
  font-size: 20px;
}
.header .search_box {
  margin-left: auto;
  border-radius: 5px;
  height: 52px;
  display: flex;
  align-items: center;
  max-width: 310px;
  width: 100%;
  background: white;
  padding-left: 21px;
  position: relative;
  margin-left: auto;
}
.header .search_box form {
  width: 100%;
}
.header .search_box form .search {
  display: flex;
  align-items: center;
}
.header .search_box form i {
  color: var(--seryu-mid);
}
.header .search_box input {
  background: transparent;
  border: 0;
  outline: 0;
  width: 100%;
  padding-left: 12px;
  font-size: 16px;
  font-weight: 500;
}
.header .search_results {
  position: absolute;
  right: 0;
  left: auto;
  top: 49px;
  background: white;
  padding-left: 24px;
  padding-right: 30px;
  z-index: 2;
  width: 512px;
  max-width: calc(100vw - 30px);
  box-sizing: border-box;
  border-radius: 5px 5px 0 0;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
  max-height: 500px;
  opacity: 0;
  visibility: hidden;
}
.header .search_results.active {
  opacity: 1;
  visibility: visible;
}
.header .search_results .search_results_content {
  overflow: auto;
  max-height: 440px;
}
.header .search_results .search_results_content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  margin-left: 10px;
}
.header .search_results .search_results_content::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}
.header .search_results .search_results_content::-webkit-scrollbar-thumb {
  background-color: var(--orange-main);
  border-radius: 10px;
  border: 1px solid var(--orange-main);
}
.header .search_results .search_results_content::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.header .search_results .search_results_content::-webkit-scrollbar-thumb:active {
  background-color: #333;
}
.header .search_results .search_results_content::-webkit-scrollbar-horizontal {
  height: 8px;
}
.header .search_results .search_results_content * {
  scrollbar-width: thin;
  scrollbar-color: #888 #f0f0f0;
}
.header .search_results .row {
  height: 60px;
}
.header .search_results img {
  max-width: 60px;
  padding: 0;
}
.header .search_results a {
  color: #000;
  font-weight: 500;
  padding: 0;
  width: fit-content;
}
.header .search_results .search_price {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  padding: 0;
  width: max-content;
}
.header .search_results .show_all {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% + 54px);
  margin-left: -24px;
  margin-right: -30px;
  height: 60px;
  background: var(--black-light);
  color: white;
  border-radius: 0 0 5px 5px;
  transition: all 0.5s ease;
}
.header .search_results .show_all:hover {
  background: var(--orange-main);
}

.section_01 {
  background: var(--black-mid);
  padding-top: 20px;
  padding-bottom: 20px;
}
.section_01 .hero_1 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/bg1.jpeg");
  background-size: 103%;
  background-position: center top;
  padding: 32px;
  min-height: 488px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 1.5s ease;
  background-repeat: no-repeat;
}
.section_01 .hero_1:hover {
  background-size: 120%;
}
.section_01 .hero_1 h1 {
  color: white;
  font-size: 40px;
  font-weight: 400;
  text-shadow: 0 0 5px #000, 0 0 5px #000;
}
.section_01 .hero_1 .main_btn {
  margin-top: 139px;
  display: flex;
}
.section_01 .hero_2 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/bg2.jpeg");
  background-size: 100%;
  padding: 16px;
  max-width: 311px;
  height: 488px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 1.5s ease;
}
.section_01 .hero_2:hover {
  background-size: 120%;
}
.section_01 .hero_3 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/bg3.jpeg");
  background-size: 100%;
  padding: 16px;
  max-width: 311px;
  height: 234px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 1.5s ease;
  margin-top: 20px;
}
.section_01 .hero_3:hover {
  background-size: 120%;
}
.section_01 .hero_4 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/bg4.jpeg");
  background-size: 100%;
  padding: 16px;
  max-width: 311px;
  height: 234px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 1.5s ease;
  margin-top: 20px;
}
.section_01 .hero_4:hover {
  background-size: 120%;
}
.section_01 .second_column {
  column-count: 2;
  gap: 20px;
}
.section_01 p {
  font-size: 20px;
  font-weight: 400;
  color: white;
  font-family: "Prosto One", sans-serif;
  text-shadow: 0 0 5px #000, 0 0 5px #000;
}
.section_01 .arrow_link {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #000;
  color: white;
  transition: all 0.4s ease;
}
.section_01 .arrow_link:hover {
  background: var(--orange-main);
}

.section_02 {
  background: var(--svetloseryu);
  padding: 80px 0;
}
.section_02 h2 {
  font-size: 30px;
}
.section_02 .slider_1 {
  margin-top: 24px;
}
.section_02 .slider_2 {
  margin-top: 24px;
}

.swiper .swiper-pagination {
  bottom: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.swiper .swiper-pagination span {
  height: 4px;
  width: 69px;
  margin: 0 !important;
  background: var(--seryu-mid);
  border-radius: unset;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--orange-light);
}

.section_03 {
  background: var(--black-mid);
  padding: 54px 0;
  position: relative;
}
.section_03 h2 {
  color: white;
}
.section_03 .brands_slider {
  margin-top: 28px;
}
.section_03 .brands_slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_03 .brands_nav {
  position: absolute;
  width: 100%;
  top: 66%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
}
.section_03 .brands_nav a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #000;
  background: white;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.section_03 .brands_nav a i {
  display: block;
  margin-top: -1px;
}

.section_04 {
  padding: 80px 0;
}
.section_04 h2 {
  margin-bottom: 24px;
}
.section_04 p {
  margin-bottom: 40px;
}

.section_05 {
  background: var(--svetloseryu);
}
.section_05 .tabs_link_box {
  height: 68px;
  background: #000;
}
.section_05 .tab_links {
  gap: 60px;
}
.section_05 .tab_links a {
  font-size: 20px;
  font-family: "Prosto One", sans-serif;
  color: white;
  opacity: 0.3;
  transition: all 0.5s ease;
}
.section_05 .tab_links a:hover {
  opacity: 1;
}
.section_05 .tab_links a.active {
  opacity: 1;
}
.section_05 .tabs_content_box {
  padding-top: 56px;
  padding-bottom: 52px;
  background: var(--black-mid);
}
.section_05 .tabs_content_box .swiper .swiper-pagination span {
  margin: 0;
  margin-right: 2px;
}
.section_05 .tabs_content_box .tab {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.5s ease;
  transform: translateX(50%);
}
.section_05 .tabs_content_box .tab.active {
  display: block;
  opacity: 1;
  visibility: visible;
  height: auto;
  transform: translateX(0);
}
.section_05 .tabs_nav_prev {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  left: -50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #000;
  background: white;
  border-radius: 50%;
  z-index: 2;
}
.section_05 .tabs_nav_next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  right: -50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #000;
  background: white;
  border-radius: 50%;
  z-index: 2;
}
.section_05 .tabs_pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.section_05 .tabs_pagination span {
  background: white;
  opacity: 1;
}
.section_05 .tabs_pagination span.swiper-pagination-bullet-active {
  background: var(--orange-main);
}
.section_05 .see_all {
  color: var(--orange-main);
  display: block;
  margin-left: auto;
  margin-top: -17px;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.section_06 {
  background: var(--svetloseryu);
  padding: 82px 0;
}
.section_06 .col-lg-8 .news_box {
  position: relative;
}
.section_06 .col-lg-8 .col-lg-6 {
  padding: 0 10px;
}
.section_06 .col-lg-8 .col-lg-6 a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section_06 .col-lg-8 .col-lg-6 h3 {
  margin-top: 16px;
}
.section_06 .col-lg-8 .col-lg-6 p {
  margin-top: 4px;
}

.footer {
  background: var(--black-mid);
  padding: 45px 0;
}
.footer .col-lg-4 {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.footer ul li {
  margin-bottom: 17px;
}
.footer ul li a {
  color: white;
}
.footer ul li a:hover {
  color: var(--orange-main);
}
.footer .footer_logo {
  display: flex;
  max-width: 90px;
  margin-bottom: 24px;
}
.footer .footer_logo img {
  width: 100%;
}
.footer .phones {
  margin-bottom: 24px;
}
.footer .phones a {
  color: white;
}
.footer .phones a:hover {
  color: var(--orange-main);
}
.footer ol {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 12px;
  padding-left: 0;
}
.footer ol a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: white;
}
.footer ol a i {
  color: #000;
  font-size: 20px;
}
.footer .copyright {
  color: white;
}
.footer .agreement {
  color: white;
}
.footer .agreement:hover {
  color: var(--orange-main);
}

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 6;
}

.modal_window {
  max-width: 350px;
  width: 100%;
  min-height: 572px;
}
.modal_window .call_title {
  padding-top: 64px;
}
.modal_window label {
  color: rgb(138, 138, 138);
  font-family: "Prosto One";
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  display: block;
  width: 100%;
}
.modal_window form {
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-top: 34px;
}
.modal_window textarea {
  box-sizing: border-box;
  height: 100px;
  width: 100%;
  resize: none;
  border: 1px solid rgb(222, 219, 219);
  border-radius: 5px;
  outline: 0;
}
.modal_window input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgb(222, 219, 219);
  outline: 0;
}
.modal_window .form_control {
  margin-bottom: 24px;
}
.modal_window .black_btn {
  width: 100%;
  max-width: 100%;
}

.close {
  position: absolute;
  width: 24px;
  height: 24px;
  display: flex;
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0.5;
  right: 0;
}
.close:hover {
  opacity: 1;
}
.close img {
  width: 100%;
}

.call_title {
  font-family: "Prosto One";
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.agreements {
  color: #8A8A8A;
  font-size: 12px;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
  width: 100%;
  margin-top: 12px;
}

.breadcrumbs {
  padding-top: 24px;
  padding-bottom: 32px;
  background: var(--svetloseryu);
}
.breadcrumbs ul {
  gap: 10px;
}
.breadcrumbs ul li {
  color: #000;
}
.breadcrumbs ul li.separator {
  color: var(--seryu-mid);
}
.breadcrumbs ul li a {
  color: var(--seryu-mid);
}
.breadcrumbs ul li a:hover {
  color: #000;
}

.sidebar .news_box {
  max-width: 310px;
  width: 100%;
  position: relative;
  color: white;
  margin-bottom: 20px;
}
.sidebar .news_box h4 {
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  top: 16px;
  left: 16px;
}
.sidebar .news_box p {
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  top: 36px;
  left: 16px;
}
.sidebar .news_box a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}
.sidebar .news_box img {
  width: 100%;
  filter: brightness(0.5);
  border-radius: 7px;
  transition: all 0.5s ease;
}
.sidebar .news_box:hover img {
  filter: brightness(1);
}

.show_all {
  height: 60px;
  max-width: 970px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  border: 1px solid #DEDBDB;
  border-radius: 5px;
  margin-top: 20px;
  background: white;
}
.show_all img {
  margin-right: 12px;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-main);
  font-size: 50px;
  animation: 1s linear 1s infinite rotate;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.catalog_section {
  padding-bottom: 32px;
  background: var(--svetloseryu);
}
.catalog_section .tab_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.catalog_section .tab_links li {
  width: 33.22%;
  height: 64px;
  margin-bottom: 1px;
}
.catalog_section .tab_links li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: all 0.5s ease;
  background: white;
  border-radius: 5px;
}
.catalog_section .tab_links li a:hover, .catalog_section .tab_links li a.active {
  background: var(--orange-main);
  color: white;
}
.catalog_section .tabs_content_box {
  position: relative;
  min-height: 1734px;
}
.catalog_section .tab {
  background: white;
  border-radius: 5px;
  margin-top: 2px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  padding-bottom: 1px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
}
.catalog_section .tab.active {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.catalog_section .catalog_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 970px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 58px;
}
.catalog_section .catalog_list .cat_box {
  border-radius: 5px;
  max-width: 31%;
  width: 100%;
}
.catalog_section .catalog_list .cat_box .cat_box__image_box {
  width: 100%;
  height: 288px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--svetloseryu);
  border-radius: 5px 5px 0 0;
}
.catalog_section .catalog_list .cat_box .cat_box__image_box img {
  max-width: 200px;
  width: 100%;
}
.catalog_section .catalog_list .cat_box a {
  border-radius: 0 0 5px 5px;
  width: 100%;
  max-width: 100%;
}
.catalog_section .cat_pagination {
  margin-top: 32px;
  margin-bottom: 80px;
}

.brands_section {
  background: var(--svetloseryu);
  padding-bottom: 80px;
}
.brands_section h2 {
  margin-bottom: 32px;
}
.brands_section .col-lg-3 {
  padding: 1px;
}
.brands_section .brand_box {
  width: 100%;
  height: 100%;
}
.brands_section .brand_box a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: all 0.5s ease;
  width: 100%;
  height: 160px;
  border-radius: 5px;
}
.brands_section .brand_box a img {
  max-width: 208px;
}
.brands_section .brand_box a:hover {
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03), 0px -10px 20px 0px rgba(0, 0, 0, 0.03);
  transform: scale(1.1);
}

.filter_section {
  background: var(--svetloseryu);
  padding-bottom: 83px;
}
.filter_section h2 {
  margin: 30px 0;
}
.filter_section .sidebar {
  position: relative;
}
.filter_section .sidebar .catalog_menu {
  padding: 0;
  list-style: none;
  transition: all 0.4s ease;
  z-index: 3;
  border-radius: 5px;
  margin-top: 24px;
  font-family: "Prosto One";
}
.filter_section .sidebar .catalog_menu li:first-child a {
  border-radius: 5px 5px 0 0;
}
.filter_section .sidebar .catalog_menu li:last-child a {
  border-radius: 0 0 5px 5px;
}
.filter_section .sidebar .catalog_menu a {
  display: flex;
  align-items: center;
  background: var(--black-mid);
  height: 73px;
  padding: 0 24px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: white;
  transition: all 0.5s ease;
}
.filter_section .sidebar .catalog_menu a i {
  font-size: 30px;
  display: block;
  margin-left: auto;
  color: white;
}
.filter_section .sidebar .catalog_menu a:hover {
  background: var(--orange-main);
  color: white;
}
.filter_section .sidebar .catalog_menu a:hover i {
  color: white;
}
.filter_section .sidebar .catalog_menu .sub_menu {
  list-style: none;
  position: absolute;
  left: 100%;
  top: -999px;
  column-count: 2;
  padding: 32px 52px;
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 500;
  background: white;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  width: max-content;
  z-index: 4;
}
.filter_section .sidebar .catalog_menu .sub_menu a {
  height: auto;
  display: block;
  margin-bottom: 20px;
  background: transparent;
  color: black;
}
.filter_section .sidebar .catalog_menu .sub_menu a:hover {
  background: transparent;
  color: var(--orange-main);
}
.filter_section .sidebar .catalog_menu li:hover .sub_menu {
  top: 0;
}
.filter_section .sidebar:hover .catalog_menu {
  visibility: visible;
  opacity: 1;
}
.filter_section .sidebar.active {
  background: var(--orange-main);
}
.filter_section .filter {
  background: var(--black-mid);
}
.filter_section .check_list_item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.filter_section .custom_check_box {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 3px;
}
.filter_section .check_list_item input:checked ~ .custom_check_box {
  background: var(--orange-main);
}
.filter_section .filter {
  border-radius: 5px;
  margin-bottom: 20px;
}
.filter_section .collapse_header {
  height: 72px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 24px;
  padding-right: 24px;
  font-family: "Prosto One";
  cursor: pointer;
}
.filter_section .collapse_header.active i {
  transform: rotate(180deg);
}
.filter_section .collapse_header i {
  font-size: 30px;
  display: block;
  margin-left: auto;
  transition: all 0.5s ease;
}
.filter_section .collapse_content {
  display: none;
  padding-left: 24px;
  padding-right: 24px;
}
.filter_section .collapse_content .range_slider {
  position: relative;
  width: 100%;
  max-width: 206px;
}
.filter_section .collapse_content .range_slider .highlight {
  position: absolute;
  height: 2px;
  background: var(--orange-main); /* Цвет выделения */
  z-index: 1;
}
.filter_section .collapse_content .range_slider input[type=range] {
  position: absolute;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  background: white;
  pointer-events: none;
}
.filter_section .collapse_content .range_slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: var(--orange-main);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
.filter_section .collapse_content .range_slider input[type=range]:focus {
  outline: none;
}
.filter_section .collapse_content .range_values input:focus {
  border-color: var(--orange-main);
}
.filter_section .collapse_content .range_values {
  padding-top: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 206px;
}
.filter_section .collapse_content .range_values input {
  width: 84px;
  height: 36px;
  padding: 5px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}
.filter_section .collapse_content .check_list {
  margin-top: 18px;
  max-height: 300px;
  overflow-y: auto;
}
.filter_section .collapse_content .check_list .check_list_item {
  height: 20px;
  margin-bottom: 12px;
  font-family: "Raleway";
}
.filter_section .collapse_content .check_list .check_list_item label {
  cursor: pointer;
}
.filter_section .collapse_content .check_list .check_list_item .check_name {
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-left: 12px;
}
.filter_section .collapse_content .check_list .check_list_item .check_quant {
  margin-left: 10px;
  color: rgb(59, 59, 59);
  font-size: 14px;
  font-weight: 400;
}
.filter_section .collapse_content .check_list::-webkit-scrollbar {
  width: 2px;
  border-radius: 20px;
}
.filter_section .collapse_content .check_list::-webkit-scrollbar-track {
  background: white;
  border-radius: 10px;
}
.filter_section .collapse_content .check_list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--orange-main);
}
.filter_section .collapse_content .check_list .check_list_item {
  display: flex;
  align-items: center;
}
.filter_section .filter {
  padding-bottom: 32px;
}
.filter_section .reset_filter {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  max-width: 262px;
  border-radius: 5px;
  background: var(--black-light);
  text-transform: uppercase;
  color: white;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
}
.filter_section .reset_filter:hover {
  background: var(--orange-main);
}
.filter_section .filter_actions_row {
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: nowrap;
  width: 100%;
  margin-bottom: 29px;
}
.filter_section .custom_select {
  display: flex;
  padding: 0;
  position: relative;
  flex-shrink: unset;
  width: 100%;
}
.filter_section .custom_select .sorter {
  font-family: "Prosto One";
  font-size: 16px;
  margin-right: 16px;
}
.filter_section .custom_select .select_header {
  cursor: pointer;
}
.filter_section .custom_select .select_options {
  display: none;
  position: absolute;
  left: 0;
  top: 40px;
  list-style: none;
  background: white;
  border-radius: 5px;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 16px 24px;
  z-index: 2;
}
.filter_section .custom_select .select_options li {
  margin-bottom: 10px;
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.filter_section .custom_select .select_options li:hover, .filter_section .custom_select .select_options li.active {
  color: var(--orange-main);
}
.filter_section .view_box {
  display: flex;
  width: 100%;
  column-gap: 8px;
  justify-content: flex-end;
  flex-shrink: unset;
}
.filter_section .view_box .view {
  font-family: "Prosto One";
  font-size: 16px;
}
.filter_section .view_box a {
  opacity: 0.5;
}
.filter_section .view_box a.active, .filter_section .view_box a:hover {
  opacity: 1;
}
.filter_section .filter_content_row {
  width: 100%;
  gap: 20px;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}
.filter_section .filter_content_row.listed {
  flex-direction: column;
}
.filter_section .filter_content_row.listed .prod_card {
  max-width: 100%;
  height: auto;
}
.filter_section .filter_content_row.listed .prod_card .prod_card__slider {
  width: 30%;
  margin-right: 0;
  margin-left: 0;
}
.filter_section .filter_content_row.listed .prod_card h3 {
  position: absolute;
  top: 100px;
  left: calc(30% + 30px);
}
.filter_section .filter_content_row.listed .prod_card .list_desc {
  display: block;
  position: absolute;
  top: 150px;
  left: calc(30% + 30px);
}
.filter_section .filter_content_row.listed .prod_card .card_header .card_header_actions {
  margin-right: 60px;
  font-size: 30px;
}
.filter_section .filter_content_row.listed .prod_card .card_footer {
  flex-direction: row-reverse;
}
.filter_section .filter_content_row.listed .prod_card .card_footer .to_cart {
  top: 0;
}

.section_404 {
  height: 100vh;
  background-image: url("../img/404-bg.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.section_404 .container, .section_404 .row {
  height: 100%;
  align-items: center;
  justify-content: center;
}
.section_404 h1 {
  color: rgb(0, 0, 0);
  font-family: "Prosto One";
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 20px;
}
.section_404 p {
  font-family: "Raleway";
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  margin-bottom: 20px;
}
.section_404 img {
  margin-top: 80px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.section_404 .main_btn {
  margin-left: auto;
  margin-right: auto;
}

.order_pay_section {
  padding: 60px 20px;
  background: var(--svetloseryu);
}

.order_pay_section .container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.order_pay_section h1 {
  font-size: 30px;
  font-weight: 500;
  color: var(--black-mid);
  text-align: center;
  margin-bottom: 20px;
}

.order_pay_section p {
  font-size: 16px;
  color: var(--seryu-mid);
  margin-bottom: 10px;
}

.order_pay_section .order_items {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.order_pay_section .order_items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid var(--seryu-light);
}

.order_pay_section .order_items img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.order_pay_section .order_items span {
  flex: 1;
  margin-left: 15px;
  font-size: 16px;
}

.order_pay_section .order_total {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
  color: var(--orange-main);
}

.order_pay_section h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 20px 0 10px;
  color: var(--black-mid);
}

.order_pay_section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order_pay_section form label {
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  color: var(--black-mid);
}

.order_pay_section form input[type="radio"] {
  margin-right: 10px;
  accent-color: var(--orange-main);
}

.order_pay_section .btn {
  background: var(--orange-main);
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.order_pay_section .btn:hover {
  background: var(--black-mid);
}

/* 📱 Адаптивность */
@media (max-width: 768px) {
  .order_pay_section .container {
    padding: 20px;
  }

  .order_pay_section .order_items li {
    flex-direction: column;
    align-items: flex-start;
  }

  .order_pay_section .order_items img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
  }

  .order_pay_section .btn {
    width: 100%;
  }
}

.bacs_payment_details {
  background: var(--svetloseryu);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bacs_payment_details h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--black-mid);
}

.bacs_payment_details p {
  font-size: 16px;
  color: var(--seryu-mid);
}

.bacs_payment_details strong {
  color: var(--black-mid);
}
.thankyou {
  min-height: 65vh;
  text-align: center;
  padding-top: 40px;
}
.thankyou .btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.order_status {
  margin-right: 5px;
}