.shop-hero {
  width: min(1280px, 100%);
  margin: 0 auto 28px;
  border-radius: 16px;
  background-color: #3a251b;
  background-image: linear-gradient(90deg, rgba(33, 23, 15, 0.65) 0%, rgba(33, 23, 15, 0.25) 55%, rgba(33, 23, 15, 0.45) 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.shop-hero__inner {
  padding: 42px 36px;
}

.shop-hero__content {
  max-width: 880px;
}

.shop-hero__title {
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.1;
}

.shop-hero__subtitle {
  margin: 0 0 22px;
  font-size: 20px;
  line-height: 1.4;
}

.shop-hero__benefits {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  align-items: center;
  margin: 0 0 24px;
  overflow-x: auto;
}

.shop-hero__benefit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.shop-hero__benefit-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.shop-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.shop-hero__button {
  white-space: nowrap;
}

.shop-main-sets__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.shop-main-sets {
  margin-bottom: 24px;
}

.shop-main-sets__left,
.shop-main-sets__right {
  display: flex;
  align-items: center;
}

.shop-main-sets__header .section-title,
.shop-main-sets__header .section-title__row {
  margin: 0;
}

.shop-main-sets__link-all {
  font-size: 17px;
  text-decoration: none;
}

.shop-main-sets__link-all:hover {
  text-decoration: underline;
}

.shop-main-sets__grid.products.products--embedded {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
}

.shop-main-sets__grid.products.products--embedded > li.product {
  width: calc((100% - 56px) / 5);
  min-width: 190px;
  margin: 0;
  flex: 0 0 calc((100% - 56px) / 5);
}

.shop-categories__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.shop-category-card {
  border: 1px solid rgba(93, 73, 61, 0.25);
  border-radius: 12px;
  padding: 0 0 16px;
  background: #fff;
  overflow: hidden;
}

.shop-category-card__image-link {
  display: block;
  width: 100%;
}

.shop-category-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
}

.shop-category-card__title {
  margin: 12px 16px 10px;
}

.shop-category-card__title-link,
.shop-category-card__subcategory-link {
  text-decoration: none;
}

.shop-category-card__title-link:hover,
.shop-category-card__subcategory-link:hover {
  text-decoration: underline;
}

.shop-category-card__subcategories {
  margin: 0;
  padding-left: 34px;
  padding-right: 16px;
  list-style: disc;
}

.shop-category-card__subcategory-item {
  margin: 4px 0;
}

.shop-categories,
.shop-top-products {
  margin-top: 16px;
  margin-bottom: 24px;
}

.shop-categories .section-title,
.shop-top-products .section-title {
  margin-bottom: 14px;
  text-align: left;
  align-items: start;
}

.shop-main-sets__header .section-title__row,
.shop-categories .section-title__row,
.shop-top-products .section-title__row {
  justify-content: flex-start;
}

.shop-categories .section-title__text,
.shop-top-products .section-title__text {
  text-align: left;
}

.shop-top-products__carousel {
  display: block !important;
}

.shop-top-products__fallback-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
}

.shop-top-products__fallback-grid .product-card {
  width: 100%;
  margin: 0;
}

.shop-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
}

.shop-benefit {
  min-width: 0;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(93, 73, 61, 0.2);
}

.shop-benefit__icon {
  width: 56px;
  height: 56px;
}

@media (max-width: 1279px) {
  .shop-main-sets,
  .shop-categories,
  .shop-top-products,
  .shop-benefits {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 870px) {
  .shop-hero__benefits {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    overflow: visible;
  }
}

@media (max-width: 1024px) {
  .shop-hero__title {
    font-size: 36px;
  }

  .shop-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-categories__grid,
  .shop-top-products__fallback-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .shop-hero__inner {
    padding: 26px 16px;
  }

  .shop-hero__title {
    font-size: 30px;
  }

  .shop-hero__subtitle {
    font-size: 17px;
  }

  .shop-categories__grid,
  .shop-top-products__fallback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-benefits__grid {
    grid-template-columns: 1fr;
  }
}
