/* Reveal SNAPPY hơn */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Card Enic: Depth và Border tinh tế */
.enic-card {
  background: #fff;
  border: 1px solid #f3efdf !important;
  transition: all 0.4s ease;
}
.enic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 163, 115, 0.12) !important;
}

/* Nút MUA NGAY: Phong cách Enic Luxury */
.enic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(88, 47, 14, 0.05); /* Overlay cực nhạt */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}
.enic-card:hover .enic-overlay {
  opacity: 1;
}

.btn-gold-premium {
  background: #d4a373;
  color: white !important;
  padding: 10px 25px;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
  transform: translateY(20px);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.enic-card:hover .btn-gold-premium {
  transform: translateY(0);
}
.btn-gold-premium:hover {
  background: #582f0e;
  box-shadow: 0 6px 20px rgba(88, 47, 14, 0.3);
}

/* Các thành phần hỗ trợ */
.text-luxury-gold {
  color: #d4a373;
}
.bg-luxury {
  background: #d4a373 !important;
}
.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.out-of-stock-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background: #333;
  color: #fff;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 4px;
}
