body {
  background: #000;
  color: #fff;
  font-family: system-ui, Arial, sans-serif;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  width: 100%;
}

.category-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  object-fit: cover;
}

.info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  padding: 16px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.35s ease;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-card:hover .info-overlay {
  transform: translateY(0);
  opacity: 0.8;
}

.info-overlay h5 {
  margin: 0;
  font-size: 16px;
  text-align: center;
}

@media (max-width: 767px) {
  .category-card img {
    max-height: 250px;
    width: 100%;
    height: auto;
  }

  .info-overlay h5 {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .category-card {
    height: 320px;
  }

  .category-card img {
    height: 100%;
    object-fit: cover;
  }

  .info-overlay h5 {
    font-size: 14px;
  }
}
