@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,500;0,600;0,700;0,900;1,500;1,600;1,700;1,900&display=swap");
/****************ШРИФТЫ*********************/
.jost-medium {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-optical-sizing: auto;
  font-style: normal;
}

.jost-semibold {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
}

.jost-bold {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
  font-style: normal;
}

.jost-black {
  font-family: "Jost", sans-serif;
  font-weight: 900;
  font-optical-sizing: auto;
  font-style: normal;
}

/*******************************************/
/****************ОСНОВНЫЕ ЦВЕТА*************/
:root {
  --bg-color: #020204;
  --text-color: #ffffff;
  --text-color-2: #dfdfdf;
  --text-color-3: #818181;
  --accent-color: #c7a17a;
  --accent-color-2: #a07c5b;
  --navborder-color: #32323d;
  --bg-color-container: #14141d;
  --bg-color-dark-container: #22222f;
}

/*******************************************/
/**************ОСНОВНОЙ СТИЛЬ***************/
html,
body {
  height: 100%;
}

body {
  min-width: 280px;
  background-color: var(--bg-color);
  font-family: "Jost", sans-serif;
  color: var(--text-color);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover,
a:active {
  color: var(--accent-color);
}

.mst-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/*-------- кнопки BOOTSTRAP ---------------*/
.btn-warning {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-color);
  transition: all 0.3s;
  border-radius: 8px;
}

.btn-warning:hover {
  background-color: var(--accent-color-2);
  border-color: var(--accent-color-2);
  color: var(--text-color);
}

.btn-outline-secondary {
  color: var(--text-color);
  transition: all 0.3s;
  border-radius: 8px;
}

/*-----------------------------------------*/
/*-------- переход в каталог --------------*/
.button-simplification {
  padding: 77px 0 0 0;
}

.custom-tooltip {
  --bs-tooltip-bg: none;
  --bs-tooltip-color: var(--accent-color-2);
}

.my-button {
  position: relative;
  display: block;
  background: none center center no-repeat;
  background-size: cover;
  border: 2px solid var(--accent-color-2);
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  padding: 10px 20px;
  text-align: center;
  max-width: 270px;
  min-width: 200px;
  cursor: pointer;
  overflow: hidden;
  transition: border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1), background 5s cubic-bezier(0.19, 1, 0.22, 1);
}

.my-button a {
  color: var(--accent-color-2);
  text-decoration: none;
}

.my-button .mask {
  background: #fff;
  background: rgba(199, 161, 122, 0.5);
}

.my-button .mask {
  position: absolute;
  display: block;
  width: 200px;
  height: 100px;
  transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.my-button .shift {
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.my-button:hover {
  border-color: var(--accent-color);
  /* box-shadow: 0 0 5px rgba(255,245,245,0.8); */
  /* background-image: url('http://cuinine.com/img/codepen/savvy.jpg'); */
}

.my-button:hover a {
  color: var(--accent-color);
}

.my-button:hover .mask {
  background: var(--accent-color);
  transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}

.my-button:hover .shift {
  padding-left: 5px;
}

/*-----------------------------------------*/
.mst-main {
  flex: 1 1 auto; /* прижимаем footer книзу */
}

/*******************************************/
/**************** ШАПКА САЙТА **************/
/*-------------верхняя панель--------------*/
.mst-header-top {
  padding: 10px 0;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--navborder-color);
  position: sticky;
  top: 0;
  z-index: 1050; /* чтобы не перекрывалось */
}

.mst-header-eko img {
  width: clamp(30px, 2.5vw, 60px);
  height: auto;
  opacity: 0.4;
}

.mst-header-phone {
  /*font-size: 13px;*/
  font-size: clamp(13px, 1.5vw, 18px);
  color: var(--accent-color-2);
  cursor: pointer;
}

/*@media (min-width: 1920px) {
    .mst-header-phone {
        font-size: 18px !important;
    }
}*/
/*-----------------------------------------*/
/*-------------картинка в шапке------------*/
.mst-hero {
  position: relative; /* обязательно */
  margin-top: auto;
  width: 100%;
  height: calc(100vh - 110px); /* ровно на один экран */
  background: url("../../assets/img/veles2.jpg") top/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color-2);
}

.mst-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* затемнение, 0.5 — степень прозрачности */
  z-index: 1;
}

.mst-hero > * {
  position: relative;
  z-index: 2; /* текст поверх затемнения */
}

/*-----------------------------------------*/
/*--------------имя сайта------------------*/
.mst-hero-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.mst-hero-name .names1 h1,
.mst-hero-name .names2 h1 {
  display: block;
  font-weight: 900;
  /*font-size: 5vw;  // будет расти с шириной экрана*/
  /*font-size: 100px;*/
  font-size: clamp(38px, 5vw, 150px);
  text-transform: uppercase;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(69, 119, 81, 0.5);
}

/*-----------------------------------------*/
/*-----------------слоган------------------*/
.slogan {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 69px 0 0 0;
}

.slogan_text h4 {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  font-size: clamp(12px, 1.5vw, 40px);
  /*font-size: 40px;*/
  line-height: 38px;
  color: var(--accent-color-2);
  margin: 0;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.left_bord,
.right_bord {
  display: block;
  background: var(--accent-color-2);
  height: 1px;
  width: 100px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/*-----------------------------------------*/
/*----------панель меню--------------------*/
.mst-header {
  bottom: 0;
  left: 0;
  width: 100%;
  /*padding: 10px 0;*/
  background-color: var(--bg-color);
  /*border-top: 1px solid var(--text-color-2);*/
  border-top: 1px solid var(--navborder-color);
  border-bottom: 1px solid var(--navborder-color);
  position: sticky;
  top: var(--header-top-height);
  z-index: 1060; /* чтобы не перекрывалось */
}

.mst-header nav {
  padding: 20px 0;
  background-color: var(--bg-color) !important;
  position: relative;
}

.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-brand img {
  max-width: 38px;
  height: auto;
  transition: all 0.4s;
}

.navbar-brand:hover img {
  filter: drop-shadow(0 0 10px #fff);
}

.mst-header .navbar-nav .nav-link {
  text-transform: uppercase;
  color: var(--text-color);
  padding: 0 15px;
}

.mst-header .navbar-nav .nav-link:hover,
.mst-header .navbar-nav .nav-link.active {
  color: var(--accent-color);
  /*border-bottom: 1px solid var(--accent-color);*/
}

.mst-header-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(20px, 1.1vw, 25px);
  display: inline;
}

.mst-header-icons li {
  display: inline-block;
}

.mst-header-icons li:not(:first-child) {
  padding-left: 25px;
}

.mst-header-icons li a {
  position: relative;
}

.mst-header-icons li a span > span {
  position: absolute;
  top: 0;
  right: -5px;
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 1px var(--accent-color-2);
}

.offcanvas-body .calck-information {
  margin-top: 25px;
  padding: 15px;
  background-color: var(--bg-color-container);
  border-radius: 8px;
}
.offcanvas-body .calck-information p {
  color: var(--text-color-2);
  font-size: clamp(12px, 1.1vw, 16px);
  margin: 0;
}

@media (max-width: 425px) {
  /*.button-simplification {
      padding: 77px 0 77px 0;
  }*/
  .mst-header-icons li:not(:first-child) {
    padding-left: 5px;
  }
  /* ВСТАВИТЬ СЮДА: Увеличиваем вертикальные отступы для ссылок в мобильном меню */
  .offcanvas-body .navbar-nav .nav-item {
    margin-bottom: 15px; /* Регулируй это значение (15px-25px), чтобы подобрать нужный отступ */
  }
  .offcanvas-body .navbar-nav .nav-item:last-child {
    margin-bottom: 0; /* Убираем лишний отступ у самого нижнего пункта */
  }
}
@media (max-width: 768px) {
  /*----- меняем высоту навбара -----*/
  .mst-header nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width: 992px) {
  /*----- меняем отступ первой ссылки -----*/
  .mst-header .navbar-nav .nav-item:first-child a {
    padding-left: 0;
  }
}
@media (min-width: 1920px) {
  .navbar-brand img {
    max-width: 58px !important;
  }
  .mst-header-icons {
    font-size: 30px;
  }
  .mst-header .navbar-nav .nav-link {
    font-size: 20px;
  }
  /* Фикс для 4К: вычитаем чуть больше, так как панели увеличились в размерах */
  .mst-hero {
    height: calc(100vh - 140px) !important;
  }
}
/*-----------------------------------------*/
/*задания размера шрифта названия сайта и 
слогана в шапке в зависимости от разрешения*/
@media (max-width: 767.98px) {
  .mst-hero-name,
  .slogan {
    flex-direction: column !important;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mst-hero-name,
  .slogan {
    flex-direction: row !important;
    align-items: center;
  }
}
/*******************************************/
/******************* КАЛЬКУЛЯТОР ****************/
.minicart-poduct-row {
  background-color: var(--bg-color-container);
  border-radius: 8px;
  border: 1px solid var(--accent-color-2);
  padding: 10px;
  display: flex;
  position: relative;
  margin: 0 0 10px 0;
}
.minicart-poduct-row img {
  max-height: 90px;
  margin: 0 10px 0 0;
}
.minicart-poduct-row .minicart-poduct-info p {
  margin: 0 0 5px 0;
}
.minicart-poduct-row .minicart-poduct-info .poduct-name {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color-2);
}
.minicart-poduct-row .minicart-poduct-info .poduct-massa {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  color: var(--text-color-3);
}
.minicart-poduct-row .minicart-poduct-info .poduct-qty {
  font-size: clamp(12px, 1.2vw, 16px);
}
.minicart-poduct-row .minicart-poduct-info .poduct-qty input {
  max-width: 60px;
}
.minicart-poduct-row .minicart-del-poduct {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--text-color-3);
}
.minicart-poduct-row .minicart-del-poduct:hover {
  color: var(--accent-color-2);
}
.minicart-poduct-row .minicart-update-poduct {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--text-color-3);
}
.minicart-poduct-row .minicart-update-poduct:hover {
  color: var(--accent-color-2);
}

.minicart-total-price {
  margin: 10px 0 0 0;
}
.minicart-total-price .minicart-button-simplification {
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.minicart-total-price .minicart-button-simplification .my-button {
  margin: 0;
}
.minicart-total-price .btn {
  padding: 10px 20px;
  min-width: 200px;
  max-width: 270px;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  margin: 0;
}
.minicart-total-price .btn:hover {
  background: none;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/************************************************/
/***** СЕКЦИЯ КОЛБАСНО-СЫРНАЯ ПРОДУКЦИЯ *****/
.ksp-section {
  background: url("../../assets/img/my-ksp.jpg") center no-repeat;
  background-size: cover;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 80px 0 0 0;
}

.ksp-section-content {
  width: 50%;
}

/*.ksp-section-content h1 {
    font-weight: 900;
    /*font-size: 60px;*/
/*line-height: 1.44;
    text-transform: uppercase;
    margin: 0;*/
/*}*/
.ksp-section-name {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.ksp-section-name .texts1 h1,
.ksp-section-name .texts2 h1 {
  display: block;
  font-weight: 900;
  line-height: 1.4;
  /*font-size: 5vw;  // будет расти с шириной экрана*/
  /*font-size: 100px;*/
  font-size: clamp(30px, 5vw, 60px);
  text-transform: uppercase;
  text-align: start;
}

.ksp-section-content p {
  font-weight: 400;
  font-size: 18px;
  color: var(--text-color-2);
  margin: 30px 0;
}

.ksp-section-content .btn {
  padding: 10px 20px;
  min-width: 200px;
  max-width: 270px;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  margin-right: 20px;
  margin-bottom: 20px;
}

.ksp-section-content .btn:hover {
  background: none;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.ksp-section .ksp-section-content .button-simplification {
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.button-simplification .my-button {
  margin-bottom: 20px;
}

@media (min-width: 2560px) {
  .ksp-section {
    min-height: 1200px !important;
  }
}
@media (min-width: 1920px) {
  .ksp-section {
    min-height: 850px;
  }
}
@media (max-width: 992px) {
  .ksp-section-content {
    width: 50%;
  }
  /*.ksp-section-content h1 {
      font-size: 45px;
  }*/
}
@media (max-width: 768px) {
  .ksp-section {
    padding: 0;
  }
  .ksp-section-content {
    width: 50%;
  }
  .ksp-section-content p {
    font-size: 16px;
  }
}
@media (max-width: 425px) {
  .ksp-section-content {
    width: 100% !important;
    text-align: center;
  }
  .ksp-section-name {
    align-items: center;
    justify-content: center;
  }
  .ksp-section-name .texts1 h1,
  .ksp-section-name .texts2 h1 {
    text-align: center;
  }
  .ksp-section-content .btn {
    margin-right: 0;
  }
  .ksp-section .ksp-section-content .button-simplification {
    flex-direction: column;
    align-items: center;
  }
}
/********************************************/
/************** СЕКЦИЯ ХИТЫ ПРОДАЖ **************/
.mst-hit-sale {
  margin: 50px 0 25px 0;
}
.mst-hit-sale .hit-sale-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.mst-hit-sale .poduct-card {
  background-color: var(--bg-color-container);
  cursor: pointer;
  transition: background-color 0.5s;
  padding: 20px;
  margin: 0 0 20px 0;
  border-radius: 10px;
}
.mst-hit-sale .poduct-card:hover {
  background-color: var(--bg-color-dark-container);
}
.mst-hit-sale .poduct-card .product-card-img {
  text-align: center;
}
.mst-hit-sale .poduct-card .product-card-content h3 {
  font-weight: 900;
  font-size: clamp(18px, 1.1vw, 24px);
  line-height: 1;
  text-transform: uppercase;
  margin: 25px 0;
}
.mst-hit-sale .poduct-card .product-card-content h3 a {
  max-height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.mst-hit-sale .poduct-card .product-card-content .product-card-detail {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}
.mst-hit-sale .poduct-card .product-card-content .product-card-detail small {
  color: var(--text-color-3);
  text-decoration: line-through;
  margin-left: 10px;
}
.mst-hit-sale .poduct-card .product-card-content .product-card-detail .product-actions span {
  font-size: 25px;
}
.mst-hit-sale .poduct-card .product-card-content .product-card-detail .product-actions .icon-cart-2 {
  margin-left: 5px;
}
@media (max-width: 425px) {
  .mst-hit-sale .hit-sale-title {
    text-align: center;
    font-size: 30px;
  }
  .mst-hit-sale .button-simplification {
    padding-top: 25px;
  }
}

/************************************************/
/***************** СЕКЦИЯ ПРОДУКТА ***************/
.mst-item-relis {
  padding: 50px 0 25px 0;
}
.mst-item-relis .item-relis-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.mst-item-relis .item-img {
  background-color: var(--bg-color-container);
  text-align: center;
  border-radius: 8px;
  padding: 60px;
  margin-bottom: 10px;
}
.mst-item-relis .item-relis-actions {
  background-color: var(--bg-color-container);
  padding: 30px;
  border-radius: 8px;
}
.mst-item-relis .item-relis-actions .product-price {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: clamp(16px, 1.2vw, 24px);
}
.mst-item-relis .item-relis-actions .product-price small {
  text-decoration: line-through;
  color: var(--text-color-3);
  margin-left: 5px;
}
.mst-item-relis .item-relis-actions .product-price .favor .icon-favorite {
  /*font-size: clamp(18px, 1.2vw, 24px);*/
  font-size: clamp(22px, 1.2vw, 30px);
}
.mst-item-relis .item-relis-actions .item-relis-variations .soki-btn span {
  display: none;
}
.mst-item-relis .item-relis-actions .item-relis-variations ul {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
  display: flex;
  gap: 10px;
}
.mst-item-relis .item-relis-actions .item-relis-variations ul li a {
  width: 60px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--text-color-3);
  text-decoration: none;
  color: var(--text-color-3);
  display: block;
  transition: all 0.3s;
}
.mst-item-relis .item-relis-actions .item-relis-variations ul li a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: transparent;
}
.mst-item-relis .item-relis-actions .item-relis-variations ul li a.active {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: transparent;
}
.mst-item-relis .item-relis-actions .add2cart-btn {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 8px;
  border-color: var(--text-color-3);
  color: var(--text-color-3);
  padding: 14px 0;
  background-color: transparent;
}
.mst-item-relis .item-relis-actions .add2cart-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.mst-item-relis .item-relis-description {
  margin: 40px 0 0 0;
}
.mst-item-relis .item-relis-description .item-description-title {
  font-size: clamp(24px, 1.5vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 30px 0;
}
.mst-item-relis .item-relis-description .item-description-content {
  border-radius: 8px;
  font-size: clamp(14px, 1.5vw, 18px);
}
.mst-item-relis .item-relis-description .item-description-content ul {
  background-color: var(--bg-color-container);
  padding: 20px 20px 20px 40px;
}
.mst-item-relis .item-relis-description .item-description-content ul li {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--text-color-2);
}

@media (max-width: 425px) {
  .item-relis-title {
    text-align: center;
    font-size: 30px !important;
  }
}
/*************************************************/
/***************** СЕКЦИЯ НОВИНКИ ***************/
.mst-news-item {
  padding: 25px 0;
}
.mst-news-item .news-item-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 425px) {
  .mst-news-item .news-item-title {
    text-align: center;
    font-size: 30px;
  }
}
.mst-news-item .card {
  border-radius: 10px;
  background-color: var(--bg-color-container);
  cursor: pointer;
  margin: 0 0 20px 0;
  transition: background-color 0.5s;
}
.mst-news-item .card:hover {
  background-color: var(--bg-color-dark-container);
}
.mst-news-item .card .card-img-top-related {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  flex-shrink: 0;
}
.mst-news-item .card .card-body {
  padding: 20px;
}
.mst-news-item .card .card-body .card-title {
  font-weight: 900;
  font-size: clamp(18px, 1.1vw, 24px);
  line-height: 1;
  text-transform: uppercase;
  margin: 25px 0;
}
.mst-news-item .card .card-body .card-title a {
  max-height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.mst-news-item .card .card-body .card-text {
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.4;
  color: var(--text-color-2);
  max-height: 112px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media (max-width: 425px) {
  .mst-news-item .button-simplification {
    padding-top: 25px;
  }
}

/************************************************/
/****************** СЕКЦИЯ КАТАЛОГ ***************/
.mst-catalog-relis {
  padding: 50px 0 25px 0;
}
.mst-catalog-relis .catalog-relis-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 425px) {
  .mst-catalog-relis .catalog-relis-title {
    text-align: center;
    font-size: 30px;
  }
}
.mst-catalog-relis .accordion {
  --bs-accordion-border-color: var(--accent-color-2);
}
.mst-catalog-relis .accordion-button {
  background-color: var(--bg-color-container);
  color: var(--accent-color-2);
  font-family: "Jost";
  font-weight: 700;
  text-transform: uppercase;
}
.mst-catalog-relis .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23a07c5b' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.mst-catalog-relis .accordion-button:focus {
  box-shadow: var(--accent-color-2);
}
.mst-catalog-relis .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  border-color: var(--accent-color-2);
}
.mst-catalog-relis .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c7a17a' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.mst-catalog-relis .accordion-body {
  background-color: var(--bg-color-dark-container);
  color: var(--text-color-2);
}
.mst-catalog-relis .accordion-body .catalog-items {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
}
@media (max-width: 425px) {
  .mst-catalog-relis .accordion-body .catalog-items {
    flex-direction: column;
    align-items: center;
  }
}
.mst-catalog-relis .accordion-body .catalog-items .catalog-items-img {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}
.mst-catalog-relis .accordion-body .catalog-items .catalog-items-content {
  flex: 1;
}
.mst-catalog-relis .accordion-body .catalog-items .catalog-items-content .card-text-catalog {
  font-size: clamp(14px, 1.2vw, 16px);
}
.mst-catalog-relis .accordion-body .catalog-items .catalog-items-content .product-price {
  font-size: clamp(14px, 1.5vw, 24px);
  margin: 30px 0 0 0;
}
.mst-catalog-relis .accordion-body .catalog-items .catalog-items-content .product-price small {
  text-decoration: line-through;
  color: var(--text-color-3);
  margin-left: 5px;
}
.mst-catalog-relis .accordion-body .catalog-items .catalog-items-content .button-simplification {
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  justify-content: end;
}
.mst-catalog-relis .accordion-body .catalog-items .catalog-items-content .button-simplification .btn {
  padding: 10px 20px;
  min-width: 200px;
  max-width: 270px;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  margin-right: 0;
  margin-bottom: 20px;
}
.mst-catalog-relis .accordion-body .catalog-items .catalog-items-content .button-simplification .btn:hover {
  background: none;
  color: var(--accent-color);
  border-color: var(--accent-color);
}
@media (max-width: 425px) {
  .mst-catalog-relis .accordion-body .catalog-items .catalog-items-content .button-simplification {
    flex-direction: column;
    align-items: center;
  }
  .mst-catalog-relis .accordion-body .catalog-items .catalog-items-content .button-simplification .my-button {
    margin-bottom: 0;
  }
}

/*************************************************/
/****************** СЕКЦИЯ ЛИЦЕНЗИИ ***************/
.mst-licenzii {
  padding: 50px 0 25px 0;
}
.mst-licenzii .mst-licenzii-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}
@media (max-width: 425px) {
  .mst-licenzii .mst-licenzii-title {
    text-align: center;
    font-size: 30px;
  }
}
.mst-licenzii .mst-licenzii-card {
  background-color: var(--bg-color-container);
  cursor: pointer;
  transition: background-color 0.5s;
  padding: 20px;
  margin: 0 0 20px 0;
  border-radius: 8px;
}
.mst-licenzii .mst-licenzii-card:hover {
  background-color: var(--bg-color-dark-container);
}
.mst-licenzii .mst-licenzii-card .mst-licenzii-card-img {
  text-align: center;
}
.mst-licenzii .mst-licenzii-card .mst-licenzii-card-img img {
  max-width: 100%;
  height: 200px; /* Твоя фиксированная высота */
  width: auto; /* Защита от сплющивания, пропорции сохраняются */
  display: inline-block;
}
.mst-licenzii .mst-licenzii-card .mst-licenzii-card-content {
  margin: 15px 0 0 0;
}
.mst-licenzii .mst-licenzii-card .mst-licenzii-card-content ul {
  list-style: none;
  padding: 20px 0 0 0;
  margin: 0;
}
.mst-licenzii .mst-licenzii-card .mst-licenzii-card-content ul li {
  font-size: clamp(13px, 1.5vw, 18px);
  color: var(--text-color-2);
}
.mst-licenzii .mst-licenzii-card .mst-licenzii-card-content ul li .inft {
  font-size: clamp(11px, 1.5vw, 14px);
  margin: 0 0 0 8px;
}

@media (min-width: 1440px) {
  .mst-licenzii-card-img img {
    height: 280px !important;
  }
}
@media (max-width: 425px) {
  .mst-licenzii-card-img img {
    height: auto !important;
    width: auto !important;
  }
}
/**************************************************/
/******************** СЕКЦИЯ ШОРТСЫ ****************/
.mst-shorts {
  padding: 50px 0 25px 0;
}
.mst-shorts .mst-shorts-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}
@media (max-width: 425px) {
  .mst-shorts .mst-shorts-title {
    text-align: center;
    font-size: 30px;
  }
}
.mst-shorts .mst-shorts-card {
  background-color: var(--bg-color-container);
  cursor: pointer;
  transition: background-color 0.5s;
  padding: 20px;
  margin: 0 0 30px 0;
  border-radius: 8px;
}
.mst-shorts .mst-shorts-card:hover {
  background-color: var(--bg-color-dark-container);
}
.mst-shorts .mst-shorts-card .mst-shorts-card-video {
  text-align: center;
}
.mst-shorts .mst-shorts-card .mst-shorts-card-video video {
  max-width: 100%;
  max-height: 500px; /* Твоя фиксированная высота */ /* Защита от сплющивания, пропорции сохраняются */
  display: inline-block;
  border-radius: 8px;
}
@media (max-width: 425px) {
  .mst-shorts .mst-shorts-card .mst-shorts-card-video video {
    height: auto;
    width: auto;
  }
}
.mst-shorts .mst-shorts-card .mst-shorts-card-content {
  line-height: 1.4;
  font-weight: 500;
  font-size: clamp(12px, 1.1vw, 14px);
  text-transform: uppercase;
  color: var(--text-color-2);
  margin-bottom: 20px;
}

/**************************************************/
/******************** СЕКЦИЯ О НАС ****************/
.mst-about {
  padding: 50px 0 25px 0;
}
.mst-about .mst-about-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}
@media (max-width: 425px) {
  .mst-about .mst-about-title {
    text-align: center;
    font-size: 30px;
  }
}
.mst-about .mst-about-section-inner {
  display: flex;
}
@media (max-width: 992px) {
  .mst-about .mst-about-section-inner {
    flex-direction: column;
  }
}
.mst-about .mst-about-section-inner .mst-about-section-img {
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
}
@media (max-width: 992px) {
  .mst-about .mst-about-section-inner .mst-about-section-img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }
}
.mst-about .mst-about-section-inner .mst-about-section-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.mst-about .mst-about-section-inner .mst-about-section-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mst-about .mst-about-section-inner .mst-about-section-content {
  width: 50%;
  background-color: var(--bg-color-container);
  padding: 20px;
  border-radius: 0 8px 8px 0;
}
@media (max-width: 992px) {
  .mst-about .mst-about-section-inner .mst-about-section-content {
    width: 100%;
    border-radius: 0 0 8px 8px;
  }
}
.mst-about .mst-about-section-inner .mst-about-section-content p {
  color: var(--text-color-2);
  font-family: Jost;
  font-weight: 400;
  font-size: clamp(13px, 1.1vw, 16px);
}

/**************************************************/
/******************** СЕКЦИЯ ПРИВАТНОСТЬ ****************/
.mst-privat {
  padding: 50px 0 25px 0;
}
.mst-privat .mst-privat-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}
@media (max-width: 425px) {
  .mst-privat .mst-privat-title {
    text-align: center;
    font-size: 30px;
  }
}
.mst-privat .mst-privat-section-inner {
  display: block;
}
.mst-privat .mst-privat-section-inner .mst-privat-section-content {
  width: 100%;
  background-color: var(--bg-color-container);
  padding: 20px;
}
.mst-privat .mst-privat-section-inner .mst-privat-section-content h4 {
  color: var(--accent-color-2);
  font-family: Jost;
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 18px);
  text-transform: uppercase;
  margin: 0;
}
.mst-privat .mst-privat-section-inner .mst-privat-section-content p {
  color: var(--text-color-2);
  font-family: Jost;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
}

/********************************************************/
/************************ СЕКЦИЯ ГМО ********************/
.mst-gmo {
  padding: 50px 0 25px 0;
}
.mst-gmo .mst-gmo-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}
@media (max-width: 425px) {
  .mst-gmo .mst-gmo-title {
    text-align: center;
    font-size: 30px;
  }
}
.mst-gmo .mst-gmo-section-inner {
  display: block;
}
.mst-gmo .mst-gmo-section-inner .mst-gmo-section-content {
  width: 100%;
  background-color: var(--bg-color-container);
  padding: 20px;
}
.mst-gmo .mst-gmo-section-inner .mst-gmo-section-content h4 {
  color: var(--accent-color-2);
  font-family: Jost;
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 18px);
  text-transform: uppercase;
  margin: 0;
}
.mst-gmo .mst-gmo-section-inner .mst-gmo-section-content p {
  color: var(--text-color-2);
  font-family: Jost;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
}
.mst-gmo .mst-gmo-section-inner .mst-gmo-section-content ul {
  margin-bottom: 0;
}
.mst-gmo .mst-gmo-section-inner .mst-gmo-section-content ul li {
  color: var(--text-color-2);
  font-family: Jost;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
}
@media (max-width: 425px) {
  .mst-gmo .mst-gmo-section-inner .mst-gmo-section-content ul {
    padding-left: 15px;
  }
}
@media (max-width: 425px) {
  .mst-gmo .mst-gmo-section-inner .mst-gmo-section-content {
    padding-bottom: 0;
  }
}

/********************************************************/
/*********** СЕКЦИЯ НАШИ ПАРТНЕРЫ **********/
.mst-parthners {
  padding: 25px 0 25px 0;
  background-color: var(--bg-color); /* Оч легкий благородный серый фон */
}

/* Заголовок секции в стиле минимализма Jost */
.mst-parthners .h-title {
  font-family: "Jost", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--text-color);
  margin-bottom: 40px;
  position: relative;
  text-transform: uppercase;
  line-height: 1.4;
  /*letter-spacing: 1px;*/
}

/* Сама карточка партнера */
.mst-parthner-card {
  margin-bottom: 30px;
}

/* Контейнер под логотип/изображение */
.mst-parthner-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px; /* Идеальная высота для прямоугольных лого */
  padding: 15px 25px;
  background-color: var(--bg-color-container);
  border: 1px solid var(--accent-color-2); /* Тонкая незаметная рамка */
  border-radius: 12px;
  /* Управление цветом SVG изнутри */
  color: var(--text-color-3); /* Изначальный спокойный графитовый цвет */
  /* Плавная анимация ховера */
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Поведение при наведении */
.mst-parthner-card-img:hover {
  color: var(--accent-color-2); /* Логотип становится сочным черным (или поставь свой акцентный цвет) */
  border-color: transparent;
  background-color: var(--bg-color-container);
  transform: translateY(-4px); /* Мягкий подъем карточки вверх */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04); /* Дорогая мягкая тень */
}

/* Резиновость для SVG */
.mst-parthner-card-img svg,
.mst-parthner-card-img img {
  width: 100%;
  height: 100%;
  max-width: 280px; /* Чтобы на больших мониторах логотипы не разносило во всю ширь */
  object-fit: contain;
}

@media (max-width: 425px) {
  .mst-parthners .h-title {
    text-align: center;
    font-size: 30px !important;
  }
}
/*******************************************/
/********************* ФУТЕР САЙТА *******************/
.mst-footer {
  padding: 25px 0;
  border-top: 2px solid var(--bg-color-container);
}
.mst-footer .mst-footer-logo-inner .mst-footer-logo img {
  max-height: 60px;
}
.mst-footer .mst-footer-logo-inner .mst-footer-logo span {
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 900;
  color: var(--accent-color-2);
  text-transform: uppercase;
  transition: all 0.4s;
}
.mst-footer .mst-footer-logo-inner:hover .mst-footer-logo span {
  color: var(--accent-color);
}
.mst-footer .mst-footer-menu {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.mst-footer .mst-footer-menu li {
  margin-bottom: 15px;
}
.mst-footer .mst-footer-menu .mst-privates {
  text-transform: none;
  font-style: italic;
  font-size: 11pt;
  color: var(--accent-color-2);
}

@media (max-width: 768px) {
  .mst-footer-logo-inner {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  .mst-footer-menu-last {
    text-align: end;
  }
  .mst-footer-menu .mst-privates {
    text-transform: none;
    font-style: italic;
    font-size: 9pt;
  }
}
/*****************************************************/
/********** СТИЛЬ МОДАЛЬНОГО ОКНА **********/
.modal {
  z-index: 2000;
}

.modal-content {
  --bs-modal-bg: var(--bg-color);
  --bs-modal-border-color: var(--accent-color);
  --bs-modal-header-border-color: var(--navborder-color);
  --bs-modal-footer-border-color: none;
}

.modal-content .modal-title {
  font-family: "Jost";
  font-size: clamp(16px, 2.5vw, 28px) !important;
  font-weight: 900;
  text-transform: uppercase !important;
  color: var(--accent-color-2) !important;
}

.modal-header .mst-close-btn {
  filter: invert(74%) sepia(17%) saturate(1354%) hue-rotate(344deg) brightness(92%) contrast(86%);
  border: 1px solid;
}

.modal-body .mod-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  border-right: 1px solid var(--accent-color-2);
}

.modal-body .mod-phone,
.modal-body .mod-adres,
.modal-body .mod-max {
  /*margin: 15px 0;*/
  padding: 10px 0;
  color: var(--accent-color-2);
  display: flex;
  align-items: center;
  min-width: 0; /* Важно: разрешает флекс-элементам сжиматься внутри модалки */
  gap: 10px;
}

.modal-body .mod-phone .icon-mobile,
.modal-body .mod-adres .icon-safari,
.modal-body .mod-max .icon-users {
  font-size: clamp(16px, 2vw, 30px);
}

.modal-body .mod-phone .tel-text,
.modal-body .mod-adres .safari-text,
.modal-body .mod-max a.max-text {
  /*color: var(--accent-color-2);
  font-size: clamp(8px, 1.1vw, 16px);
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;*/
  /*white-space: nowrap;      */ /* Запрещаем перенос на вторую строку */
  /*overflow: hidden;         */ /* Прячем то, что выходит за рамки */
  /*text-overflow: ellipsis;  */ /* Браузер сам ставит три точки … */
  /*flex: 1;*/
  color: var(--accent-color-2);
  font-size: clamp(8px, 1.1vw, 16px);
}

.modal-body .mod-max .max-text:hover {
  color: var(--accent-color);
}

.carta-img {
  border-radius: 8px;
}

.modal-footer .btn {
  padding: 10px 20px;
  min-width: 200px;
  max-width: 270px;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  margin-right: 20px;
  margin-bottom: 20px;
}

.modal-footer .btn:hover {
  background: none;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.modal-footer .button-simplification {
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

@media (max-width: 991.98px) {
  .modal {
    padding-top: 40px;
  }
  .modal-body .row > .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
  }
  .modal-body .mod-content {
    border-right: transparent !important;
  }
}
@media (max-width: 768px) {
  .modal-footer .button-simplification {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .modal-footer .btn,
  .modal-footer .my-button {
    margin: 0;
  }
}
/*-----------------------------------------*/


/*# sourceMappingURL=my_style.css.map */
