/* Container */
.booking--form-container {
  max-width: 1280px;
}
.booking--form-step h3,
.booking--form-step p{
  text-align: center;
}
.booking--heading{
  background-image: linear-gradient(to right, #0191D8, #9711FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 58px;
}
.booking--heading ~ .content{
  text-align: center;
  color: #4A5565;
  font-size: 18px;
  margin-bottom: 40px;
}
.booking--form-step p{
  font-size: 20px;
  text-align: start;
}
.booking--progress-wrapper{
  padding: 20px 20px 50px;
  box-shadow: 2px 2px 5px 5px #00000014;
  border-radius: 12px;
  margin-bottom: 30px;
}
.booking--progress-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.booking--progress-header p{
  padding-left: 20px;
  font-size: 24px;
}
.booking--progress-header a{
  font-size: 16px;
  border-radius: 50px;
  border: 1px solid #FF6467;
  padding: 12px 24px;
  color: #FF6467;
  text-transform: uppercase;
  margin-bottom: 50px;
  text-decoration: none !important;
  font-family: cursive;
  transition: 0.3s ease;
}
.booking--progress-header a:hover{
  background: #FF6467;
  color: white;
}
/* Progress Bar */
.booking--progress-container {
  background: #e9ecef;
  border-radius: 10px;
  height: 10px;
  margin-bottom: 30px;
  overflow: hidden;
 
}

.booking--progress-bar {
  background: linear-gradient(90deg, #007bff, #6f42c1);
  height: 100%;
  width: 0%;
  border-radius: 10px;
  transition: width 0.4s ease-in-out;
  position: relative;
}
.ticket-progress-wrapper{
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 96%;
  margin-top: -35px;
}
    /* padding: 0 39px;
}
/* Steps */
.booking--form-step {
  display: none;
  /* background-color: white;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 2px 2px 5px 5px #00000014; */
  animation: fadeIn 0.3s ease-in-out;
}
.booking--form-step.active {
  display: block;
}
.ticket-progress{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.ticket-progress p{
  font-size: 14px;
  color: #4A5565;
}

.ticket-progress.active .pregress-ticket {
 background: #155DFC;
 border: 3px transparent;
 position: relative;
 color: white;
}
.ticket-progress.is-filled .pregress-ticket{
 background: #00A63E;
 border: 3px transparent;
 position: relative;
 color: white;
}

.pregress-ticket {
  position: relative;
}
.ticket-progress.is-filled .pregress-ticket::before{
  content: '✓';
  background: #00A63E;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100px;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pregress-ticket span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pregress-ticket {
  background: #E5E7EB;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  border: 3px solid #D1D5DC;
}


#booking--progressBar
/* Titles */
h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.booking--time-container{
   background: white;
   box-shadow: 2px 2px 5px 5px #00000014;
   padding: 30px;
   border-radius: 12px;
   margin-top: 30px;
}
/* Date Grid */
.booking--date-container {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
   gap: 10px;
   margin-bottom: 20px;
}
.booking--date-wrapper{
  background: white;
  box-shadow: 2px 2px 5px 5px #00000014;
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
}
.booking--date-card {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 28px 18px;
  text-align: center;
  cursor: pointer;
  height: 80px;
  transition: all 0.2s ease-in-out;
}
.booking--date-card strong{
  color: #101828;
}
.booking--date-card small {
  display: block;
  font-size: 12px;
  color: #777;
}
.booking--date-card:hover {
  border-color: #6f42c1;
  box-shadow: 0 0 6px rgba(166, 139, 255, 0.3);
}
.booking--date-card.selected {
  border-color: #007bff;
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
}

/* Time Grid */
.booking--time-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  margin-top: 10px;
}
.booking--time-card {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #101828;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.booking--time-card:hover {
  border-color: #6f42c1;
  box-shadow: 0 0 6px rgba(166, 139, 255, 0.3);
}
.booking--time-card.selected {
  border-color: #007bff;
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
}

/* Review Box */
.booking--review-container {
  background: white;
  border-radius: 8px;
  padding: 32px;
  border: 1px solid #e4e6eb;
  line-height: 1.6;
  margin-bottom: 30px;
}
.booking--review-container.total{
  background-color: #00A6F4;
}
.booking--review-container strong{
  font-size: 14px;
}
.booking--review-container #booking--review-date{
  font-size: 18px;
}
.booking--review-container .booking-review h5{
  font-size: 14px;
  color: #4A5565;
  margin: 0 0 4px;
}
.booking--review-container .booking-review p{
  font-size: 18px;
  color: #101828;
  font-weight: 500;
}
#booking--review-total p{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
#booking--review-total p *{
  font-size: 24px;
  color: white;
  font-weight: 500;
}
/* Navigation */
.booking--form-navigation {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap:20px;
}
.booking--form-navigation #booking--prevBtn,
.booking--form-navigation #booking--nextBtn{
  width: 50%;
  border-radius: 50px;
  text-transform: uppercase;
}
.booking--form-navigation #booking--nextBtn{
  background-color: #D0248E;
  color: white;
  padding: 14px;
  letter-spacing: 3px;
}
.booking--form-navigation #booking--prevBtn{
  background-color: transparent;
  font-weight: bold;
}
.booking--form-navigation #booking--prevBtn:hover{
  color: #D0248E !important;
}
button:hover:not([disabled]) {
  background: #0056b3;
}
button[disabled] {
  background: #ccc;
  cursor: not-allowed;
}

/* Inputs */
input,
select {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#booking--product{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.booking--product-card{
  width: 100%;
  padding: 32px;
  border-radius: 24px;
  background: white;
  border: 1px solid #D1D5DC;
}
.booking--qty-control {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.booking--qty-control button {
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.booking--qty-input {
  width: 50px;
  text-align: center;
  border: 1px solid #ccc;
  height: 28px;
}
.booking--product-card .wrapper{
  display: flex;
  align-items: center;
  gap: 15px;
}
.booking--product-card .main-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booking--product-card .booking--product-image{
  width: 96px;
  height: 96px;
  background: #F3F3F3;
  border-radius: 12px;
  padding: 16px;
}
.booking--product-card .booking--product-image img{
  width: 100%;
  height: 100%;
}
.booking--product-card .booking--product-title{
  font-size: 24px;
  text-align: start;
  margin: 0;
}
.booking--product-card .booking--product-desc{
  margin: 0;
  font-size: 16px;
  text-align: start;
}
.booking--product-card .booking--product-price{ 
  text-align: start;
  margin: 0;
  font-size: 20px;
  color: #0084D1;
}
.booking--product-card .content{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.booking--product-card .booking--qty-control{
  background: #F9FAFB;
  padding: 12px;
  border-radius: 16px;
}
.booking--product-card .booking--qty-control input,
.booking--product-card .booking--qty-control button{
  width: 60px;
  height: 60px;
  text-align: center;
}
.booking--product-card .booking--qty-control button{
  border: 2px solid #99A1AF;
  border-radius: 8px;
  color: #000;
}
.booking--product-card .booking--qty-control button:hover,
.booking--product-card .booking--qty-control button:focus{
  background-color: transparent;
}

.booking--product-card .booking--qty-control input{
  border: none;
  background: transparent;
  font-size: 30px;
}
.booking--product-card .booking--qty-control input::-webkit-outer-spin-button,
.booking--product-card .booking--qty-control input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
.booking--headings{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}
.booking--headings h4{
  font-size: 20px;
  color: #101828;
  margin: 0;
}
.booking-review-products .booking-review-item{
  padding: 16px;
  background: #F9FAFB;
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking-review-products .booking-review-item .review-item-name,
.booking-review-products .booking-review-item .review-item-qtys{
  font-size: 18px;
  color: #101828;
  margin-bottom: 5px;
}
.review-item-content .name-price{
  display: flex;
  gap: 5px;
  font-weight: 500;
}
.review-item-content .name-price p{
  font-size: 18px;
}
.review-item-content .review-item-qty{
   font-size: 16px;
   color: #4A5565;
   margin: 0;
}
.review-item-price{
  font-size: 20px;
  color: #101828;
}
#booking--step4 input{
  padding: 14px 24px;
  border-radius: 100px;
  border: 2px solid #D1D5DC;
  margin-bottom: 25px;
  font-size: 16px;
  background-color: #F3F3F5;
}
#booking--step4 label{
  font-size: 20px;
  color: #101828;
  padding-bottom: 15px;
}
#booking--step4 label span{
  color: #FF0000;
}

/* Responsive */
@media (max-width: 768px) {

  .booking--progress-header a{
    font-size: 14px;
  }
  .ticket-progress-wrapper{
    width: 96%;
  }
  .ticket-progress .pregress-ticket{
     width: 40px;
     height: 40px;
  }
  .ticket-progress p{
    font-size: 12px;
  }
  .booking--heading{
    font-size: 28px;
  }
  .booking--date-container,
  .booking--time-grid {
    grid-template-columns: 1fr 1fr;
  }
  .booking--product-card .booking--qty-control input,
  .booking--product-card .booking--qty-control button{
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 0;
    font-size: 15px;
  }
  .booking--product-card{
    padding: 24px;
  }
  .booking--product-card .booking--product-title{
    font-size: 18px;
  }
  .booking--product-card .booking--product-desc{
    font-size: 12px;
  }
  .booking--product-card .booking--product-price{
    font-size: 16px;
  }
  .ticket-progress-wrapper{
    margin-top: -25px;
    margin-left: -14px;
  }
  .ticket-progress{
    background-color: transparent;
  }
}
