.discount-section {
  background-color: #f9f9f9;
  padding: 5rem 20px;
  text-align: center;
  position: relative;
}

.discount-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 1rem;
}

.discount-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.discount-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.middle-card {
  z-index: 2;
  transform: scale(1.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.side-card {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  transform: scale(0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.side-card:hover {
  z-index: 3;
  transform: scale(1) translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.middle-card:hover {
  transform: scale(1.25);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.discount-text {
  font-size: 1.5rem;
  color: #e63946;
  font-weight: bold;
  margin-bottom: 10px;
}

.discount-details {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.shop-now-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.shop-now-btn:hover {
  background-color: #e63946;
  transform: scale(1.1);
}
