body .flavor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
body .flavor-item {
  width: 23%;
  position: relative;
}
body .flavor-image {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
body .flavor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
body .flavor-title {
  color: white !important;
  font-size: 1.2rem;
  margin-bottom: 10px;
  opacity: 1;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
body .shop-now {
  background-color: #C4A21A;
  color: white !important;
  padding: 5px 20px;
  text-decoration: none;
  border-radius: 0px;
  opacity: 1;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

body .shop-now:hover {background-color: #333 !important;  }

body .flavor-item:hover .flavor-title,
body .flavor-item:hover .shop-now {
  opacity: 1;
  transform: translateY(0);
}
body .swiper-pagination {
  margin-top: 10px;
  text-align: center;
  
}
@media (max-width: 768px) {
  body .flavor-grid {
    display: flex;
    overflow: hidden;
  }
  body .flavor-item {
    width: 80%;
    flex-shrink: 0;
  }
}
