.article {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 48px;
  /* max-width: 925px; */
  justify-content: start;
}
.article-banner {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 30px;
  background: linear-gradient(84deg, var(--orange) -18.23%, var(--bs-primary) 77.92%);
  min-height: 262px;
  padding: 60px;
}
.article-banner p {
  font-size: 24px;
  color: white;
}
.article-banner a {
  width: fit-content;
  font-size: 16px;
}
.table-of-contents {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 60px;
  padding: 30px;
}
.table-of-contents__header {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 32px 0 0 0;
}
.custom-list li {
  position: relative;
  font-size: 18px;
  padding-left: 24px;
  margin-bottom: 12px;
}
.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background-color: #2e7d32; /* зеленый */
  transform: rotate(45deg); /* ромб */
}
.custom-list a {
  text-decoration: none;
  color: #2e7d32;
  font-size: 18px;
  line-height: 1.4;
}
.custom-list a:hover {
  text-decoration: underline;
}
.article-text {
  font-size: 20px;
  margin: 0;
}
.w-fit {
  width: fit-content
}
.article-image {
  width: 100%;
  /*aspect-ratio: 1240 / 520;*/
  object-fit: cover;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .article-image {
    /*aspect-ratio: 16 / 9;*/
    border-radius: 20px;
  }
}
.carousel-dots {
  width: 100%;
}
.carousel-dots .carousel-item img {
  height: 520px;
  object-fit: cover;
}
.carousel-dots .carousel-indicators {
  margin-bottom: 14px;
  gap: 10px;
}
.carousel-dots .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  opacity: 0.5;
}
.carousel-dots .carousel-indicators .active {
  opacity: 1;
}
.carousel-gradient {
  position: relative;
}
.carousel-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 25%,
    rgba(0, 0, 0, 0) 55%
  );
  pointer-events: none;
  z-index: 1;
}
.carousel-gradient .carousel-inner {
  position: relative;
  z-index: 0;
}
.carousel-gradient .carousel-indicators {
  z-index: 2;
}
.article-quote {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--bs-primary);
  border-radius: 20px;
  padding: 64px 178px;
  margin: 24px 0;
  border-radius: 40px;
  background: linear-gradient(180deg, #318741 0%, #316D87 100%);
}
.article-quote__icon {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 53px;
  height: 37px;
  background-image: url(./assets/custom-icons/icon-quote.svg);
}
.article-quote__text {
  font-size: 20px;
  margin: 0;
}
.product-card__media {
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: start;
  align-items:flex-start;
  width: 100%;
}
.gallery-nav{
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  position: relative;
  margin: 132px 0 0 0;
  z-index: 475;
}
.gallery-nav-tablet {
  display: none;
}
.product-card__image{
  height: 100%;
  max-height: 160px;
  width: 100%;
  display: block;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.product-card__title{
  padding: 50px 0 0 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.filter-pill{
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  color: black;
  font-family: Gilroy, var(--default-font-family);
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
  white-space: nowrap;
  z-index: 109;
  background-color: white;
  border: 2px solid black;
}
.filter-pill__selected{
  background-color: var(--bs-primary);
  border: none;
  color: white
}
.seed-tabs {
  width: 100%;
}
.seed-tabs__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.seed-tabs__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #0f5132;
  background: #fff;
  color: #0f5132;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.seed-tabs__btn:hover {
  background: #f3f7f5;
}
.seed-tabs__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  flex: 1 1 auto;
  padding: 6px 2px;
}
.seed-tabs__track::-webkit-scrollbar { height: 0; }
.seed-tabs__track { scrollbar-width: none; }
.seed-pill {
  border-radius: 999px;
  border: 1px solid #0f5132;
  background: #fff;
  color: #0f5132;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  flex: 0 0 auto;
  height: 44px;
}
.seed-pill.is-active {
  background: #198754; /* bootstrap success */
  border-color: #198754;
  color: #fff;
}
.catalog-seasonal{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 32px;
  position: relative;
  z-index: 57;
}
.badge {
  font-weight: 500;
  padding: 10px;
  font-family: Gilroy, var(--default-font-family);
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  text-align: center;
  white-space: nowrap;
}
.badge-seasonal {
  background-color: #90ec58;
}
.badge-sale {
  background-color: var(--orange);
}
.catalog-gallery-s {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 32px;
  position: relative;
  z-index: 102;
}
.category {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 110px;
  height: 42px;
  padding: 12px 16px 12px 16px;
  background: #318741;
  z-index: 108;
  border-radius: 1000px;
}
.all-seeds{
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 17px;
  color: #ffffff;
  font-family: Gilroy, var(--default-font-family);
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
  white-space: nowrap;
  z-index: 109;
}
.product-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  max-width: 294px;
  width: 100%;
  padding: 20px 30px 30px 30px;
  background: #ffffff;
  z-index: 131;
  overflow: hidden;
  border-radius: 30px;
}
.catalog-gallery-s {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 32px;
  position: relative;
  min-width: 0;
  z-index: 173;
}
.article-quote-nobg {
  width: 100%;
  max-width: 800px;
  border-left: 1px solid var(--bs-primary);
  padding: 8px 0 8px 40px;
}
.article-quote-nobg p {
  font-size: 20px;
}
.article-quote-nobg p:last-child {
  margin-bottom: 0;
}
.newsletter {
  width: 100%;
  max-width: 800px;
}
.newsletter-form {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: start;
  gap: 24px;
}
.newsletter-agree {
  color: rgba(46, 51, 61, 0.30);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 0 0;
}
.form-wrap {
  max-width: 630px;
}
.form-pill {
  height: 48px;
  background: #EFEFEF;
  border: none;
  border-radius: 999px; /* pill */
  padding: 0 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  color: #2E363D;
}
.form-pill::placeholder {
  color: #2E363D;
  opacity: 0.34;
}
.form-pill:focus {
  background: #EFEFEF;
  box-shadow: none;
  outline: none;
}
.article-social {
  display: flex;
  width: 100%;
  max-width: 800px;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.article-social__text {
  font-size: 18px;
}
.gap-10 { gap: 10px; }
.social-circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #C6DFF5;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon {
  display: block;
  width: 32px;
  height: 32px;
}
.social-circle:hover{
  border-color: #8db9ff;
}
.social-circle:focus-visible{
  outline: 2px solid #8db9ff;
  outline-offset: 3px;
}


@media (max-width: 1240px){
  .gallery-tablet-mobile {
    width: 33%;
    margin-bottom: 20px;
  }
  .catalog-seasonal .col-md-6,
  .catalog-gallery-s .col-md-6 {
    flex: 0 0 auto;
    width: 33%;
  }
}
@media (max-width: 1066px) {
  .product-card {
    padding: 20px;
    max-width: 239px;
  }
  .product-card__image {
    max-height: 136px;
  }
  .product-card__title {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .catalog-seasonal .col-md-6,
  .catalog-gallery-s .col-md-6 {
    flex: 0 0 auto;
    width: 33%;
  }
}
@media (max-width: 768px) {
  .seed-tabs__inner,
  .site-footer__container {
    max-width: 736px;
    margin-left: auto;
    margin-right: auto;
  }
  .product-card {
    max-width: 100%;
    padding: 14px;
  }
  .badge {
    padding: 7px;
  }
  .gallery-tablet-mobile {
    width: 100%;
  }
  .catalog-seasonal .col-md-6,
  .catalog-gallery-s .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .article-banner {
    padding: 30px 30px 60px 30px;
    min-height: 0;
  }
  .article-banner p {
    font-size: 20px;
  }
  .custom-list li {
    font-size: 16px;
  }
  .article-quote {
    padding: 95px 40px 40px 40px
  }
  .article-quote-nobg p {
  font-size: 14px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .article-social {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
  .social-circle {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 480px) {
  .product-card__media .d-flex {
    flex-direction: column;
  }
  .product-card__title {
    padding-top: 24px;
    font-size: 14px;
  }
  .catalog-seasonal .col-md-6,
  .catalog-gallery-s .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .mini-gallery-row {
    --bs-gutter-x: 0.5rem; /* или 0.25rem */
  }
}
@media (max-width: 374px) {
  .seed-tabs__inner,
  .site-footer__container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}