

.banner-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  height: 60vh; /* Full viewport height */
}

.centered-image {
  width: 971px; /* Width of the image */
  height: 431px; /* Height of the image */
}

/* Size Selection Button Styles */
.size-selection .btn {
  margin: 5px;
  padding: 5px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: white;
  color: #444;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.size-selection .btn:hover {
  background-color: black(0 4% 17%);
  color: white(0 0% 100%);
  transform: translateY(-3px) rotate(5deg);
}

.product-card {
  padding: 15px;
  position: relative; 
  overflow: hidden; 
  text-align: center;
  background-color: #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card .badge {
  position: absolute;
  top: 10px;
  left: 5px;
  position: absolute; 
  top: 10px;        
  left: 10px;
  padding: 5px 10px;
  font-size: 14px;
  color: white;
  background-color: #f44336;
  border-radius: 3px;
  z-index: 10;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-title {
  font-size: 1.100rem;
  margin: 15px 0;
  font-weight: 600;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: #f44336;
}

.price .sale-price {
  font-size: 1.1rem;
  color: black;
  font-weight: bold;
}

.price .original-price {
  text-decoration: line-through;
  font-size: 1.125rem;
  color: #888;
}


@media (max-width: 768px) {
  .sale-banner h1 {
    font-size: 2.5rem;
  }

  .sale-banner h2 {
    font-size: 4rem;
  }

  .product-card {
    padding: 5px;
  }

  .product-title {
    font-size: 1rem;
  }

  .price .sale-price {
    font-size: 1rem;
  }

  .price .original-price {
    font-size: 1rem;
  }
}