.reserve-wrap {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: #f5f6f8;
}

.location-box{padding:5px 15px;}

/* location-box는 한 줄 전체 */
.location-box,
.price-box {
  flex: 0 0 100%;
}



.date-box {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
 overflow: visible;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.date-box > div {
  padding: 10px 20px;
}


.date-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
}


.btn-box {
 flex: 0 1 120px;
  display: flex;
}



/**** 라디오 체크 커스텀  ******/
.radio-wrap input {
  display: none;
}

.radio-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  cursor: pointer;
  font-size: 16px;
}


/* 커스텀 원 */
.custom-radio {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
}

/* 선택됐을 때 */
.radio-wrap input:checked + .custom-radio {
  border-color: #ff6a00;
}

/* 안쪽 점 */
.radio-wrap input:checked + .custom-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ff6a00;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/**** 날짜 입력 인풋 커스텀  ******/
.date-box input.date-input {
  background: url('/image/icon/cal_icon.png') no-repeat right 5px center;
  background-size: 18px;
  padding-right: 20px;
}


/******** 라벨  커스텀 *********/
.label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}

.date-row {
  display: flex;
  gap: 10px;
}


/******** 셀렉트 / 인풋  커스텀 *********/
.date-row input,
.date-row select {
  flex: 1; /* 🔥 3개 동일 크기 */
  height: 44px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0 10px;
  box-sizing: border-box;
}

.date-row input {
  flex: 1.5; /* 날짜 크게 */
   min-width: 0;
}

.date-row select {
  flex: 1;
   min-width: 80px;
}


  .date-row input,
  .date-row select {
    flex: 1; /* 🔥 1:1:1 동일 비율 */
    min-width: 0; /* 중요 (깨짐 방지) */
    font-size: 14px; /* 살짝 줄이기 */
  }





/* 버튼 스타일 유지 */
.btn-submit {
background: #f5d800;
  border: none;
  border-radius: 10px;
  padding: 20px;
  font-size: 20px;
  font-weight: 400;
  width: 100%; 
  height: 100%; 
}      
.btn-submit:hover {
  background: #e6c800;
}



.price-box {
  width: 100%;
  margin-top: 10px;
}

.price-text {
  background: #1f1f1f;
  color: #fff;
  padding: 16px 20px;
  border-radius: 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 16px;
}

.price-desc {
  max-width: 300px;
  margin: 10px auto;
  text-align: center;
}

.price-desc li{color:#aeaeae;}

.price-desc .discount {
  display: none;
}
.price-desc .discount.active {
  display: list-item;
}
.price-desc .discount{color:red;}


/* 강조 숫자 */
#use_days,
#use_pay {
  color: #f5d800;
  font-weight: 600;
}





@media (max-width: 900px) {
  .reserve-wrap {
    flex-direction: column;
     overflow: visible;
  }

 #s1DateBox{z-index: 99999;}


  .date-box,
  .btn-box {
    flex: 0 0 100%;
    width: 100%;
  }

  .btn-box {
    margin-top: 10px;
  }
}



@media (max-width: 500px) {
.reserve-wrap {
  padding: 1%;
 }
   }

@media (max-width: 390px) {
.date-box input.date-input {
  background-size: 12px;
  padding-right: 18px;
  font-size:13px;
}
   }






/* 안내사항 */
.info-box {
  margin: 10px auto;  
  max-width: 1200px;  
  background:#fff;
  border:1px solid #eee;
  border-left:4px solid #f28c00;
  padding:25px;
  border-radius:12px;
}

.info-box h3 {
  color:#f28c00;
  margin-bottom:15px;
}

.info-box li {
    list-style: none;
  color:#555;
  line-height:1.8;
  font-size:14px;
}
