@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(get-svg-url('checkmark', $user-variables: (fill: 'tomato')));
* Example: background-image: url(get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink')));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.shop-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 72px;
}
@media (min-width: 400px) {
  .shop-sections {
    margin-bottom: 72px;
  }
}
@media (min-width: 576px) {
  .shop-sections {
    margin-bottom: 72px;
  }
}
@media (min-width: 768px) {
  .shop-sections {
    margin-bottom: 72px;
  }
}
@media (min-width: 992px) {
  .shop-sections {
    margin-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .shop-sections {
    margin-bottom: 120px;
  }
}
@media (min-width: 1600px) {
  .shop-sections {
    margin-bottom: 120px;
  }
}
@media (min-width: 1800px) {
  .shop-sections {
    margin-bottom: 120px;
  }
}
@media (min-width: 576px) {
  .shop-sections {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .shop-sections {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

.shop-sections-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  padding: 16px;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .shop-sections-card {
    padding: 20px;
  }
}
.shop-sections-card__body {
  margin-bottom: 18px;
}
@media (min-width: 400px) {
  .shop-sections-card__body {
    margin-bottom: 18px;
  }
}
@media (min-width: 576px) {
  .shop-sections-card__body {
    margin-bottom: 18px;
  }
}
@media (min-width: 768px) {
  .shop-sections-card__body {
    margin-bottom: 18px;
  }
}
@media (min-width: 992px) {
  .shop-sections-card__body {
    margin-bottom: 32px;
  }
}
@media (min-width: 1200px) {
  .shop-sections-card__body {
    margin-bottom: 32px;
  }
}
@media (min-width: 1600px) {
  .shop-sections-card__body {
    margin-bottom: 32px;
  }
}
@media (min-width: 1800px) {
  .shop-sections-card__body {
    margin-bottom: 32px;
  }
}
.shop-sections-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-sections-card__image {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
  height: 160px;
}
@media (min-width: 400px) {
  .shop-sections-card__image {
    margin-bottom: 12px;
  }
}
@media (min-width: 576px) {
  .shop-sections-card__image {
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .shop-sections-card__image {
    margin-bottom: 12px;
  }
}
@media (min-width: 992px) {
  .shop-sections-card__image {
    margin-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .shop-sections-card__image {
    margin-bottom: 24px;
  }
}
@media (min-width: 1600px) {
  .shop-sections-card__image {
    margin-bottom: 24px;
  }
}
@media (min-width: 1800px) {
  .shop-sections-card__image {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .shop-sections-card__image {
    height: 210px;
  }
}
@media (min-width: 992px) {
  .shop-sections-card__image {
    height: 280px;
  }
}
@media (min-width: 1200px) {
  .shop-sections-card__image {
    height: 210px;
  }
}
@media (min-width: 1600px) {
  .shop-sections-card__image {
    height: 310px;
  }
}
.shop-sections-card__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-sections-card__name {
  display: block;
  color: #000;
  margin-bottom: 16px;
}
.shop-sections-card__name:hover {
  color: #72C38E;
}
.shop-sections-card__subsections {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.shop-sections-card__subsections > a {
  color: #afafaf;
  border: 1px solid #afafaf;
  border-radius: 30px;
  line-height: 32px;
  padding: 0 12px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .shop-sections-card__subsections > a {
    line-height: 38px;
    padding: 0 16px;
    font-size: 14px;
  }
}
.shop-sections-card__subsections > a:hover {
  color: #fff;
  background-color: #72C38E;
  border: 1px solid #72C38E;
}
.shop-sections-card__price {
  color: #000;
  font-weight: 700;
}
.shop-sections-card__price > span {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  white-space: nowrap;
}
