/* ========== PRODUCT SECTIONS ========== */
.product-section {
  padding: 20px 0 40px;
  position: relative;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
}

.section-header h2 {
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-green);
  text-align: center;
  padding: 0 20px;
  background: var(--white);
  z-index: 1;
}

.section-header::before,
.section-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--primary-green);
}

.section-header::before {
  margin-right: 20px;
}

.section-header::after {
  margin-left: 20px;
}

.products-wrapper {
  position: relative;
  /* display: flex; */
  /* align-items: center; */
}

/* .product-slider .slick-list {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
} */

.products-grid {
  /* display: block;
  gap: 20px;
  flex: 1;
  padding: 0 10px; */
}
.products-grid .slick-dotted.slick-slider {
    margin-bottom: 0;
} 
.nav-arrow {
  width: 32px;
  height: 32px;
  background: var(--light-green);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
  color: var(--white);
}

.nav-arrow:hover {
  background: var(--primary-green);
}

.nav-arrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Product Card */
.product-section .product-card {
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0 4px 7.1px var(--shadow-green);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  background: #ffffff;
  box-shadow: 0px 4px 7.1px rgba(108, 176, 67, 0.28);
  border-radius: 5px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px var(--shadow-green);
  background: #ffffff;
  box-shadow: 0px 4px 7.1px rgba(108, 176, 67, 0.28);
  border-radius: 5px;
}

.product-section .product-img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  object-fit: contain;
  background: #fff;
}

.product-section .product-img img {
  width: 100%;
  object-fit: cover;
  position: relative;
  max-width: unset;
  max-height: 180px;
}

.product-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: var(--text-black);
  margin-bottom: 8px;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc {
  font-weight: 600;
  font-size: 14px;
  color: #9e9e9e;
  margin-bottom: 12px;
  min-height: 40px;
  max-height: 40px;
  overflow: hidden;
}

.product-section .product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
  margin-bottom: 10px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 20px;
  color: var(--text-black);
}

.product-price .byn-icon {
  width: 15px;
  height: 18px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-black);
}

.btn-order {
  background: var(--primary-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-commissioner);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: background 0.3s;
  background: #6cb043;
  border: 1px solid #b7e09f;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.11);
  border-radius: 6px;
}

.btn-order:hover {
  background: #5a9437;
  color: #fff;
}

.btn-order-outline {
  background: var(--white);
  color: var(--primary-green);
  border: 1px solid var(--light-green);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.11);
}

.btn-order-outline:hover {
  background: var(--primary-green);
  color: var(--white);
}

/* Pagination Dots */
.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #afafaf;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--primary-green);
}

.dot:hover {
  background: var(--light-green);
}

/* ========== BANNER ========== */
.banner-section {
  padding: 40px 0;
}

.banner {
  background: var(--dark-green);
  border-radius: 8px;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M0 0 L100 0 L100 100 L0 100 Z" fill="none" stroke="%23ffffff" stroke-width="1"/></svg>');
  background-size: 20px 20px;
  pointer-events: none;
}

.banner h3 {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--white);
  max-width: 700px;
  z-index: 1;
}

.banner .btn-details {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid var(--white);
  color: var(--white);
  padding: 10px 30px;
  border-radius: 6px;
  font-family: var(--font-commissioner);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: background 0.3s;
  z-index: 1;
}

.banner .btn-details:hover {
  background: var(--white);
  color: var(--dark-green);
}

/* ========== GALLERY ========== */
.gallery-section {
  padding: 40px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1.4 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ========== CONTACTS ========== */
.contacts-section {
  padding: 40px 0;
  background: var(--bg-light);
}

.contacts-wrapper {
  display: flex;
  gap: 30px;
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contacts-info {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts-info h3 {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item .icon {
  width: 30px;
  height: 30px;
  background: var(--primary-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.contact-item .icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-item .text {
  font-family: var(--font-commissioner);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-green);
}

.contact-item .text span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-black);
}

.contact-item .text .sub {
  color: var(--text-black);
  font-weight: 700;
}

.contacts-map {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
  background: #ddd;
}

.contacts-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== FOOTER ========== */
footer {
  background: var(--dark-green);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-commissioner);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo svg {
  flex-shrink: 0;
}

.footer-col h4 {
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-col ul a {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--light-green);
}

.footer-col .contact-item {
  margin-bottom: 15px;
}

.footer-col .contact-item .text {
  color: #a0ce84;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: #a0ce84;
  letter-spacing: 0.03em;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .header-info .info-item.hide-mobile {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contacts-wrapper {
    flex-direction: column;
  }
  .contacts-info {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .header-top .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-info {
    width: 100%;
    justify-content: flex-start;
  }
  .nav-list {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  .header-nav .container {
    flex-direction: column;
    gap: 15px;
  }
  .header-search {
    align-self: flex-end;
  }
  .nav-arrow {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
  .product-section {
    padding: 10px 0 20px;
  }
  .banner {
    padding: 30px 20px;
    flex-direction: column;
    text-align: center;
  }
  .banner h3 {
    font-size: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product-card {
    padding: 10px;
  }
  .product-title {
    font-size: 14px;
  }
  .product-desc {
    font-size: 12px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .btn-order {
    padding: 6px 12px;
    font-size: 12px;
  }
  .product-price {
    font-size: 16px;
  }
}

.section-title-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.section-title-centered {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 19px;
  position: relative;
  padding: 0 20px;
  background: white;
  color: #6cb043;
}

.section-title-centered::before {
  right: 100%;
}
.section-title-centered::before,
.section-title-centered::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 580px;
  height: 1px;
  background: #6cb043;
}

.section-title-centered::after {
  left: 100%;
}
.section-title-centered::before,
.section-title-centered::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 500px;
  height: 1px;
  background: #6cb043;
}

/* Отступы между товарами в слайдере */
.product-slider .slick-slide {
    margin: 0 8px;
    margin-top: 10px;
    margin-bottom: 10px;
}
/* .product-slider .slick-list {
  margin: 0 -10px; /* компенсация крайних отступов */
} */

/* Адаптивные отступы (опционально) */
@media (max-width: 768px) {
  .product-slider .slick-slide {
    margin: 0 8px;
  }
  .product-slider .slick-list {
    margin: 0 -8px;
  }
}
@media (max-width: 480px) {
  .product-slider .slick-slide {
    margin: 0 5px;
  }
  .product-slider .slick-list {
    margin: 0 -5px;
  }
}

.products-wrapper .slider__arrow {
  position: static;
  transform: none;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.products-wrapper .slider__arrow--prev::before {
  border-width: 6px 8px 6px 0;
  border-color: transparent #fff transparent transparent;
}

.products-wrapper .slider__arrow {
  position: static;
  transform: none;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

/* Стрелки — общий стиль для .slider__arrow и .nav-arrow */
.products-wrapper .slider__arrow,
.products-wrapper .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider__arrow--prev {
  left: -40px;
}

.slider__arrow--next {
  right: -40px;
}

.products-wrapper .slider__arrow,
.products-wrapper .pagination-dots {
  display: none;
}

.products-wrapper .slider__arrow svg {
  margin-bottom: 5px;
}

.related-section .section-title-wrapper {
  position: relative;
  text-align: center;
  margin: 20px 0; /* по желанию */
}

/* Линия, которая растягивается на всю ширину контейнера */
.product-section .section-title-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #6cb043;
  z-index: 0;
}

.product-section .section-title-centered {
  display: inline-block; /* чтобы фон был только под текстом */
  background: #fff;
  padding: 0 20px;
  position: relative;
  z-index: 1; /* поверх линии */
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 19px;
  color: #6cb043;
}


section.page-title.assets_title h1{
    margin: 0;
    padding: 0;
}


/* Точки слайдера */
.product-section .slick-dots li.slick-active button:before {
    color: #6CB043;
    /* width: 10px;
    height: 10px; */
}

.product-section .slick-dots li {
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.product-section .slick-dots li button:hover:before,.product-section .slick-dots li button:focus:before {
    opacity: 1;
    color: #AFAFAF;
}

.product-section .slick-dots {
    bottom: 0;
}

.product-section .products-grid {
display: block;
       overflow-y: hidden;
    flex: auto;
    margin: 0;
    padding: 0;
}

.product-section .slick-dots {
    bottom: 0;
    position: relative;
    z-index: 200000;
    background: #0000;
}

.desctop_breadcrumbs {
  display: none;
}