/* ---------------------------------------
   PUODELIAI / ARBATINUKAI SECTION
---------------------------------------- */

.cups-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #fff0fa 0%, #ffe3f5 100%);
}

.cups-section .section-title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  color: #ba1f87;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.cups-section .section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.cups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.cup-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(186, 31, 135, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.cup-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.cup-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 40px rgba(186, 31, 135, 0.25);
}

/* Image wrapper */
.card-img-wrap {
  overflow: hidden;
  border-radius: 18px;
}

.card-img-wrap img {
  width: 100%;
  transition: transform 0.4s ease;
}

.cup-card:hover img {
  transform: scale(1.08);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cup-card:hover {
    transform: none;
  }

  .card-img-wrap img:active {
    transform: scale(1.05);
  }
}
