.popular-products {
  padding: 30px 15px;
}
.popular-products__title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}
.popular-products__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.popular-products__tab {
  margin: 0;
}
.popular-products__tab a {
  display: block;
  padding: 12px 24px;
  background: #f9f9f9;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.popular-products__tab:hover a {
  background: #e5e5e5;
}
.popular-products__tab.active a {
  background: #E21E25;
  color: #fff;
  border-color: #E21E25;
}
.popular-products__tab-content {
  display: none;
}
.popular-products__tab-content.active {
  display: block;
}
.no-products {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 16px;
}
.popular-products__slider {
  position: relative;
  padding: 0 40px;
  margin: 0 -15px;
}
.popular-products__slider .swiper-button-prev,
.popular-products__slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background: #2B2B2B;
  border-radius: 50%;
  color: #fff;
}
.popular-products__slider .swiper-button-prev::after,
.popular-products__slider .swiper-button-next::after {
  font-size: 16px;
}
.popular-products__slider .swiper-button-prev:hover,
.popular-products__slider .swiper-button-next:hover {
  background: #ff0000;
}
.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.product-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.product-card__image {
  padding: 20px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
}
.product-card__image img {
  max-width: 100%;
  transition: transform 0.3s;
  height: 400px;
  width: 190px;
  object-fit: contain;
}
.product-card__image:hover img {
  transform: scale(1.05);
}
.product-card__content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-card__title {
  font-size: 16px;
  margin: 0 0 10px;
  line-height: 1.4;
}
.product-card__title a {
  color: #333;
  text-decoration: none;
}
.product-card__title a:hover {
  color: #ff0000;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.product-card__rating .star-rating {
  float: none;
  margin-top: 0;
}
.product-card__reviews {
  color: #666;
  font-size: 14px;
}
.product-card__price {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #ff0000;
}
.product-card__price del {
  color: #666;
  font-size: 14px;
  font-weight: normal;
  margin-right: 5px;
}
.product-card__price ins {
  text-decoration: none;
}
.product-card__button {
  margin-top: auto;
}
.product-card__button .button {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px;
  background: #2B2B2B;
  color: #fff;
  border: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.product-card__button .button:hover {
  background: #ff0000;
}

@media (min-width: 1024px) {
  .popular-products__slider {
    height: 490px;
  }
}
/*# sourceMappingURL=style.css.map */