
.badge-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ff4d4d, #e60000);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  z-index: 5;
}
/* Base Action Button Style */
.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.action-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Icon Style */
.action-btn i {
  font-size: 15px;
}

/* Product Card Styling */
.product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 0px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.product-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

/* Product Name */
.product-card h5 {
  font-weight: 700;
  font-size: 18px;
  margin: 12px 0 8px;
  color: #111;
}

/* Price */
.product-card .price {
  font-size: 16px;
  font-weight: 600;
  color: #e63946;
  margin-bottom: 8px;
}

/* Rating */
.rating {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 12px;
}
