/* Products Section Styles */

.products-section {
  background-color: white;
}

.products-carousel {
  position: relative;
  padding: 40px 0;
}

.product-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.product-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
}

.product-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.product-price {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 400;
  margin-bottom: 10px;
}

.product-content p {
  flex-grow: 1;
  margin-bottom: 20px;
  color: #000000;
  font-size: 0.9rem;
}

.swiper-pagination {
  margin-top: 30px;
}

.swiper-pagination-bullet {
  background-color: var(--primary-color);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.9);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--primary-color);
  color: white;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}

@media (max-width: 768px) {
  .product-image {
    height: 250px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
