.carousel-item {
      background-color: #fdf5f2;
      padding: 30px;
      border-radius: 20px;
      text-align: center;
    }
.combo-img {
      max-width: 100%;
      border-radius: 10px;
    }

.feature-box {
      text-align: center;
      padding: 5px;
    }
    
.collection-title {
      font-size: 1.5rem;
      font-weight: bold;
      text-align: center;
      margin-top: 40px;
      margin-bottom: 20px;
    }
.collection-item {
      text-align: center;
      margin-bottom: 30px;
    }
.collection-img {
      width: 100%;
      max-width: 200px;
      border-radius: 10px;
    }


.product-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      transition: transform 0.2s ease;
    }
.product-card:hover {
      transform: translateY(-5px);
    }
.product-card-link {
  font-weight: bold;
  text-decoration: none;
}

.product-img {
      width: 100%;
      height: auto;
      border-radius: 0;
    }
.price {
      font-size: 1.1rem;
      font-weight: bold;
      color: #333;
    }
.old-price {
      text-decoration: line-through;
      color: #999;
      font-size: 0.95rem;
      margin-left: 8px;
    }
.discount {
      color: #ff5722;
      font-size: 0.95rem;
      margin-left: 8px;
    }