.subcategory-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
  color: #57252D;
}

.subcategory-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  background-color: #f9f2f2;
}

.subcategory-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.subcategory-title {
  font-size: 18px;
  font-weight: 500;
}

/* Animation */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-pop {
  animation: popIn 0.5s ease forwards;
}

.coming-soon-box {
  padding: 60px 20px;
  background-color: #f9f2f2;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.coming-soon-text {
  color: #57252D;
  font-size: 22px;
  font-weight: 500;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
