.angel-basket {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
  font-family: 'Cairo', sans-serif;
}

.angel-basket:hover {
  transform: translateY(-5px);
}

.basket-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.basket-info {
  padding: 15px;
}

.basket-title {
  font-size: 20px;
  color: #333;
  margin: 10px 0;
}

.basket-price {
  font-size: 18px;
  color: #777;
  margin-bottom: 15px;
}

.basket-button {
  background: linear-gradient(to right, #ff6ec4, #7873f5);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.basket-button:hover {
  background: linear-gradient(to right, #7873f5, #ff6ec4);
}