.hero-heading {
  font-size: 2rem;
  text-align: center;
  font-weight: 800;
  background: linear-gradient(90deg, #ff0066, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  animation: shine 3s infinite linear;
  margin-bottom: 30px;

  /* NEW */
  background-color: #f5f5f5;
  padding: 10px;
  border: 2px solid #f5f5f5;
  border-radius: 12px;
}

@keyframes shine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.today-deals-heading {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin: 30px 0;
  letter-spacing: 2px;
  animation: shimmer 3s infinite linear;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);

  /* NEW */
  background-color: #f5f5f5;
  padding: 15px;
  border: 2px solid #f5f5f5;
  border-radius: 12px;
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.custom-heading {
  text-align: center;
  margin: 50px 0 20px;
}
 

.main-title {
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.star-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
}

.star-divider hr {
  width: 180px;
  border: none;
  border-top: 1px solid #333;
}

.star-divider span {
  font-size: 1.5rem;
  color: orange;
}

@media (max-width: 600px) {
  .main-title {
    font-size: 1.5rem;
  }
  .star-divider hr {
    width: 40px;
  }
}


