@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 600;
}

h2 {
  font-size: 34px;
  font-weight: 700;
}

h3 {
  font-size: 30px;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.text {
  font-size: 18px;
}
.text * {
  font-size: 18px;
}
.text ul {
  list-style-type: disc;
  margin-left: 32px;
  margin-bottom: 1em;
}

.text-center {
  text-align: center;
}

.dark * {
  color: #ffffff;
}
.dark .products-title::after, .dark .title-block::after {
  background: #ffffff;
}

.mxw-380 {
  max-width: 380px;
}

.container-flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.m-0 {
  margin: 0;
}

.pb-30 {
  padding-bottom: 30px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: #032828;
  padding-top: 10px;
}
header .top-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
header .top-part .support-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
header .top-part .support-block .language-codes {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
header .top-part .support-block .language-codes a {
  display: flex;
  opacity: 0.5;
}
header .top-part .support-block .language-codes a:hover {
  opacity: 0.7;
}
header .top-part .support-block .language-codes a.active {
  opacity: 1;
}
header .top-part .support-block .burger-menu {
  width: 22px;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1100;
}
header .top-part .support-block .burger-menu .line {
  position: relative;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}
header .top-part .support-block .burger-menu .line span {
  position: absolute;
  left: -8px; /* расстояние до таблетки */
  width: 6px;
  height: 3px;
  background: #fff;
  border-radius: 3px; /* делает таблетку */
  content: "";
  transition: opacity 0.3s ease, transform 0.3s ease;
}
header .top-part .support-block .burger-menu.active .line:nth-child(1) {
  transform: rotate(45deg) translateY(7px) translateX(7px);
}
header .top-part .support-block .burger-menu.active .line:nth-child(2) {
  opacity: 0;
}
header .top-part .support-block .burger-menu.active .line:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px) translateX(6px);
}
header .top-part .support-block .burger-menu.active .line span {
  opacity: 0;
  transform: translateX(-4px);
}
header .bottom-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .bottom-part .main-menu {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
}
header .bottom-part .main-menu li a {
  height: 100%;
  width: 100%;
  display: flex;
  padding: 4px 10px;
  border-radius: 10px 10px 0 0;
  text-wrap: nowrap;
}
header .bottom-part .main-menu li a:hover {
  background: #4C7378;
}

.main-menu .has-submenu {
  position: relative;
}
.main-menu .has-submenu:hover .sub-menu {
  transform: scaleY(1);
}
.main-menu .has-submenu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #032828;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 150px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.main-menu .has-submenu .sub-menu li {
  padding: 8px 20px;
}
.main-menu .has-submenu .sub-menu li:hover {
  background: #4C7378;
}

/* === Мобильное меню === */
.mobile-menu {
  overflow: auto;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 70px);
  background: linear-gradient(135deg, #032828 0%, rgb(2.7, 36, 36) 100%);
  padding: 30px;
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .buttons {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu .buttons .social-links {
  display: flex;
  gap: 10px;
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
}
.mobile-menu ul li {
  margin-bottom: 8px;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.4s ease forwards;
}
.mobile-menu ul li:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-menu ul li:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-menu ul li:nth-child(3) {
  animation-delay: 0.3s;
}
.mobile-menu ul li:nth-child(4) {
  animation-delay: 0.4s;
}
.mobile-menu ul li:nth-child(5) {
  animation-delay: 0.5s;
}
.mobile-menu ul li:nth-child(6) {
  animation-delay: 0.6s;
}
.mobile-menu ul li:nth-child(7) {
  animation-delay: 0.7s;
}
.mobile-menu ul li:nth-child(8) {
  animation-delay: 0.8s;
}
.mobile-menu ul li:nth-child(9) {
  animation-delay: 0.9s;
}
.mobile-menu ul li:nth-child(10) {
  animation-delay: 1s;
}
.mobile-menu ul li a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}
.mobile-menu ul li a:hover {
  color: #4C7378;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}
.mobile-menu ul li.has-submenu a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.3s ease;
}
.mobile-menu ul li.has-submenu.open a::after {
  transform: translateY(-50%) rotate(45deg);
}
.mobile-menu ul li.has-submenu .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 15px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.mobile-menu ul li.has-submenu .sub-menu li {
  margin: 0;
  opacity: 1;
  transform: none;
  animation: none;
}
.mobile-menu ul li.has-submenu .sub-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  border-radius: 6px;
  margin: 2px 8px;
  background: rgba(255, 255, 255, 0.03);
}
.mobile-menu ul li.has-submenu .sub-menu li a:hover {
  color: #4C7378;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}
.mobile-menu ul li.has-submenu .sub-menu li a::after {
  display: none;
}
.mobile-menu ul li.has-submenu.open .sub-menu {
  max-height: 500px;
  padding: 10px 0;
}

.bottom {
  z-index: 100;
  position: sticky;
  bottom: 0;
  background: #032828;
  padding: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.bottom .whatsapp {
  display: flex;
  aspect-ratio: 1;
  border-radius: 100%;
  background: #2FBF44;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Overlay для мобильного меню */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Блокировка прокрутки при открытии меню */
body.menu-open {
  overflow: clip;
}
body.menu-open .mobile-menu {
  transform: translateX(0);
}

footer {
  background: #032828;
}
footer * {
  color: #ffffff;
}
footer .footer-content {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
footer .footer-content .footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .footer-content .footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  line-height: 3em;
  padding-left: 32px;
  margin-bottom: 0;
}
footer .footer-content .footer-col h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 4px;
  height: 100%;
  background: #4C7378;
  border-radius: 4px;
}
footer .footer-content .footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 13px;
  margin: auto;
  width: 8px;
  height: 13px;
  background: #4C7378;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
footer .footer-content .footer-col .social-links {
  display: flex;
  gap: 10px;
}
footer .footer-content .footer-col .map-container {
  width: 100%;
  max-width: 300px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  footer .footer-content .footer-col .map-container {
    max-width: 100%;
    height: 250px;
  }
}
footer .footer-content .footer-col .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
footer .footer-content .footer-col p {
  font-size: 14px;
  margin: 0;
}
footer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: inside;
}
footer ul li {
  font-size: 14px;
}
footer ul li a {
  font-size: 14px;
}
footer .footer-line {
  background: #4C7378;
  padding: 20px 0;
}
footer .footer-line .footer-line-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .footer-line .footer-line-content {
    flex-direction: column;
  }
}
footer .footer-line .footer-line-content .part {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  footer .footer-line .footer-line-content .part {
    flex-direction: column;
    align-items: center;
  }
}
footer .footer-line .footer-line-content ul {
  flex-direction: row;
  gap: 24px;
}
@media (max-width: 767px) {
  footer .footer-line .footer-line-content ul {
    flex-direction: column;
  }
}

.hero .slider-area {
  position: relative;
}
.hero .hero-slide {
  aspect-ratio: 21/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero .hero-slide {
    aspect-ratio: 9/16;
  }
}
.hero .hero-slide .hero-background {
  position: absolute;
  z-index: -10;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero .hero-slide .hero-title {
  color: #ffffff;
  text-align: center;
  font-size: 116px;
  font-weight: 500;
  position: relative;
}
@media (max-width: 767px) {
  .hero .hero-slide .hero-title {
    font-size: 50px;
  }
}
.hero .hero-slide .hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 33%;
  min-width: 200px;
  max-width: 350px;
  height: 6px;
  border-radius: 6px;
  background: #4C7378;
}
.hero .hero-slide .hero-text {
  color: #ffffff;
  text-align: center;
  font-size: 44px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .hero .hero-slide .hero-text {
    font-size: 30px;
  }
}
.hero .hero-slide .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  margin-bottom: 220px;
}
.hero .hero-slide .hero-content .hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .btn {
  text-align: center;
  padding: 6px 24px;
  border-radius: 10px;
  border: 1px solid #FFF;
  backdrop-filter: blur(3px);
  font-size: 24px;
}
.hero .btn::after {
  background: rgba(217, 217, 217, 0.1);
}
.hero .btn:hover {
  background: rgba(205, 33, 34, 0.3);
}
.hero .heroSwiper {
  position: relative;
}
.hero .nested-slider {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 20;
  display: flex;
  max-width: 1150px;
}
.hero .nested-slider .nested-slide {
  display: flex;
  margin-top: 20px;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.8s ease;
}
.hero .nested-slider .nested-slide::after {
  opacity: 0;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -13px;
  margin: auto;
  height: 13px;
  width: 30px;
  background: #ffffff;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transition: opacity 0.8s ease;
}
.hero .nested-slider .nested-slide .nested-content {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  padding: 6px;
  transition: border-color 0.8s ease;
}
.hero .nested-slider .nested-slide .nested-content .nested-image {
  border-radius: 10px;
  height: 200px;
  width: 200px;
  object-fit: cover;
  aspect-ratio: 1;
  max-width: none;
}
.hero .nested-slider .nested-slide .nested-content .nested-bottom {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(217, 217, 217, 0.1);
  backdrop-filter: blur(3px);
  border-top: 1px solid #ffffff;
  text-align: center;
  padding: 6px;
  transition: opacity 0.8s ease;
}
.hero .nested-slider .nested-slide .nested-content .nested-bottom .nested-name {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
}
.hero .nested-slider .swiper-slide-active .nested-slide {
  transform: scale(1);
}
.hero .nested-slider .swiper-slide-active .nested-slide::after {
  opacity: 1;
}
.hero .nested-slider .swiper-slide-active .nested-slide .nested-content {
  border-color: #fff;
}
.hero .nested-slider .swiper-slide-active .nested-slide .nested-content .nested-bottom {
  opacity: 1;
}
.hero .nested-slider .swiper-slide {
  transition: transform 4s ease;
}

.promotions-section {
  position: relative;
  margin-top: -32px;
  margin-bottom: 32px;
  z-index: 10;
}
.promotions-section .promotions-side .promotions-content {
  height: 100%;
  background: #032828;
  display: grid;
  grid-template-columns: 5fr 2fr;
  justify-items: center;
  align-items: center;
  justify-items: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .promotions-section .promotions-side .promotions-content {
    grid-template-columns: 1fr;
  }
}
.promotions-section .promotions-side .promotions-content .promotions-info {
  padding: 20px 24px;
}
.promotions-section .promotions-side .promotions-content .promotions-info .promotions-title {
  color: #ffffff;
  font-size: 28px;
}
.promotions-section .promotions-side .promotions-content .promotions-info .promotions-text {
  color: #ffffff;
  font-size: 14px;
}
.promotions-section .promotions-side .promotions-content .promotions-btn {
  clip-path: polygon(8% 0%, 100% 0, 100% 100%, 0% 100%);
  background: #4C7378;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 180px;
}
@media (max-width: 767px) {
  .promotions-section .promotions-side .promotions-content .promotions-btn {
    clip-path: none;
  }
}
.promotions-section .promotions-side .promotions-content .promotions-btn .leaflet {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
.promotions-section .promotions-side .promotions-content .promotions-btn .btn {
  margin-left: 24px;
  text-align: center;
  padding: 6px 24px;
  border-radius: 10px;
  border: 1px solid #FFF;
  backdrop-filter: blur(3px);
  font-size: 24px;
  z-index: 10;
}
.promotions-section .promotions-side .promotions-content .promotions-btn .btn::after {
  background: rgba(217, 217, 217, 0.1);
}

.show-cat-titles {
  position: relative;
  padding-bottom: 24px;
}
.show-cat-titles h2 {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .show-cat-titles h2 {
    font-size: 40px;
  }
}
.show-cat-titles P {
  text-align: center;
  font-size: 14px;
}
.show-cat-titles::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 33%;
  min-width: 200px;
  max-width: 350px;
  height: 6px;
  border-radius: 6px;
  background: #4C7378;
}

.benefits {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}
.benefits {
  margin-top: 5%;
}
.benefits .benefit {
  display: grid;
  grid-template-columns: 156px auto;
  grid-template-rows: auto auto;
  gap: 12px;
  grid-template-areas: "gear-box title" "gear-box text" "list list" "preview preview";
  margin-bottom: 32px;
}
.benefits .gear-box {
  grid-area: gear-box;
}
.benefits .benefit-title {
  grid-area: title;
}
.benefits .benefit-text {
  grid-area: text;
}
.benefits .benefit-list {
  grid-area: list;
}
.benefits .category-preview {
  grid-area: preview;
}
.benefits .gear-box {
  border: 6px solid #4C7378;
  border-radius: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s background ease;
}
.benefits .gear-box svg * {
  fill: #4C7378;
  transition: 0.4s fill ease;
}
.benefits .gear-box:hover {
  background: #4C7378;
}
.benefits .gear-box:hover svg * {
  fill: #ffffff;
}
.benefits .benefit-title {
  font-size: 34px;
}
.benefits .benefit-text {
  font-size: 14px;
}
.benefits .benefit-list {
  margin-top: 24px;
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 71px;
  justify-content: space-between;
}
.benefits .benefit-list::before {
  content: "";
  position: absolute;
  left: 8px;
  height: 100%;
  width: 1px;
  background: #ccc;
}
.benefits .benefit-list li {
  position: relative;
  line-height: 1;
  padding-left: 32px;
  font-weight: 600;
}
.benefits .benefit-list li::before {
  content: "";
  position: absolute;
  left: 0px;
  height: 13px;
  width: 13px;
  top: 0;
  margin: auto;
  aspect-ratio: 1;
  background: #ffffff;
  border: 2px solid #4C7378;
  border-radius: 100%;
}
.benefits .benefit-list li:hover {
  color: #4C7378;
}
.benefits .benefit-list li:hover::before {
  background: #4C7378;
}

.show-cat .show-cat-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.show-cat .show-cat-content .categories .benefit {
  display: grid;
  grid-template-columns: 156px auto;
  grid-template-rows: auto auto;
  gap: 12px;
  grid-template-areas: "gear-box title" "gear-box text" "list list" "preview preview";
  margin-bottom: 32px;
}
.show-cat .show-cat-content .categories .gear-box {
  grid-area: gear-box;
}
.show-cat .show-cat-content .categories .benefit-title {
  grid-area: title;
}
.show-cat .show-cat-content .categories .benefit-text {
  grid-area: text;
}
.show-cat .show-cat-content .categories .benefit-list {
  grid-area: list;
}
.show-cat .show-cat-content .categories .category-preview {
  grid-area: preview;
}
.show-cat .show-cat-content .categories .gear-box {
  border: 6px solid #4C7378;
  border-radius: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s background ease;
}
.show-cat .show-cat-content .categories .gear-box svg * {
  fill: #4C7378;
  transition: 0.4s fill ease;
}
.show-cat .show-cat-content .categories .gear-box:hover {
  background: #4C7378;
}
.show-cat .show-cat-content .categories .gear-box:hover svg * {
  fill: #ffffff;
}
.show-cat .show-cat-content .categories .benefit-title {
  font-size: 34px;
}
.show-cat .show-cat-content .categories .benefit-text {
  font-size: 14px;
}

.products-slider.dark {
  background: #4C7378;
}
.products-slider .products-slider-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.products-slider .products-slider-content .products-body {
  position: relative;
}
.products-slider .products-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  justify-items: center;
  align-items: end;
}
@media (max-width: 767px) {
  .products-slider .products-head {
    flex-direction: column;
    margin: auto;
  }
}
.products-slider .products-head .category-tabs {
  display: flex;
  gap: 20px;
}
.products-slider .products-head .category-tabs li {
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
}
.products-slider .products-head .products-link {
  margin-left: auto;
}
.products-slider .products-head .all-products {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 767px) {
  .products-slider .products-head .all-products {
    margin: auto;
  }
}
.products-slider .products-head .all-products .category-arrow {
  background: #032828;
  border-radius: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  transition: 0.4s opacity ease, transform 0.4s ease;
  opacity: 0.6;
  transform: rotate(90deg);
}
.products-slider .products-head .all-products:hover .category-arrow {
  opacity: 1;
  transform: rotate(0);
}

.products-tab-content {
  display: none;
}

.products-tab-content.active {
  display: block;
}

.category-tabs li.active {
  color: #FFF;
  text-decoration: underline;
}

.slider {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.swiper-slide.flex-slide {
  display: flex; /* растягиваем внутреннюю карточку */
  height: auto; /* пусть высота адаптируется */
  margin-bottom: 32px;
}

.product-card {
  display: flex;
  flex-direction: column; /* элементы внутри идут сверху вниз */
  justify-content: flex-start;
  height: 100%; /* карточка тянется на всю высоту */
  background: #ffffff;
  border-radius: 16px;
  padding: 4px 4px 4px;
  border: 1px solid #D9D9D9;
  gap: 12px;
  position: relative;
}
.product-card .product-tags {
  position: absolute;
  top: -1px;
  left: 10%;
  z-index: 10;
}
.product-card .product-tags .discount-tag {
  background: #CD2122;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 0 0 6px 6px;
}
.product-card .product-tags .discount-tag::after {
  content: "";
  background: #CD2122;
  position: absolute;
  top: 98%;
  left: 0;
  right: 0;
  margin: auto;
  height: 5px;
  width: 10px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.product-card:hover img {
  transform: scale(1.2);
}
.product-card .product-image {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 7/5;
  object-fit: cover;
}
.product-card .product-image a {
  width: 100%;
}
.product-card .product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card .product-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 10px;
  flex: 1;
  height: 100%;
}
.product-card .product-content .product-name {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}
.product-card .product-content .product-name a {
  color: #333333;
}
.product-card .product-content .product-info {
  display: flex;
  gap: 10px;
}
.product-card .product-content .product-info .product-description {
  color: #333333;
  width: 70%;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.product-card .product-content .product-info::before {
  content: "";
  display: flex;
  height: auto;
  width: 3px;
  background: #4C7378;
  border-radius: 3px;
}
.product-card .product-content .product-price {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: auto;
}
.product-card .product-content .product-price .old-price {
  font-size: 18px;
  font-weight: 400;
  text-decoration: line-through;
  color: #D9D9D9;
}
.product-card .product-content .product-price .current-price {
  font-size: 18px;
  font-weight: 700;
  color: #032828;
}
.product-card .product-content .product-more {
  color: #333333;
  text-decoration: underline;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.product-card .product-content .add-order {
  margin: auto;
  margin-bottom: 8px;
  z-index: 10;
  bottom: 0;
}
.product-card .view-news {
  width: 100%;
  background: #4C7378;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  margin-bottom: 8px;
}

.add-order {
  cursor: pointer;
  width: 100%;
  height: 45px;
  background: #032828;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  left: 0;
  right: 0;
  max-width: 300px;
}
.add-order .order-text {
  color: #ffffff;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-order .icon {
  border-radius: 10px;
  background: #2FBF44;
  height: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.tags .tag {
  background: #CD2122;
  width: fit-content;
  padding: 4px 10px 4px 6px;
  display: flex;
  gap: 6px;
  border-radius: 20px;
  align-items: center;
}
.tags .tag span {
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
}

.category-preview {
  margin-top: 24px;
  position: relative;
  display: flex;
  margin-bottom: 32px;
}
.category-preview:hover img {
  transform: scale(1.2);
}
.category-preview .category-image {
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  aspect-ratio: 8/5;
  background: #D9D9D9;
}
.category-preview .category-image img {
  transition: transform 0.4s ease;
}
.category-preview .category-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  border: 1px solid #D9D9D9;
  position: absolute;
  transform: translate(0, -50%);
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  background: #ffffff;
  width: 90%;
  border-radius: 10px;
  transition: 0.4s background ease, 0.4s border-color ease;
  cursor: pointer;
}
.category-preview .category-info .name {
  font-size: 22px;
  font-weight: 700;
  transition: 0.4s color ease;
}
.category-preview .category-info .category-arrow {
  background: #CD2122;
  border-radius: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  transition: 0.4s background ease, transform 0.4s ease;
}
.category-preview:hover .category-info {
  background: #032828;
  border-color: #032828;
}
.category-preview:hover .category-info .name {
  color: #ffffff;
}
.category-preview:hover .category-info .category-arrow {
  background: #4C7378;
  transform: rotate(90deg);
}

.swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  height: 16px;
  width: 16px;
  background: #ffffff;
  border-radius: 16px;
  transition: width 0.6s ease, background 0.6s ease;
  opacity: 1;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 48px;
  background: #032828 !important;
}
.swiper-pagination-bullets.gray .swiper-pagination-bullet {
  background: #D9D9D9;
}

body .swiper-button-prev svg, body .swiper-button-next svg {
  fill: #ffffff;
}
body .swiper-button-prev svg *, body .swiper-button-next svg * {
  fill: #ffffff;
}
body .products-tab-content .swiper-button-prev {
  left: -50px;
  transform: scale(0.6);
}
body .products-tab-content .swiper-button-next {
  right: -50px;
  transform: scale(0.6);
}
body .partners-slider .swiper-button-prev {
  left: -50px;
  transform: scale(0.6);
}
body .partners-slider .swiper-button-prev svg {
  fill: #000000;
}
body .partners-slider .swiper-button-prev svg * {
  fill: #000000;
}
body .partners-slider .swiper-button-next {
  right: -50px;
  transform: scale(0.6);
}
body .partners-slider .swiper-button-next svg {
  fill: #000000;
}
body .partners-slider .swiper-button-next svg * {
  fill: #000000;
}
body .categories {
  position: relative;
}
body .categories .swiper-button-prev {
  left: -50px;
  transform: scale(0.6);
}
body .categories .swiper-button-prev svg {
  fill: #000000;
}
body .categories .swiper-button-prev svg * {
  fill: #000000;
}
body .categories .swiper-button-next {
  right: -50px;
  transform: scale(0.6);
}
body .categories .swiper-button-next svg {
  fill: #000000;
}
body .categories .swiper-button-next svg * {
  fill: #000000;
}
body .partners-slider {
  position: relative;
}
body .partners-slider .swiper-button-prev {
  left: -50px;
  transform: scale(0.6);
}
body .partners-slider .swiper-button-prev svg {
  fill: #000000;
}
body .partners-slider .swiper-button-prev svg * {
  fill: #000000;
}
body .partners-slider .swiper-button-next {
  right: -50px;
  transform: scale(0.6);
}
body .partners-slider .swiper-button-next svg {
  fill: #000000;
}
body .partners-slider .swiper-button-next svg * {
  fill: #000000;
}

.partners-slider {
  position: relative;
}

.partners {
  margin: 40px 0;
}

.related-products-swiper {
  width: 100%;
}

.image-slider .aspect-ratio-1 img {
  aspect-ratio: 1;
  object-fit: cover;
}

.why-choose-us {
  background: #032828;
  padding: 40px 0 120px;
}
.why-choose-us .why-us-content {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
}
@media (max-width: 767px) {
  .why-choose-us .why-us-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.why-choose-us .why-us-content .info h2 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
}
.why-choose-us .why-us-content .info .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.why-choose-us .why-us-content .info .benefits-list .benefit {
  z-index: 1;
  position: relative;
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 64px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px 20px;
  grid-template-areas: "checkmark title" "checkmark text";
}
.why-choose-us .why-us-content .info .benefits-list .benefit .checkmark {
  grid-area: checkmark;
}
.why-choose-us .why-us-content .info .benefits-list .benefit .title {
  grid-area: title;
}
.why-choose-us .why-us-content .info .benefits-list .benefit .text {
  grid-area: text;
}
.why-choose-us .why-us-content .info .benefits-list .benefit .title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}
.why-choose-us .why-us-content .info .benefits-list .benefit .text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}
.why-choose-us .why-us-content .info .benefits-list .benefit .checkmark-area {
  background: #4C7378;
  border-radius: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-choose-us .why-us-content .info .benefits-list .benefit:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 30px;
  top: 0;
  height: calc(100% + 40px);
  width: 4px;
  background: #4C7378;
}
.why-choose-us .why-us-content .video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .why-choose-us .why-us-content .video iframe {
    aspect-ratio: 4/3;
  }
}

.steps {
  margin-top: -40px;
}
.steps .steps-flex {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .steps .steps-flex {
    flex-direction: column;
  }
}
.steps .steps-flex .step-item {
  flex: 1;
  padding: 24px 10px 24px 24px;
  background: #032828;
  align-items: center;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 0px 10px;
  grid-template-areas: "h3 h3" "svg p";
}
@media (max-width: 767px) {
  .steps .steps-flex .step-item {
    aspect-ratio: 5/3;
  }
}
.steps .steps-flex .step-item:hover svg {
  animation: wiggle 0.6s ease-in-out infinite;
}
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.steps .steps-flex .step-item h3 {
  grid-area: h3;
}
.steps .steps-flex .step-item svg {
  grid-area: svg;
}
.steps .steps-flex .step-item p {
  grid-area: p;
}
.steps .steps-flex .step-item.first {
  background: #4C7378;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px;
}
.steps .steps-flex .step-item.first h3 {
  text-align: left;
}
.steps .steps-flex .step-item:not(:last-child) {
  position: relative;
}
.steps .steps-flex .step-item:not(:last-child)::after {
  content: "";
  height: 60px;
  width: 20px;
  position: absolute;
  right: -20px;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #4C7378;
}
@media (max-width: 767px) {
  .steps .steps-flex .step-item:not(:last-child)::after {
    left: 0;
    right: 0;
    bottom: -20px;
    top: auto;
    height: 20px;
    width: 60px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
}
.steps .steps-flex .step-item:nth-child(2) {
  background: #283B3E;
}
.steps .steps-flex .step-item:nth-child(2)::after {
  background: #283B3E;
}
.steps .steps-flex .step-item:nth-child(3) {
  background: #213032;
}
.steps .steps-flex .step-item:nth-child(3)::after {
  background: #213032;
}
.steps .steps-flex .step-item h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.steps .steps-flex .step-item p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}

.partners-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.partners-content .partner-card {
  aspect-ratio: 16/9;
  border-radius: 10px;
}

.triangle-area {
  position: relative;
  width: 100%;
}
.triangle-area .triangle {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  background: #4C7378;
  width: 25%;
  aspect-ratio: 2/3;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.trapezoid-area {
  position: relative;
  width: 100%;
}
.trapezoid-area .trapezoid {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  background: #4C7378;
  width: 100%;
  aspect-ratio: 7/3;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.breadcrums-area {
  display: flex;
  width: 100%;
  padding: 6px 0;
  background: #4C7378;
}
.breadcrums-area .breadcrums {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  font-size: 12px;
}
.breadcrums-area .breadcrums .breadcrums-link {
  display: flex;
  align-items: center;
  position: relative;
  color: #ffffff;
  font-size: 12px;
}
.breadcrums-area .breadcrums .breadcrums-link svg {
  margin-bottom: 2px;
}
.breadcrums-area .breadcrums .breadcrums-link::after {
  content: "/";
  color: #ffffff;
  position: absolute;
  right: -13px;
  font-size: 16px;
}

.page-title-area {
  display: flex;
  width: 100%;
  padding: 6px 0;
  background: #4C7378;
}
.page-title-area .page-title {
  color: #FFFFFF;
  text-align: center;
  font-size: 46px;
  font-weight: 700;
}

.grid-show {
  margin-bottom: 60px;
}
.grid-show .products-area {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .grid-show .products-area {
    flex-direction: column;
  }
}
.grid-show .products-area .category-list-block {
  width: 100%;
  max-width: 300px;
  border: 1px solid rgba(3, 40, 40, 0.43);
  border-radius: 20px;
  overflow: hidden;
  padding: 10px 12px 32px;
  min-width: 280px;
  height: fit-content;
  position: sticky;
  top: 140px;
}
@media (max-width: 767px) {
  .grid-show .products-area .category-list-block {
    position: static;
  }
}
.grid-show .products-area .category-list-block .category-block-title {
  color: #4C7378;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  text-align: center;
  width: fit-content;
  margin: auto;
}
.grid-show .products-area .category-list-block .category-block-title::after {
  content: "";
  background: #4C7378;
  height: 3px;
  width: 500%;
  position: absolute;
  right: 0;
  bottom: -4px;
}
.grid-show .products-area .category-list-block .category-list {
  margin-top: 24px;
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.grid-show .products-area .category-list-block .category-list::before {
  content: "";
  position: absolute;
  left: 8px;
  height: 100%;
  width: 1px;
  background: #ccc;
}
.grid-show .products-area .category-list-block .category-list li.active > a {
  color: #4C7378;
}
.grid-show .products-area .category-list-block .category-list > li {
  position: relative;
  line-height: 1;
  padding-left: 32px;
  font-weight: 600;
}
.grid-show .products-area .category-list-block .category-list > li::before {
  content: "";
  position: absolute;
  left: 0px;
  height: 13px;
  width: 13px;
  top: 0;
  margin: auto;
  aspect-ratio: 1;
  background: #ffffff;
  border: 2px solid #4C7378;
  border-radius: 100%;
}
.grid-show .products-area .category-list-block .category-list > li:hover::before, .grid-show .products-area .category-list-block .category-list > li.active::before {
  background: #4C7378;
}
.grid-show .products-area .category-list-block .category-list > li:hover > a, .grid-show .products-area .category-list-block .category-list > li.active > a {
  color: #4C7378;
}
.grid-show .products-area .category-list-block .category-list > li ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.grid-show .products-area .category-list-block .category-list > li ul li {
  position: relative;
  margin-left: 16px;
}
.grid-show .products-area .category-list-block .category-list > li ul li::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 8px;
  width: 17px;
  height: 1px;
  background: #ccc;
}
.grid-show .products-area .category-elements-block {
  width: 100%;
}
.grid-show .products-area .category-elements-block .products-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .grid-show .products-area .category-elements-block .products-top-bar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.grid-show .products-area .category-elements-block .products-top-bar .products-count {
  font-size: 16px;
  color: #4C7378;
}
.grid-show .products-area .category-elements-block .products-top-bar .products-count strong {
  font-weight: 700;
  color: #032828;
}
.grid-show .products-area .category-elements-block .products-top-bar .products-sort form {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .grid-show .products-area .category-elements-block .products-top-bar .products-sort form {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.grid-show .products-area .category-elements-block .products-top-bar .products-sort form label {
  font-size: 16px;
  font-weight: 600;
  color: #4C7378;
  white-space: nowrap;
}
.grid-show .products-area .category-elements-block .products-top-bar .products-sort form select {
  padding: 8px 40px 8px 16px;
  border: 1px solid #4C7378;
  border-radius: 8px;
  background: #fff;
  color: #4C7378;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234C7378' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  outline: none !important;
}
.grid-show .products-area .category-elements-block .products-top-bar .products-sort form select:focus {
  outline: none;
  border-color: #032828;
  box-shadow: 0 0 0 3px rgba(76, 115, 120, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23CD2122' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
}
.grid-show .products-area .category-elements-block .products-top-bar .products-sort form select option {
  padding: 8px;
}
@media (min-width: 1200px) {
  .grid-show .products-area .category-elements-block .grid-products-elements {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}

.recent-news-cards {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.recent-news-cards .news-card-recent {
  display: flex;
  flex-direction: column;
}
.recent-news-cards .news-card-recent .product-name, .recent-news-cards .news-card-recent .product-description {
  margin-bottom: 0;
}
.recent-news-cards .news-card-recent .product-name {
  font-size: 18px;
}
.recent-news-cards .news-card-recent .product-image img {
  aspect-ratio: 16/9;
  border-radius: 20px;
  object-fit: cover;
}

.the-product {
  max-width: 100%;
}
.the-product .the-product-top {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 3fr 4fr;
  gap: 40px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .the-product .the-product-top {
    grid-template-columns: 1fr;
  }
}
.the-product .the-product-top .product-images {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.the-product .the-product-top .main-product-info .block-info {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  border-bottom: 1px solid #D9D9D9;
}
.the-product .the-product-top .main-product-info .block-info h1 {
  color: #032828;
  text-align: right;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 0;
}
.the-product .the-product-top .main-product-info .block-info .price {
  display: flex;
  gap: 20px;
}
.the-product .the-product-top .main-product-info .block-info .price .old-price {
  color: #FC0000;
  font-size: 24px;
  font-weight: 700;
  text-decoration: line-through;
}
.the-product .the-product-top .main-product-info .block-info .price .new-price {
  color: #4C7378;
  font-size: 24px;
  font-weight: 700;
  text-decoration: underline;
}
.the-product .the-product-top .main-product-info .block-info .short-description {
  margin-bottom: 0;
  color: #032828;
  font-size: 22px;
  font-weight: 700;
  text-align: right;
}
.the-product .the-product-top .main-product-info .block-info .product-characteristic .characteristic-row {
  text-align: right;
}
.the-product .the-product-top .main-product-info .block-info .product-characteristic .characteristic-row .char-name {
  text-align: right;
  font-size: 22px;
  font-weight: 300;
}
.the-product .the-product-top .main-product-info .block-info .product-characteristic .characteristic-row .char-value {
  text-align: right;
  font-size: 22px;
  font-weight: 600;
}
.the-product .the-product-top .main-product-info .add-order {
  margin: auto;
  margin-top: 32px;
  text-align: right;
}
.the-product .the-product-bottom .tabs {
  margin: 40px auto;
}
.the-product .the-product-bottom .tabs .tab-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
}
.the-product .the-product-bottom .tabs .tab-buttons button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 22px;
  color: #D9D9D9;
  font-weight: 700;
  position: relative;
}
.the-product .the-product-bottom .tabs .tab-buttons button::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #D9D9D9;
  opacity: 0;
  transform-origin: right;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}
.the-product .the-product-bottom .tabs .tab-buttons button:hover {
  color: #000;
}
.the-product .the-product-bottom .tabs .tab-buttons button.active {
  color: #000;
}
.the-product .the-product-bottom .tabs .tab-buttons button.active::after {
  opacity: 1;
}
.the-product .the-product-bottom .tabs .tab-contents {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .the-product .the-product-bottom .tabs .tab-contents {
    flex-direction: column;
  }
}
.the-product .the-product-bottom .tabs .tab-contents .file-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.the-product .the-product-bottom .tabs .tab-contents .file-list .file-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.the-product .the-product-bottom .tabs .tab-contents .tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
  width: 100%;
}
.the-product .the-product-bottom .tabs .tab-contents .tab-content.active {
  display: block;
}
.the-product .the-product-bottom .tabs .tab-contents .tab-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.the-product .the-product-bottom .tabs .tab-contents .tab-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
.the-product .the-product-bottom .tabs .tab-contents .tab-content table {
  width: 100%;
}
.the-product .the-product-bottom .tabs .tab-contents .tab-content table tbody {
  display: flex;
  flex-direction: column;
}
.the-product .the-product-bottom .tabs .tab-contents .tab-content table tbody tr {
  padding: 6px 24px;
  display: flex;
}
.the-product .the-product-bottom .tabs .tab-contents .tab-content table tbody tr th {
  width: 40%;
  text-align: left;
}
.the-product .the-product-bottom .tabs .tab-contents .tab-content table tbody tr td {
  width: 60%;
  text-align: left;
}
.the-product .the-product-bottom .tabs .tab-contents .tab-content table tbody tr:nth-child(2n) {
  background: #D3F1F5;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal {
  position: fixed;
  inset: 0;
  padding: 0 20px;
  display: flex;
  background: rgba(3, 40, 40, 0.6784313725);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal.is-open .modal-form {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal {
  z-index: 2000;
}
.modal .modal-form {
  margin: auto;
  max-width: 640px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9) translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal .modal-form .modal-head {
  background: #4C7378;
  position: relative;
  padding: 10px;
}
.modal .modal-form .modal-head .modal-title {
  color: #ffffff;
  margin: 0;
  text-align: center;
  font-size: 20px;
}
@media (max-width: 767px) {
  .modal .modal-form .modal-head .modal-title {
    font-size: 18px;
  }
}
.modal .modal-form .modal-head .modal-close {
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
}
.modal .modal-form .modal-form-content {
  max-width: 450px;
  margin: auto;
  padding: 32px 20px;
}
.modal .modal-form .modal-form-content .custom-order-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.modal .modal-form .modal-form-content .custom-order-form span {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 767px) {
  .modal .modal-form .modal-form-content .custom-order-form span {
    font-size: 14px;
  }
}
.modal .modal-form .modal-form-content .custom-order-form .short-product {
  display: flex;
  flex-direction: row;
  gap: 26px;
}
.modal .modal-form .modal-form-content .custom-order-form .short-product .product-image {
  width: 150px;
  height: 150px;
  aspect-ratio: 1;
}
.modal .modal-form .modal-form-content .custom-order-form .short-product .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.modal .modal-form .modal-form-content .custom-order-form .short-product .product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.modal .modal-form .modal-form-content .custom-order-form .short-product .product-info h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  line-height: 1;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .modal .modal-form .modal-form-content .custom-order-form .short-product .product-info h3 {
    font-size: 20px;
  }
}
.modal .modal-form .modal-form-content .custom-order-form .short-product .product-info .price {
  color: #4C7378;
  font-size: 19px;
  font-weight: 700;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .modal .modal-form .modal-form-content .custom-order-form .short-product .product-info .price {
    font-size: 17px;
  }
}
.modal .modal-form .modal-form-content .custom-order-form .short-product .product-info .without-pdv {
  color: #fc0000;
  font-size: 10px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .modal .modal-form .modal-form-content .custom-order-form .short-product .product-info .without-pdv {
    font-size: 9px;
  }
}
.modal .modal-form .modal-form-content .custom-order-form .btn {
  background: #4C7378;
  color: #ffffff;
  width: fit-content;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  padding: 10px 19px;
  margin: auto;
}
@media (max-width: 767px) {
  .modal .modal-form .modal-form-content .custom-order-form .btn {
    font-size: 17px;
    padding: 9px 16px;
  }
}

input,
textarea {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  border-radius: 8px;
  background: #eee;
  padding: 10px 18px;
  outline: none !important;
  border: 1px solid transparent;
  width: 100%;
}
@media (max-width: 767px) {
  input,
  textarea {
    font-size: 15px;
    padding: 9px 16px;
  }
}

textarea {
  max-width: 100%;
  min-width: 100%;
  min-height: 128px;
  max-height: 400px;
}
@media (max-width: 767px) {
  textarea {
    min-height: 110px;
  }
}

.row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media (max-width: 767px) {
  .row {
    flex-direction: column;
  }
}

.text-form-section {
  background: #4C7378;
  margin: 40px 0;
}
@media (max-width: 767px) {
  .text-form-section .container {
    padding: 0;
  }
}

.text-form {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
}
@media (max-width: 767px) {
  .text-form {
    grid-template-columns: 1fr;
  }
}

.text-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .text-area {
    padding: 20px;
  }
}

.form-area {
  padding: 20px 20px 60px;
  background: #032828;
  display: flex;
  justify-content: center;
}
.form-area .custom-order-form h3 {
  font-size: 34px;
  text-align: center;
}
.form-area .custom-order-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-area .custom-order-form input, .form-area .custom-order-form textarea {
  background: #4C7378;
  color: #ffffff;
  font-size: 24px;
}
.form-area .custom-order-form input::placeholder, .form-area .custom-order-form textarea::placeholder {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5019607843);
}
.form-area .custom-order-form .btn {
  font-size: 24px;
  background: #fff;
  color: #000;
  width: fit-content;
  margin: auto;
  padding: 12px 32px;
}

.form-section .form-content h3 {
  text-align: center;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
}
.form-section .form-content .custom-order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-three-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .contact-three-grid {
    grid-template-columns: 1fr;
  }
}
.contact-three-grid h4 {
  font-size: 28px;
}
.contact-three-grid ul li {
  font-size: 20px;
}
.contact-three-grid ul li a {
  font-size: 20px;
}
.contact-three-grid .contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.contacts h3 {
  font-size: 30px;
  font-weight: 700;
}
.contacts .map-container {
  width: 100%;
  height: 700px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contacts .map-container {
    height: 400px;
  }
}
.contacts .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-content {
  width: 100%;
}
.blog-content .image-text img {
  float: left;
  max-width: 40%;
  margin-right: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  object-fit: cover;
}
.blog-content .image-text .content, .blog-content .image-text p {
  display: block;
  text-align: justify;
  line-height: 1.6;
}
.blog-content .image-text:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 767px) {
  .blog-content .image-text img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.post-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.current-category-tags {
  padding: 20px 0;
  border-top: 1px solid #4C7378;
  border-bottom: 1px solid #4C7378;
}
.current-category-tags h4 {
  color: #4C7378;
  font-size: 20px;
  font-weight: 400;
}

.post-navigation {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.post-navigation .post-navigation {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 380px;
}
.post-navigation .post-navigation img {
  aspect-ratio: 1;
  border-radius: 20px;
  height: 120px;
  width: 120px;
}
.post-navigation .post-navigation .icon {
  display: flex;
}
.post-navigation .post-navigation .content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.post-navigation .post-navigation .content h4 {
  margin: 0;
}
.post-navigation .post-navigation .content p {
  margin: 0;
}
.post-navigation.prev-post {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .post-navigation.prev-post {
    display: grid;
    grid-template-columns: min-content 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    grid-template-areas: "arrow image" "text text";
    justify-items: start;
  }
}
.post-navigation.prev-post .icon {
  transform: rotate(180deg);
}
.post-navigation.prev-post .icon.arrow {
  grid-area: arrow;
}
.post-navigation.prev-post .attachment-thumbnail {
  grid-area: image;
}
.post-navigation.prev-post .content {
  grid-area: text;
}
.post-navigation.next-post {
  flex-direction: row;
}
@media (max-width: 767px) {
  .post-navigation.next-post {
    display: grid;
    grid-template-columns: 1fr min-content;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    grid-template-areas: "text text" "image arrow";
    justify-items: end;
  }
}
.post-navigation.next-post h4, .post-navigation.next-post span {
  text-align: right;
}
.post-navigation.next-post .icon.arrow {
  grid-area: arrow;
}
.post-navigation.next-post .attachment-thumbnail {
  grid-area: image;
}
.post-navigation.next-post .content {
  grid-area: text;
}

.share-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.share-buttons .share-text {
  font-weight: 600;
  font-size: 16px;
}
.share-buttons .share-btn {
  background: #4C7378;
  display: flex;
  aspect-ratio: 1;
  border-radius: 8px;
  height: 32px;
  width: 32px;
  padding: 6px;
}

.faq {
  margin: 40px 0;
}

.faqs-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #032828;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.accordion .accordion-item .accordion-head {
  display: flex;
  gap: 20px;
}
.accordion .accordion-item .accordion-head .accordion-sign {
  height: 46px;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 10px;
  background: #032828;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
}
.accordion .accordion-item .accordion-head .accordion-sign::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 3px;
  background: #ffffff;
}
.accordion .accordion-item .accordion-head .accordion-sign::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 3px;
  transform: rotate(90deg);
  background: #ffffff;
  transition: transform 0.4s ease;
}
.accordion .accordion-item .accordion-head .accordion-btn {
  color: #032828;
  font-size: 25px;
  transition: color 0.3s ease;
}
.accordion .accordion-item .accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s ease, padding 0.4s ease;
  color: #ffffff;
}
.accordion .accordion-item .accordion-content > * {
  min-height: 0;
  margin-bottom: 0;
}
.accordion .accordion-item.active {
  background: #032828;
  transition: background 0.3s ease;
}
.accordion .accordion-item.active .accordion-sign {
  background: #ffffff;
  color: #032828;
}
.accordion .accordion-item.active .accordion-sign::before {
  background-color: #032828;
}
.accordion .accordion-item.active .accordion-sign::after {
  background-color: #032828;
  transform: rotate(0deg);
}
.accordion .accordion-item.active .accordion-btn {
  color: #ffffff;
}
.accordion .accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
  padding: 15px 0;
}

.gallery {
  margin: 40px 0;
}
.gallery-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-tabs-wrapper {
  position: relative;
  overflow: hidden;
}
.gallery-shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-shadow.visible {
  opacity: 1;
}
.gallery-shadow-left {
  left: 0;
  background: linear-gradient(to right, rgb(255, 255, 255), transparent);
}
.gallery-shadow-right {
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255), transparent);
}
.gallery .gallery-head .gallery-tabs {
  padding: 10px 0;
  overflow: hidden;
}
.gallery .gallery-head .gallery-tabs .swiper-wrapper {
  display: flex;
}
.gallery .gallery-head .gallery-tabs .swiper-slide {
  flex: 0 0 auto;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.gallery .gallery-head .gallery-tabs .btn.active {
  color: #fff;
  background: #4C7378;
}
.gallery .gallery-body .grid-image-gallery {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .gallery .gallery-body .grid-image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery .gallery-body .grid-image-gallery.active {
  display: grid;
  animation: fadeIn 0.4s ease;
}
.gallery .gallery-body .grid-image-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
  aspect-ratio: 16/9;
}
.gallery .gallery-body .grid-image-gallery img:hover {
  transform: scale(1.03);
}

/**
 * Timeline styling
 */
.timeline-article {
  margin: 20px 0;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline:before {
  content: "";
  position: absolute;
  background: #4C7378;
  opacity: 0.5;
  display: none;
}
@media screen and (min-width: 720px) {
  .timeline:before {
    display: block;
    top: -48px;
    left: 50%;
    width: 4px;
    height: calc(100% + 96px);
    transform: translateX(-50%);
  }
}

.timeline__entry {
  position: relative;
  margin-bottom: 32px;
  color: #fff;
}
@media screen and (min-width: 720px) {
  .timeline__entry {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "left center right";
    gap: 32px;
    align-items: start;
    padding-top: 20px;
    margin-bottom: 64px;
  }
}

.timeline__icon {
  display: none;
  margin-top: 8px;
}
@media screen and (min-width: 720px) {
  .timeline__icon {
    grid-area: center;
    display: flex;
    width: 48px;
    height: 48px;
    background: #4C7378;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
  }
  .timeline__icon svg {
    width: 24px;
    height: 24px;
  }
}

.timeline__id {
  display: block;
  padding: 8px 16px;
  background: #4C7378;
  font-weight: bold;
  border-radius: 5px;
  margin-bottom: 8px;
  margin-top: 10px;
  width: fit-content;
}
@media screen and (min-width: 720px) {
  .timeline__id {
    grid-area: left;
    justify-self: end;
    margin-bottom: 0;
  }
}

.timeline__content {
  display: block;
  padding: 16px;
  background: #4C7378;
  border-radius: 5px;
}
@media screen and (min-width: 720px) {
  .timeline__content {
    grid-area: right;
    position: relative;
  }
  .timeline__content:before {
    content: "";
    position: absolute;
    top: 20px;
    left: -14px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 14px solid #4C7378;
  }
}

@media screen and (min-width: 720px) {
  .timeline__entry--flipped .timeline__id {
    grid-area: right;
    justify-self: start;
  }
  .timeline__entry--flipped .timeline__content {
    grid-area: left;
  }
  .timeline__entry--flipped .timeline__content:before {
    top: 20px;
    left: auto;
    right: -16px;
    border-right: none;
    border-left: 16px solid #4C7378;
  }
}

.timeline__heading {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.timeline__text {
  color: #ccc;
}
.timeline__text:last-child {
  margin-bottom: 0;
}

.timeline__end {
  position: relative;
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
}

.timeline__end-marker {
  position: relative;
  display: inline-block;
  padding: 16px 32px;
  background: #4C7378;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  z-index: 10;
}
.timeline__end-marker:before {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #4C7378;
  border-radius: 50%;
}

.dark-block * {
  color: #fff;
  text-decoration: none;
}

.container {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

main {
  display: flex;
  flex-direction: column;
}

.btn {
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  width: auto;
  padding: 6px 12px;
  border-radius: 12px;
  color: #ffffff;
  transition: background 0.4s ease;
  text-wrap: nowrap;
}
.btn-transparent {
  border: 1px solid #ffffff;
  background: transparent;
}
.btn-transparent:hover {
  background: #4C7378;
}
.btn-matte {
  background: transparent;
  position: relative;
  overflow: hidden;
}
.btn-matte::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  filter: blur(2px) saturate(120%);
  transform: scale(1.1);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.btn-matte:hover {
  background: #2F4A4D;
}
.btn-secondary {
  border: 1px solid #4C7378;
  color: #4C7378;
  background: transparent;
}
.btn-red {
  background: #a2001d;
}
.btn-red:hover {
  background: #8f021b;
}

.title-block {
  display: flex;
  flex-direction: column;
  position: relative;
  width: fit-content;
}
.title-block h2::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  margin: auto;
  height: 16px;
  width: 30px;
  background: #032828;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.title-block::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  height: 7px;
  width: 9999px;
  background: #032828;
}

@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
}

.mobile-only {
  display: none !important;
}
@media (max-width: 767px) {
  .mobile-only {
    display: flex !important;
  }
}

.text-with-image {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  grid-template-areas: "text image";
}
@media (max-width: 767px) {
  .text-with-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.text-with-image.reverse {
  grid-template-columns: 2fr 3fr;
  grid-template-areas: "image text";
}
.text-with-image .text {
  grid-area: text;
}
.text-with-image img {
  grid-area: image;
}
.text-with-image img {
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 20px;
}

.text-section {
  margin: 40px 0;
}

.delivery-info {
  margin: 40px 0;
}

.load-more-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 20px;
}
.load-more-wrapper .load-more-products,
.load-more-wrapper .load-more-news {
  color: #032828;
  text-decoration: underline;
  font-weight: 700;
  font-size: 18px;
}

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


.modal-open {
overflow: hidden;
}

.modal {
	flex-direction: column;
	align-items: center;
	  -ms-scroll-chaining: none;
      overscroll-behavior: none;
	overflow: auto;
	max-height: 100dvh;
	padding: 20px;
}

.modal .modal-head {
	border-radius: 12px 12px 0 0;
}

.modal .modal-form {
	overflow: visible;
}

.modal:before {
	content: "";
	display: block;
	flex: 1;
	width: 100;
}

.modal:after {
	content: "";
	display: block;
	flex: 1;
	width: 100;
}

@media (max-width: 767px) {
 #jkcookie {
	 left: -15px !important;
    bottom: 55px !important;
}
}
