/* Package and Ticket Styles */
.ticket-list {
  margin-top: 1rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.ticket-total {
  background: #f8f9fa;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.ticket-total span {
  font-weight: 700;
  color: var(--color-sub);
  margin-left: 0.5rem;
}

.ticket-item {
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.ticket-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ticket-name {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.ticket-sale {
  font-weight: 700;
  color: var(--color-sub);
}

.ticket-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.count-adjust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.count-adjust button {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.count-adjust span {
  min-width: 2rem;
  text-align: center;
}

.total-price {
  font-weight: 500;
}

.total-price span {
  font-weight: 700;
  color: var(--color-sub);
}

/* Package styles */
/* .package-item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
} */

.package-selector {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.package-radio {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-right: 2.5rem; /* Make space for radio button */
}

.package-header h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.package-price {
  text-align: right;
}

.package-price span:first-child {
  display: block;
  font-size: 0.875rem;
  color: #666;
}

.package-price span:last-child {
  font-weight: 700;
  color: var(--color-sub);
}

.package-body {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.package-body strong {
  display: block;
  color: #333;
  margin-top: 1rem;
}


.package-item.selected {
  border: 1.5px solid #662681; /* Add a border: 1px solid with your desired color */
  padding: 20px; /* Add some padding for better visual separation */
  margin-bottom: 10px; /* Add some space between package items */
 
}

.popup-fade{
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

.popup-fade.show {
  z-index: 100;
  opacity: 1;
  visibility: visible;
}

.popup-fade-up {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.3s ease-out;
}

.popup-fade-up.show {
  z-index: 100;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.promo-input {
  display: flex;
  gap: 10px;
  align-items: center;
}