/* Combo Phòng Tắm - Minimal custom CSS (Tailwind handles most styling) */

/* Spinner animation */
@keyframes combo-spin {
  to { transform: rotate(360deg); }
}
.combo-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #e2e8f0;
  border-top-color: var(--color-primary, #c5a355);
  border-radius: 50%;
  animation: combo-spin .7s linear infinite;
}

/* Modal transition */
.combo-modal-overlay {
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.combo-modal-overlay:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.combo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.combo-modal-overlay:not(.active) .combo-modal-inner {
  transform: scale(.95) translateY(20px);
}
.combo-modal-overlay.active .combo-modal-inner {
  transform: scale(1) translateY(0);
}
.combo-modal-inner {
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}

/* Product card selected state */
.combo-card.is-selected {
  border-color: #10b981 !important;
  background: #f0fdf4 !important;
}
.combo-card.is-selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* Line clamp for product name */
.combo-line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Print styles */
@media print {
  body * { visibility: hidden; }
  .combo-phong-tam, .combo-phong-tam * { visibility: visible; }
  .combo-phong-tam {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .combo-no-print { display: none !important; }
  .combo-price-detail { display: block !important; }
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
