﻿
.product-carousel {
  padding: 2rem 0;
}

.product-card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
  }

  .product-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
  }

  .product-card p {
    color: #666;
    font-weight: bold;
  }

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1.5rem;
  }

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 0.5rem;
  }

  .product-carousel {
    padding: 1rem 0;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1.2rem;
  }
}
