.product-slider-small-block {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 0;
  box-sizing: border-box;
  overflow: visible;
  display: flex;
  justify-content: center;
  background: transparent;
}

.product-slider-small-swiper {
  width: 100%;
  overflow: visible;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.product-slider-small-block .swiper-wrapper {
  display: flex;
  justify-content: center; 
  align-items: stretch;
  width: auto !important; 
}

.product-slider-small-block .swiper-slide {
  width: 250px !important;
  height: 350px;
  flex: 0 0 auto;
  margin: 0 12px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.product-slider-small-block .product-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  background: #ffffff;              
  border: none;                    
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
}

.product-slider-small-block .product-card:hover {
  transform: translateY(-4px);
  border-bottom: 4px solid;
  border-bottom-color: #f55b31;     
  box-shadow: 0 6px 14px rgba(0,0,0,0.12); 
}

.product-slider-small-block .product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  padding:20px;
}

.product-slider-small-block .product-name {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  color: #331e00; 
  text-transform: uppercase;
  font-family: "Alternate Gothic", sans-serif;
  font-size: 1.6rem;
  line-height:1.1;
}

@media (min-width: 769px) {
  .product-slider-small-block::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    /*background: linear-gradient(to right, rgba(252,249,244,0) 0%, #fcf9f4 100%);*/
  }
}


@media (max-width: 1024px) {
  .product-slider-small-block { max-width: 920px; }
  .product-slider-small-block .swiper-slide { width: 220px !important; height: 360px; }
}

@media (max-width: 768px) {
  .product-slider-small-block { padding: 18px 0; }
  .product-slider-small-block .swiper-slide { width: 70% !important; height: 340px; margin: 0 10px; }
  .product-slider-small-block::after { display: none; }
}
