@charset "UTF-8";
/* roboto-300 - cyrillic */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/roboto-v32-cyrillic-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - cyrillic */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v32-cyrillic-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500 - cyrillic */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v32-cyrillic-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - cyrillic */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v32-cyrillic-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-900 - cyrillic */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/roboto-v32-cyrillic-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  /* --font-family: "Roboto", sans-serif; */
  --font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  --font-size: 16px;
  --primary-color: #01253f;
  --primary-color-hover: #f3c43a;
  --second-color-hover: #e42122;
  --bg: #f7f8fb; /* общий светлый фон */
  --ink: #0a0d12; /* заголовки */
  --text: #2e3440; /* основной текст */
  --muted: #667085; /* вторичный */
  --panel: #ffffff; /* карточки/панели */
  --line: #e6e8ef; /* бордеры */
  --yellow: #f4b000; /* фирменный акцент */
  --blue: #0f172a; /* ссылки */
  --radius: 18px; /* скругления */
  --shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
  --gap: 18px;
}

.header-top-icons {
  width: 30px;
  height: 30px;
  fill: #f4b000;
  transition: fill 0.3s ease-in-out;
}
.header-top-icons-socials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 7px;
  transition: background-color 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-top-icons-socials:hover {
  background-color: var(--primary-color-hover);
}
.header-top-icons-socials.whatsapp-icon {
  fill: #fff;
  background-color: #25d366;
}
.header-top-icons-socials.telegram-icon {
  fill: #fff;
  background-color: #0088cc;
}
.header-top-icons-socials.max-icon {
  fill: #fff;
  background-color: #2A2A2A;
}
@media screen and (min-width: 900px) {
  .header-top-icons-mobile-btn {
    display: none;
  }
  .header__top-socials .max-social {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .header-top-icons-mobile-btn {
    display: none;
    width: 40px;
    height: 40px;
    fill: #fff;
    padding: 8px;
  }
}

.benefits-icon {
  width: 40px;
  height: 40px;
}

body {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  font-family: var(--font-family);
  font-size: var(--font-size);
}

.no-scroll {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1450px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.container-header-fullwidth {
  max-width: 100%;
  border-bottom: 1px solid var(--line);
  z-index: 999;
  background-color: #fff;
  position: sticky;
}
@media screen and (min-width: 1281px){
    .container-header-fullwidth{
        top:74px;
    }
} 
@media screen and (max-width: 1280px){
    .container-header-fullwidth{
        top:74px;
    }
}

.container-fullwidth {
  max-width: 100%;
}
.container-small {
  max-width: 800px;
  margin: 0 auto;
}
.container-small p {
  text-align: center;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}
a:visited {
  color: var(--primary-color);
}

.btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  cursor: pointer;
}
.btn.full {
  max-width: 100%;
  text-align: center;
  width: 100%;
}
.btn:hover {
  background-color: var(--primary-color-hover);
  color: var(--primary-color);
}
.btn.transparent {
  background-color: transparent;
  border: 1px solid var(--primary-color);
}
@media screen and (max-width: 1024px) {
  .btn.ma {
    margin: auto;
  }
}

.regular-link {
  font-size: 16px;
  line-height: 1.2;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}
.regular-link:hover {
  color: var(--primary-color-hover);
  text-decoration: underline;
}

input[type="submit"] {
  cursor: pointer;
}

.primary {
  background-color: var(--primary-color-hover);
}

.text-left {
  text-align: left !important;
}

.to-catalog {
  margin: 40px auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#modal-form {
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0;
  display: none;
  border-radius: 20px;
}

#search-form {
  display: none;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  display: none;
  max-width: 700px;
  max-height: -moz-fit-content;
  max-height: fit-content;
  height: 100%;
}

.search {
  width: 100%;
  position: relative;
  display: flex;
}

.searchTerm {
  width: 100%;
  border: 1px solid var(--primary-color);
  border-right: none;
  padding: 5px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #9dbfaf;
  transition: border-color 0.3s ease-in-out;
  font-size: 24px;
}

.searchTerm:focus {
  color: #333;
}

.searchButton {
  border: 1px solid var(--primary-color);
  background: transparent;
  text-align: center;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  padding: 10px;
}
.searchButton .header-top-icons {
  transition: scale 0.3s ease-in-out;
}
.searchButton:hover .header-top-icons {
  scale: 1.2;
}

/*Resize the wrap to see the search bar change!*/
.wrap {
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-form {
  z-index: 1;
  max-width: 374px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.main-form p {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}
.main-form-input {
  padding: 20px 10px;
  border: none;
  outline: 1px solid var(--primary-color);
  width: 100%;
  font-size: 18px;
  text-align: center;
}
.main-form-input:focus,
.main-form-input:active {
  border: none;
  outline: 1px solid var(--primary-color-hover);
}
.main-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.main-form form input[type="submit"] {
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* Customize the label (the container) */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.invalid-checkbox {
  display: none;
  color: red;
  font-size: 0.9em;
  margin-top: 5px;
}
/* Create a custom checkbox */
.checkbox-container {
  position: relative;
  align-items: center;
  background-color: transparent;
  width: 100%;
  margin-top: 10px;
  font-size: 12px;
}
.checkbox-container a {
  font-size: 13px;
  text-decoration: none;
}
.checkbox-container a:hover {
  text-decoration: underline;
}

.checkbox-container .checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #333;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: rgba(255, 255, 255, 1);transform: ;msFilter:;'%3E%3Cpath d='m10 15.586-3.293-3.293-1.414 1.414L10 18.414l9.707-9.707-1.414-1.414z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 20px;
  height: 17px;
  display: none;
}

.header__top {
  display: flex;
  align-items: center;
  top: 0;
  justify-content: space-between;
  background: #fff;
  position: sticky;
  z-index: 999;
}
.header__top_background-container {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
}
@media screen and (min-width: 1280px) {
  .header__top {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
.header__top-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 250px;
}
@media screen and (max-width: 480px) {
  .header__top-logo {
    max-width: 35px;
    min-width: 35px;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 640px) and (min-width: 481px) {
  .header__top-logo {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .header__top-logo img {
    width: 100%;
  }
  .footer-item-logo img {
    width: 100%;
  }
}
@media screen and (min-width: 641px) {
  .header__top-logo img {
    max-width: 60px;
    max-height: 60px;
    width: 100%;
    height: 100%;
  }
  .footer-item-logo img {
    max-width: 70px;
    max-height: 70px;
  }
}
@media screen and (max-width: 640px) and (min-width: 481px) {
  .header__top-logo img {
    max-width: 50px;
    max-height: 50px;
    width: 100%;
    height: 100%;
  }
  .footer-item-logo img {
    max-width: 70px;
    max-height: 70px;
  }
}
.header__top-logo span {
  font-weight: 600;
  color: var(--primary-color);
}
@media screen and (max-width: 640px) {
  .header__top-logo span {
    display: none;
  }
}
.header__top-city,
.header__top-worktime,
.header__top-city,
.header__top-phone,
.header__top-socials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 1450px) and (min-width: 1281px) {
  .header__top-worktime,
  .header__top-city,
  .header__top-phone,
  .header__top-socials {
    max-width: 200px;
  }
  .header__top-city {
    max-width: 250px;
  }
}
@media screen and (max-width: 900px) {
  .header__top-worktime,
  .header__top-city,
  .header__top-phone,
  .header__top-socials {
    max-width: 200px;
  }
  .header__top-city {
    max-width: 300px;
  }
}
.header__top-worktime {
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .header__top-worktime span {
    font-size: 14px;
  }
  .header__top-city-address {
    display: none;
  }
}
@media screen and (max-width: 370px) {
  .header__top-worktime {
    display: none;
  }
}
.header__top-phone span,
.header__top-city span {
  transition: color 0.3s ease-in-out;
}
.header__top-phone:hover span,
.header__top-city:hover span {
  color: var(--second-color-hover);
}
.header__top-phone:hover .header-top-icons,
.header__top-city:hover .header-top-icons {
  fill: var(--second-color-hover);
}
.header__top-phone {
  font-weight: 600;
}

@media screen and (max-width: 1280px) {
  .header__top .header__top-phone,
  .header__top .header__top-city {
    display: none;
  }
}


@media screen and (max-width: 1280px) {
  .header__top-socials {
    flex-grow: 1;
    max-width: 100%;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .header__top-socials {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__top-socials {
    margin-right: 10px;
  }
}

@media screen and (max-width: 900px) {
  .header-btn-text {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  /* .btn.header-mobile-btn-icon {
    padding: 0;
    border-radius: 50%;
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -4px;
  } */
  .btn.header-mobile-btn-icon {
    display: none;
  }
}

.open {
  display: flex !important;
}

.header {
  display: flex;
  justify-content: space-between;
  /* width: 100%; */
}
@media screen and (min-width: 1281px) {
  .header-info-mobile {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .header-info-mobile {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (max-width: 340px) {
  .header-info-mobile {
    padding: 5px 0px;
  }
  .header-info-mobile .header-top-icons {
    display: none;
  }
}
@media screen and (max-width: 1450px) {
  .header {
    padding: 0 10px;
  }
}
@media screen and (min-width: 1281px) {
  .header {
    align-items: stretch;
  }
}
@media screen and (max-width: 1280px) {
  .header {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .header__search {
    width: 250px;
  }
}
.header__search span {
  border-bottom: 1px solid var(--primary-color);
  padding: 0px 15px 5px 5px;
}
@media screen and (max-width: 1280px) {
  .header__search span {
    color: #fff;
    border-color: #fff;
    width: 80%;
  }
}

@media screen and (min-width: 1281px) {
  .nav {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

.items {
  list-style-type: none;
  display: flex;
  -moz-column-gap: 0px;
  column-gap: 0px;
  height: 100%;
  align-items: center;
  padding: 0;
  margin: 0;
}

.item {
  background-color: transparent;
  display: inline-flex;
  height: 100%;
  transition: background-color 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
.item a {
  text-decoration: none;
  padding: 20px 35px;
}
.item a span {
  font-weight: 500;
  color: var(--primary-color);
}
@media screen and (max-width: 1280px) {
  .item a span {
    color: #000;
  }
}
@media screen and (min-width: 1280px) {
  .item:hover {
    background-color: var(--primary-color-hover);
  }
}
.item.has__children {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .item.has__children:hover .submenu {
    display: inline-flex;
  }
}
@media screen and (max-width: 1280px) {
  .item.has__children.active span {
    color: var(--primary-color-hover);
  }
  .item.has__children.active a::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: rgba(243, 196, 58, 1);transform: ;msFilter:;'%3E%3Cpath d='M16.293 9.293 12 13.586 7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707z'%3E%3C/path%3E%3C/svg%3E");
    transform: rotate(180deg) translateY(50%);
  }
}
@media screen and (max-width: 1280px) {
  .item.has__children.active .submenu {
    max-height: 1500px;
    max-width: 250px;
    gap: 10px;
  }
  .item.has__children.active .submenu .subitem {
    padding: 20px 0px 20px 0px;
    list-style-type: disc;
    margin-left: 30px;
    color: var(--primary-color-hover);
  }
}
.item.has__children .submenu {
  position: absolute;
  flex-direction: column;
  left: 0;
  list-style-type: none;
  padding: 0;
  top: 61px;
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 99;
  display: none;
}
@media screen and (max-width: 1280px) {
  .item.has__children .submenu {
    position: relative;
    display: flex;
    flex-direction: column;
    left: 0;
    list-style-type: none;
    padding: 0;
    top: 20px;
    padding: 0px 0;
    background: var(--primary-color);
    box-shadow: none;
    z-index: 99;
    max-height: 0px;
    max-width: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }
}
.item.has__children .submenu .subitem {
  width: 270px;
  height: 100%;
  transition: background-color 0.3s ease-in-out;
}
.item.has__children .submenu .subitem:hover {
  background-color: rgba(51, 51, 51, 0.1);
}
.item.has__children .submenu .subitem a {
  padding: 0;
  display: inline-flex;
  width: 100%;
  padding: 15px 0px 15px 35px;
}
@media screen and (max-width: 1280px) {
  .item.has__children .submenu .subitem a {
    padding: 0;
    color: #fff;
  }
}
.item.has__children .submenu .subitem a span {
  font-weight: 400;
  color: #333;
}
@media screen and (max-width: 1280px) {
  .item.has__children .submenu .subitem a span {
    color: #fff;
  }
}
.item.has__children .submenu .subitem a::after {
  content: none;
}
.item.has__children a {
  position: relative;
}
.item.has__children a::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: rgba(1 , 37, 63, 1);transform: ;msFilter:;'%3E%3Cpath d='M16.293 9.293 12 13.586 7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707z'%3E%3C/path%3E%3C/svg%3E");
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 1280px) {
  .item.has__children a::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: rgba(255 , 255, 255, 1);transform: ;msFilter:;'%3E%3Cpath d='M16.293 9.293 12 13.586 7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707z'%3E%3C/path%3E%3C/svg%3E");
  }
}
@media screen and (min-width: 1280px) {
  .item.has__children:hover {
    background-color: var(--primary-color-hover);
  }
}
@media screen and (min-width: 1280px) {
  .item.has__children:hover a::after {
    transform: rotate(180deg) translateY(50%);
  }
}

.burger {
  display: none;
  position: relative;
  z-index: 10;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 18px;
}

.burger span {
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: var(--primary-color);
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease 0s;
}

.burger::before {
  top: 0;
}

.burger::after {
  bottom: 0;
}

.burger.active span {
  transform: scale(0);
}

.burger.active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}

.burger.active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}

@media screen and (max-width: 1280px) {
  .burger {
    display: flex;
  }
  .header__top_background-container {
    width: 100%;
  }
  nav {
    display: none;
    flex-direction: column;
    position: fixed;
    height: calc(100% - 45px - 50px);
    width: 100%;
    top: 94px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    overflow-y: auto;
    padding: 50px 40px;
    background: #fff;
    animation: burgerAnimation 0.4s;
    align-items: center;
  }
  nav .header-top-icons {
    fill: #fff;
  }
  nav .items {
    align-items: flex-start;
    row-gap: 20px;
  }
  nav .items .item {
    height: -moz-fit-content;
    height: fit-content;
  }
  nav .items .item:nth-child(1) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1280px) and (max-width: 1280px) {
  nav .items .item {
    /* border-bottom: 1px solid var(--primary-color-hover); */
    padding-bottom: 20px;
    padding-top: 20px;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
@media screen and (max-width: 1280px) {
  nav .items .item a {
    padding: 0 0px 0 10px;
    width: 250px;
  }
  nav ul {
    flex-direction: column;
    row-gap: 30px;
  }
  @keyframes burgerAnimation {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}

.breadcrumb [itemprop="name"] {
  white-space: nowrap;
}

.news-article p img {
  max-width: 100%;
  max-height: max-content;
  margin-top: 1rem;
}
.table-container {
  overflow-x: auto; /* Горизонтальный скролл на мобильных */
  margin: 20px auto;
  border-radius: 8px;
  /* box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); */
}

.price table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px; /* Предотвращает слишком сильное сжатие */
  font-size: 14px;
  background-color: #fff;
}

.price th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.price th {
  background-color: #f3c43a;
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding-top: 20px;
}

.price tbody tr:hover {
  background-color: #f1f7fb;
  transition: background-color 0.2s;
}

.price tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
  .price table {
    font-size: 13px;
  }

  .price th,
  td {
    padding: 10px 8px;
  }
}
.catalog-home {
  width: 100%;
  height: auto;
}
.catalog-block {
  width: 100%;
}
.catalog-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.block-banner-btn {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.btn-new {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--yellow);
  background: #fff;
  color: #111;
  font-weight: 700;
  box-shadow: none;
  transition: 0.15s;
}

.btn-new:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.btn-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: var(--shadow);
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: #111;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(244, 176, 0, 0.22);
}

.center-flex {
  justify-content: center;
}