/* ============================================
   VOUCHER LIST PAGE - Pro Design System
   ============================================ */

.voucher-card-pro {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.voucher-card-pro:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.voucher-card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.voucher-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.voucher-card-pro:hover .voucher-card-thumb img {
  transform: scale(1.08);
}

.voucher-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.voucher-card-body h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.voucher-card-body p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.voucher-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px dashed #e2e8f0;
  margin-top: auto;
}

.voucher-price-row .price-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

.voucher-price-row .price-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.voucher-action-row {
  margin-top: 16px;
}

.voucher-action-row .btn-booking {
  width: 100%;
}
