.swiper-wrapper {
    height: auto;
}
.swiper-container {
  position: relative;
  width: 100%;
  padding: 0 40px;
}

.swiper-slide {
  height: auto;
}
.productsSwiper{
    padding-bottom: 15px;
    padding-top: 15px;
}
.product-card {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
    min-height: 400px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.product-card.white-bg {
  background-color: white;
  color: black;
    background-size: cover;
  background-position: center;
}

.product-card.image-bg {
  background-color: #333;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-card.image-bg.white-bg {
  color: black;
}


.product-card.image-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  /*background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,     
    rgba(0, 0, 0, 0.8) 80%,  
    rgba(0, 0, 0, 0) 100%    
  );*/
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);  
  z-index: 1;
}
.product-card.image-bg.white-bg::before {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,     
    rgba(255, 255, 255, 0.8) 80%,  
    rgba(255, 255, 255, 0) 100%    
  );
}        

.product-card-content {
  padding: 25px 25px 40px 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
}

.product-card-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.product-card-button {
  background-color: white;
  color: black;
  border: none;
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.product-card.image-bg .product-card-button {
  background-color: rgba(255, 255, 255, 0.9);
}

.product-card-button:hover {
  background-color: #f0f0f0;
}

.product-card-logo {
  margin-bottom: 20px;
     margin-top: 20px;
    text-align: center;
}
.product-card-logo img{   
    max-width: 100%;
    background-color: rgba(255,255,255,0.80);
    border-radius: 16px;
    padding: 10px;
}
.product-bottom{
  margin-top: auto;   
}    
.product-img{
    
} 
.product-img img{
   width: 100%;
    border-radius: 16px 16px 16px 0;  
}
.product-card-title {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 100%;  
}

.product-card-text {
  font-size: 0.9rem;
}
 .product-card-arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
width: 30px;
height: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
    margin-top:-10px;
     z-index: 9999;
}       
.card-image-prod .product-card-content{
    padding: 0;
}
.card-image-prod .product-bottom{
    padding: 16px;
}