/* 기본 스타일 리셋 */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
    font-size:14.5px;
  }
  
  .main_bg {background-color: #fff;}
  #mapimg {text-align: center; }
  #mapimg img {height: 995px; object-fit: cover;}
  /* 레이아웃 */
  
  .main-content {
    overflow: auto;
    height: 100vh;
    scrollbar-width : none;
}

.mobile-content {
    height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* iOS 스크롤 지원 */
}

.site-map {
    height: 100%;
    overflow-y: auto;
}

/* 모바일 대응 */
@media (max-width: 991px) {
    .mobile-content {
        height: calc(100vh - 60px);
        overflow-y: auto;
    }
    .border-radius-lg {
      border-radius: 0px;
   }
  
  
}



  
/* 스크롤 시 적용되는 스타일 */
.mobile-tapbar-container.scrolled {
    background-color: #f97316 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 0px;
  }
  
/* Soft UI 스크롤바 */
.mobile-content::-webkit-scrollbar {
    width: 6px;
  }
  
  .mobile-content::-webkit-scrollbar-track {
    background: var(--soft-bg);
    border-radius: 0x;
  }
  
  .mobile-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 0px;
  }
  
  /* 탭바 스타일 */
  .mobile-tapbar-container {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    position: sticky;
    background-color: #fff;
    transition: background-color 0.3s ease;
  }
  
  .mobile-tapbar {
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
  }
  
  /* 로고 스타일 */
  .logo-container {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .logo {
    height: 35px;
    width: auto;
    transition: opacity 0.3s ease;
  }
  
  .default-logo {
    opacity: 1;
  }
  
  .white-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  
  /* 햄버거 버튼 */
  .hamburger-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }
  
  .hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #000;
    margin: 4px 0;
    transition: background-color 0.3s ease;
  }
  
  
  /* 버튼 스타일 */
  .site-buttons {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .site-button {
    min-width: 32px;
    min-height: 32px;
    color: #f97316;
    --bs-btn-padding-x: 0.55rem;
    --bs-btn-padding-y: 0.50rem;
    --bs-btn-font-size: 0.65rem;
    border-radius: 2.5rem;
    margin: 0 0 0 10px;
  }
  
  .site-button.active {
    background-color: #f97316;
    color: white;
  }

  .white-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  

  .mobile-tapbar-container.scrolled .white-logo {
    opacity: 1;
  }
  
  .mobile-tapbar-container.scrolled .default-logo {
    opacity: 0;
  }
  
  .mobile-tapbar-container.scrolled .hamburger-line {
    background-color: #fff;
  }
  


  /* 캐러셀 스타일 */
  .carousel-item img {
    height: 300px;
    object-fit: cover;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 32px;
    height: 32px;
    background-color: rgba(52, 71, 103, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 10px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 1rem;
    height: 1rem;
  }
  
 
  
  .panel-content {
    padding: 20px;
  }
  
  .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  /* 메뉴 스타일 */
  .panel-menu ul {
    list-style: none;
    padding: 0;
  }
  
  .panel-menu li {
    margin: 7px 0;
  }
  
  .panel-menu a {
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    display: block;
    padding: 2px 0;
  }
  
  .panel-menu a:hover {
    color: var(--bs-primary);
  }
  
  /* 구분선 */
  .divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #6c757d;
    margin: 1rem 0;
  }
  
  .divider::before,
  .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
  }
  
  .divider-text {
    padding: 0 1rem;
  }
  
  /* 로그인 관련 스타일 */
  .login-type-selector {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
  }
  
  .form-check-inline {
    margin-right: 2rem;
  }
  
  .kakao-login-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
  }
  
  .kakao-login-btn button {
    width: 100%;
    font-size: 0.75rem;
  }
  
  .social-login-btn a{
    font-size: 1.5rem;
  }



  @media (min-width: 992px) {
    .mobile-view  {
        position: fixed;
        right: 0;
        top: 0;
        width: 450px;
        height: 100vh;
        border-left: 1px solid #dee2e6;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        overflow: hidden;
        background-color: #fff !important;
    }
    
    .col-lg-9 {
        margin-right: 450px;
    }

    .mobile-content {
        height: calc(100% - 60px);
        overflow-y: auto;
        border-top:1px solid #dee2e6;
        background:#fff;
    }
    /* 슬라이드 패널 */
    .slide-panel {
        position: fixed;
        top: 0;
        right: -450px;
        width: 450px;
        height: 100%;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        transition: 0.3s;
        z-index: 999999;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: saturate(200%) blur(30px);
        box-shadow: var(--soft-shadow);
    }
    
    .slide-panel.active {
        right: 0;
    }
}

@media (max-width: 991px) {
    .col-lg-9 {
      display: none;
    }
    .col-lg-10 {
      display: none;
    }
    .col-lg-3 {
      width: 100%;
      max-width: 100%;
      flex: 0 0 100%;
    }
    
    .mobile-view {
      max-width: 100%;
      min-height: 100vh;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
      width: 28px;
      height: 28px;
    }

      /* 슬라이드 패널 */
    .slide-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        transition: 0.3s;
        z-index: 999999;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: saturate(200%) blur(30px);
        box-shadow: var(--soft-shadow);
    }
    .slide-panel.active {
        right: 0;
    }

    /* 스크롤 시 적용되는 스타일 */
    .mobile-tapbar-container.scrolled {
        background-color: #f97316 !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
   


  }
  
  /* FAQ 스타일 */
  .faq-item, .notice-item {
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .faq-item h5 {
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff;
  }
  
  .accordion-button:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
  
  .accordion-body {
    padding: 1rem;
    background-color: #fff;
    width: 100%;
  }
  
  /* 기타 유틸리티 클래스 */
  .height-100 {
    height: 100%;
  }
  
  .bg-white {
    background-color: white;
  }


  .accordion-button {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    padding: 1rem 1.5rem;
    transition: all 0.15s ease-in;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #344767;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23344767'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
/* 이미지 컨테이너와 이미지 스타일 수정 */
.faq-content {
  color: #67748e;
  font-size: 0.875rem;
  line-height: 1.5;
}

.faq-content img {
  max-width: 100%;
  height: auto !important; /* important로 인라인 스타일 override */
  margin: 1rem 0;
  border-radius: 0.5rem;
  object-fit: contain;
  display: block;
}

/* 이미지 최대 크기 제한 수정 */
.max-width-800 {
  max-width: 800px;
  width: auto;
  max-height: 100%;
  display: block;
  margin: 1rem auto;
}

/* 이미지 컨테이너 수정 */
.img-container {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 200px; /* 최소 높이 설정 */
  overflow: visible; /* visible로 변경하여 이미지가 잘리지 않도록 */
  border-radius: 0.5rem;
  margin: 1rem 0;
}

.img-container img {
  position: relative; /* absolute에서 relative로 변경 */
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}



.card {
  border: 1px solid #eee;
  box-shadow: none;
  background-color: #fff;
}

.custom-accordion .accordion-button {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem;
  transition: all 0.15s ease-in;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #344767;
  border-bottom: none;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-item {
  background-color: #fff;
  margin-bottom: 0.5rem;
}

.custom-accordion .accordion-body {
  background-color: #f8f9fa;
  padding: 1.5rem;
  color: #67748e;
  border-bottom: 1px solid #eee;
}

.notice-content {
  line-height: 1.6;
}

.notice-content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

.notice-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.notice-content table td,
.notice-content table th {
  border: 1px solid #eee;
  padding: 0.5rem;
}

.notice-content ul,
.notice-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.notice-content h1,
.notice-content h2,
.notice-content h3,
.notice-content h4,
.notice-content h5,
.notice-content h6 {
  margin: 1rem 0;
  color: #344767;
  font-weight: 600;
}

.text-secondary {
  color: #67748e !important;
}

#loading {
  background: rgba(255,255,255,0.8);
}

.accordion-button::after {
  background-size: 1rem;
  transition: transform 0.2s ease-in-out;
}

/* 호버 효과 */
.custom-accordion .accordion-button:hover {
  background-color: #f8f9fa;
}


/* 예약 목록 페이지 전용 스타일 */
.reservation-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.reservation-list {
  margin-top: 1.5rem;
}

.reservation-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.5rem;
}

.reservation-status {
  font-size: 0.75rem;
  padding: 0.35em 0.8em;
  border-radius: 0.5rem;
  margin-left: 1rem;
  font-weight: 500;
  color: #fff;
}

.status-info { background: #2152ff; }
.status-success { background: #17ad37; }
.status-primary { background: #7928ca; }
.status-warning { background: #f53939; }
.status-secondary { background: #627594; }
.status-dark { background: #141727; }
.status-danger { background: #f53939; }

.reservation-date {
  color: #67748e;
}

.site-info {
  color: #67748e;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.reservation-actions {
  padding-top: 1rem;
}



/* 프로필 섹션 */
.profile-section {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #eee;
}

.user-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 0.875rem;
  color: #67748e;
}

.info-value {
  font-size: 1rem;
  color: #344767;
  font-weight: 500;
}

/* 예약 섹션 */
.reservation-section {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #eee;
}

.reservation-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reservation-item {
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
}

.status-badge {
  padding: 0.35em 0.8em;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
}

.status-pending { background: #2152ff; }
.status-completed { background: #17ad37; }
.status-gift { background: #7928ca; }
.status-received { background: #f53939; }
.status-weather { background: #627594; }
.status-expired { background: #141727; }

.site-info {
  font-size: 0.875rem;
  color: #67748e;
}

.reservation-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0rem;
}

.reservation-actions button,
.reservation-actions a {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.735rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-view {
  color: #2152ff;
  border-color: #2152ff;
  background: transparent;
}

.btn-cancel {
  color: #f53939;
  border-color: #f53939;
  background: transparent;
}

.btn-weather {
  color: #fbcf33;
  border-color: #fbcf33;
  background: transparent;
}

.btn-view:hover { background: #2152ff; color: #fff; }
.btn-cancel:hover { background: #f53939; color: #fff; }
.btn-weather:hover { background: #fbcf33; color: #fff; }

@media (max-width: 768px) {
  .user-info-grid {
      grid-template-columns: 1fr;
  }
  
  .reservation-actions {
      flex-direction: column;
  }
  
  .profile-section,
  .reservation-section {
      padding: 1rem;
  }
}


/* 쿠폰 목록 스타일 */
.coupon-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coupon-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s;
}

.coupon-item:hover {
  transform: translateY(-2px);
}

.coupon-content {
  padding: 1.5rem;
  align-items: center;
}

.coupon-info {
  flex: 1;
}

.coupon-title {
  color: #344767;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.coupon-benefit {
  color: #67748e;
}

.coupon-expire {
  text-align: right;
  min-width: 100px;
}

.expire-badge {
  display: inline-block;
  padding: 0.35em 0.8em;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.expire-badge.valid {
  background: #dcf5e5;
  color: #17ad37;
}

.expire-badge.warning {
  background: #fff5dd;
  color: #f53939;
}

.expire-badge.expired {
  background: #f8f9fa;
  color: #67748e;
}

.expire-date {
  color: #67748e;
}

.no-coupon {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .coupon-content {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
  }

  .coupon-expire {
      width: 100%;
      text-align: left;
      margin-top: 1rem;
  }
}


/* 회원가입 페이지 전용 스타일 */
.auth-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 0\.5rem;
}

.auth-header {
    margin-bottom: 2rem;
}

/* 소셜 로그인 버튼 */
.kakao-btn {
    width: 100%;
    background: #FEE500;
    border: none;
    border-radius: 8px;
    padding: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #000;
    transition: transform 0.2s;
}

.kakao-btn:hover {
    transform: translateY(-1px);
}

/* 구분선 */
.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #eee;
}

.divider span {
    background: #fff;
    padding: 0 1rem;
    color: #67748e;
    font-size: 0.875rem;
    position: relative;
}

/* 폼 스타일 */
.form-group label {
    color: #344767;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #2152ff;
    box-shadow: none;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.btn-check {
    background: #fff;
    border: 1px solid #2152ff;
    color: #2152ff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-check:hover {
    background: #2152ff;
    color: #fff;
}

.form-text {
    font-size: 0.75rem;
    color: #67748e;
    margin-top: 0.25rem;
}

/* 약관 동의 */
.form-check-label {
    font-size: 0.875rem;
    color: #344767;
}

.form-check-label a {
    color: #2152ff;
    text-decoration: none;
}

/* 버튼 스타일 */
.form-actions {
    display: grid;
    gap: 0.75rem;
}

.btn-submit {
    background: #2152ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.875rem;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.btn-submit:hover {
    transform: translateY(-1px);
}

.btn-back {
    background: #fff;
    border: 1px solid #eee;
    color: #344767;
    border-radius: 8px;
    padding: 0.875rem;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-back:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .auth-card {
        padding: 1.5rem;
    }
}


/* 모달 관련 스타일 */

.modal {
  z-index: 950; /* Bootstrap 기본값 */
}

.modal-backdrop {
  z-index: 1040; /* Bootstrap 기본값 */
}



.custom-modal {
  z-index: 955;
}

.modal-open .modal {
  display: none;
}

.modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
  border-bottom: 1px solid #eee;
  padding: 1rem 1.5rem;
}

.modal-title {
  color: #344767;
  font-size: 1.1rem;
}

.modal-body {
  padding: 1.5rem;
  max-height: 70vh;
  overflow-y: auto;
}

.btn-close {
  background-size: 0.8rem;
  transition: transform 0.2s;
}

.btn-close:hover {
  transform: rotate(90deg);
}

/* 스크롤바 스타일링 */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media (max-width: 768px) {
  .modal-dialog {
      margin: 1rem;
  }
}



/* 로그인 페이지 전용 스타일 */
.auth-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 1.5rem;
}

.auth-header h3 {
  color: #344767;
  font-weight: 600;
}

/* 알림 메시지 */
.alert-message {
  background: #fff5f5;
  color: #f53939;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ffe5e5;
  position: relative;
}

.alert-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #f53939;
  cursor: pointer;
}

/* 소셜 로그인 버튼 */
.kakao-btn {
  width: 100%;
  background: #FEE500;
  border: none;
  border-radius: 8px;
  padding: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #000;
  transition: transform 0.2s;
  cursor: pointer;
}

.kakao-btn:hover {
  transform: translateY(-1px);
}

/* 비회원 예약 버튼 */
.non-member-btn {
  display: block;
  width: 100%;
  padding: 0.875rem;
  background: #fff;
  border: 1px solid #2152ff;
  color: #2152ff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.non-member-btn:hover {
  background: #2152ff;
  color: #fff;
}

/* 구분선 */
.divider {
  position: relative;
  text-align: center;
}

.divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #eee;
}

.divider span {
  background: #fff;
  padding: 0 1rem;
  color: #67748e;
  font-size: 0.875rem;
  position: relative;
}

/* 폼 스타일 */
.form-group label {
  color: #344767;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: #2152ff;
  box-shadow: none;
}

/* 체크박스 스타일 */
.form-check-input {
  border-color: #eee;
}

.form-check-input:checked {
  background-color: #2152ff;
  border-color: #2152ff;
}

.form-check-label {
  font-size: 0.875rem;
  color: #67748e;
}

/* 버튼 스타일 */
.form-actions {
  display: grid;
  gap: 0.75rem;
}

.btn-submit {
  background: #2152ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.875rem;
  font-size: 0.9rem;
  transition: transform 0.2s;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-1px);
}

.btn-register {
  background: #fff;
  border: 1px solid #eee;
  color: #344767;
  border-radius: 8px;
  padding: 0.875rem;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-register:hover {
  background: #f8f9fa;
}

/* 하단 링크 */
.auth-links {
  text-align: center;
  font-size: 0.875rem;
}

.auth-links a {
  color: #2152ff;
  text-decoration: none;
}

.auth-links .separator {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #eee;
  margin: 0 0.75rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .auth-card {
      padding: 1.5rem;
  }
}





.panel-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.panel-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}

.panel-header h5 {
  margin: 0;
  color: #344767;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  color: #67748e;
  font-size: 1.25rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.close-btn:hover {
  transform: rotate(90deg);
  color: #344767;
}

.panel-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}

/* 카카오 로그인 버튼 */
.kakao-login-section {
  margin-bottom: 1.5rem;
}

.kakao-btn {
  width: 100%;
  background: #FEE500;
  border: none;
  border-radius: 8px;
  padding: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #000;
  transition: transform 0.2s;
  cursor: pointer;
}

.kakao-btn:hover {
  transform: translateY(-1px);
}

/* 메뉴 리스트 */
.menu-list {
  flex: 1;
}

.menu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list .divider {
  height: 1px;
  background: #eee;
  margin: 1rem 0;
}

.menu-item {
  display: block;
  padding: 0.875rem 0;
  color: #344767;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.menu-item:hover {
  color: #2152ff;
  padding-left: 0.5rem;
}

/* 소셜 미디어 링크 */
.social-links {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #344767;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.social-btn:hover {
  background: #f8f9fa;
  color: #2152ff;
}

.social-btn i {
  font-size: 1.25rem;
}

/* 스크롤바 스타일 */
.panel-menu::-webkit-scrollbar {
  width: 6px;
}

.panel-menu::-webkit-scrollbar-track {
  background: #f8f9fa;
}

.panel-menu::-webkit-scrollbar-thumb {
  background: #67748e;
  border-radius: 3px;
}

.panel-menu::-webkit-scrollbar-thumb:hover {
  background: #344767;
}



/* 예약 페이지 스타일 */
.reservation-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 1rem;
}

.reservation-header {
  margin-bottom: 2rem;
}

.reservation-header h3 {
  color: #344767;
  font-weight: 600;
}

/* 섹션 스타일 */
.info-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.info-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.section-title {
  font-size: 1.1rem;
  color: #344767;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* 예약 상세 정보 */
.details-content {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
}

.details-content table {
  margin-bottom: 0;
}

.details-content td {
  padding: 0.5rem 0;
  color: #67748e;
}

/* 환불 규정 */
.refund-rules {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
}

.refund-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  color: #67748e;
}

.refund-rate {
  font-weight: 500;
  color: #2152ff;
}

/* 폼 스타일 */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #344767;
  font-size: 0.875rem;
}

.form-control {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.form-control:focus {
  border-color: #2152ff;
  box-shadow: none;
}

/* 체크박스 스타일 */
.agree-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-check-input {
  border-color: #dee2e6;
}

.form-check-input:checked {
  background-color: #2152ff;
  border-color: #2152ff;
}

.form-check-label {
  font-size: 0.875rem;
  color: #67748e;
}

/* 버튼 섹션 */
.button-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit, .btn-cancel {
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-submit {
  background: #2152ff;
  color: #fff;
}

.btn-submit:hover {
  transform: translateY(-1px);
}

.btn-cancel {
  background: #fff;
  border: 1px solid #dee2e6;
  color: #344767;
}

.btn-cancel:hover {
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .reservation-card {
      padding: 1.5rem;
  }

  .button-section {
      grid-template-columns: 1fr;
  }
}

/* 체크박스 스타일 */
.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0;
}

.form-check-input {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #2152ff;
  border-color: #2152ff;
}

.form-check-label {
  font-size: 0.875rem;
  color: #67748e;
  cursor: pointer;
  margin-left: 0.5rem;
}

/* 체크박스 유효성 검사 스타일 */
.form-check-input.is-invalid {
  border-color: #dc3545;
}

.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}


/* 완료 카드 스타일 */
.completion-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 0.5rem;
}

/* 완료 헤더 */
.completion-header {
  margin-bottom: 2.5rem;
}

.success-icon {
  font-size: 3rem;
  color: #2dce89;
}

.completion-header h3 {
  color: #344767;
  font-weight: 600;
}

/* 예약 상세 정보 */
.reservation-details {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 0.5rem;
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row.total {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 2px solid #eee;
  font-weight: 600;
}

.detail-label {
  color: #67748e;
  font-size: 0.875rem;
}

.detail-value {
  color: #344767;
  font-size: 0.875rem;
}

.total .detail-value {
  color: #2152ff;
  font-size: 1rem;
}

/* 카카오톡 알림 */
.kakao-notice {
  background: #FEE500;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #000;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .completion-card {
      padding: 1.5rem;
  }

  .detail-row {
      padding: 0.5rem 0;
  }
}



/* 카드 스타일 */
.reservation-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
}

.card-header {
  padding: 0.5rem;
  background: transparent;
  border-bottom: 1px solid #eee;
}

.card-body {
  padding: 0.5rem;
}

/* 폼 스타일 */
.form-group label {
  color: #344767;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.form-control:focus {
  border-color: #2152ff;
  box-shadow: none;
}

/* 버튼 스타일 */
.button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit, .btn-cancel {
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-submit {
  background: #2152ff;
  color: #fff;
}

.btn-submit:hover {
  transform: translateY(-1px);
}

.btn-cancel {
  background: #fff;
  border: 1px solid #dee2e6;
  color: #344767;
}

.btn-cancel:hover {
  background: #f8f9fa;
}

/* 예약 상세 정보 스타일 */
.reservation-details {
  margin-bottom: 0.5rem;
}

.reservation-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.reservation-item h6 {
  color: #344767;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.reservation-date {
  background: #2152ff;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.price-info {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.price-info h6 {
  color: #2152ff;
  margin-bottom: 0.5rem;
}

/* 알림 메시지 스타일 */
.alert {
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.alert-danger {
  background: #fff5f5;
  border: 1px solid #ffe5e5;
  color: #f53939;
}

@media (max-width: 768px) {
  .card-header, .card-body {
      padding: 1.5rem;
  }

  .button-group {
      grid-template-columns: 1fr;
  }
}



/* 카드 스타일 */
.cancel-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 2.5rem;
}

.cancel-header {
  margin-bottom: 2.5rem;
}

.cancel-header h3 {
  color: #344767;
  font-weight: 600;
}

/* 정보 섹션 스타일 */
.info-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.info-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.section-title {
  font-size: 1.1rem;
  color: #344767;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* 그리드 레이아웃 */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-item .label {
  font-size: 0.875rem;
  color: #67748e;
}

.info-item .value {
  font-size: 1rem;
  color: #344767;
  font-weight: 500;
}

/* 환불 정보 스타일 */
.refund-details {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
}

.refund-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  color: #67748e;
}

.refund-row:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.refund-row.total {
  font-weight: 600;
  color: #344767;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 2px solid #eee;
}

.amount.highlight {
  color: #2152ff;
  font-size: 1.1rem;
}

.refund-notice {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff5dd;
  border-radius: 8px;
  color: #b95000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

/* 버튼 스타일 */
.button-section {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-cancel {
  background: #2152ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.875rem;
  font-size: 0.9rem;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-cancel:hover {
  transform: translateY(-1px);
}

.btn-back {
  background: #fff;
  border: 1px solid #eee;
  color: #344767;
  border-radius: 8px;
  padding: 0.875rem;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-back:hover {
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .cancel-card {
      padding: 1.5rem;
  }

  .info-grid {
      grid-template-columns: 1fr;
  }
}

/* 카드 스타일 */
.reservation-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 1.5rem;
}

.reservation-header {
  margin-bottom: 1.5rem;
}

.reservation-header h3 {
  color: #344767;
  font-weight: 600;
}

/* 섹션 스타일 */
.info-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.info-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.section-title {
  font-size: 1.1rem;
  color: #344767;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* 상세 정보 콘텐츠 */
.details-content,
.coupon-content {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
}

/* 환불 규정 스타일 */
.refund-rules {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.refund-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.refund-item:last-child {
  border-bottom: none;
}

.refund-desc {
  color: #67748e;
  font-size: 0.875rem;
}

.refund-rate {
  color: #2152ff;
  font-weight: 500;
}

/* 체크박스 스타일 */
.agree-check {
  margin-top: 1rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.form-check-input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  border: 1.5px solid #dee2e6;
  border-radius: 0.25rem;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #2152ff;
  border-color: #2152ff;
}

.form-check-label {
  font-size: 0.875rem;
  color: #67748e;
  cursor: pointer;
}

/* 버튼 스타일 */
.button-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-submit,
.btn-cancel {
  padding: 0.875rem;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-submit {
  background: #2152ff;
  color: #fff;
}

.btn-submit:hover {
  transform: translateY(-1px);
}

.btn-cancel {
  background: #fff;
  border: 1px solid #eee;
  color: #344767;
}

.btn-cancel:hover {
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .reservation-card {
      padding: 1.5rem;
  }

  .button-section {
      grid-template-columns: 1fr;
  }
}


/* QR 코드 스타일 */
.qr-container {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
}

.qr-image {
  max-width: 150px;
  border-radius: 8px;
}

/* 패키지 이름 */
.package-name {
  color: #344767;
  font-weight: 600;
}

/* 상태 뱃지 */
.status-badge {
  padding: 0.35em 0.8em;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-pending { background: #e9f3ff; color: #2152ff; }
.status-completed { background: #e8faf0; color: #2dce89; }
.status-gift { background: #eee7ff; color: #7928ca; }
.status-received { background: #fff5dd; color: #fb6340; }
.status-weather { background: #ffe4e4; color: #f53939; }
.status-default { background: #eee; color: #67748e; }

/* 정보 그리드 */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-label {
  font-size: 0.875rem;
  color: #67748e;
}

.info-value {
  font-size: 0.875rem;
  color: #344767;
  font-weight: 500;
}

.info-value.price {
  color: #2152ff;
}

/* 우천 취소 알림 */
.weather-notice {
  background: #fff5dd;
  color: #fb6340;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* 버튼 스타일 */
.btn-cancel-weather,
.btn-cancel-normal {
  padding: 0.675rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-cancel-weather {
  background: #f53939;
  color: #fff;
}

.btn-cancel-normal {
  background: #fff;
  border: 1px solid #f53939;
  color: #f53939;
}

.btn-cancel-weather:hover,
.btn-cancel-normal:hover {
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .info-grid {
      grid-template-columns: 1fr;
  }
  
  .reservation-item {
      padding: 1rem;
  }
}


.footer-container {border-top: 1px solid #eee; padding-top: 1rem;}
.footer-container .footer-text {font-size: 0.8rem; color: #67748e; padding-left: 0;}
.footer-container .footer-text ul {padding-left: 0;}
.footer-container .footer-text li {margin-bottom: 0.2rem; list-style: none; padding-left: 0; } 
.footer-container .footer-text li a {color: #67748e; text-decoration: none; }
.footer-container .footer-text li a:hover {color: #2152ff;}

.btn-xmark {color:#f53939}
.btn-xmark:hover {color:#f53939;}
.bg-white {background-color: #fff;}
.mt-0 {margin-top: 0;}


.modal-backdrop.show {
  z-index: 40 !important;
  position: absolute;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  position: relative;
}

.info-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}

.info-label {
  font-weight: 500;
  color: #666;
}

.info-value {
  font-weight: 600;
  color: #333;
}

.info-value.price {
  color: #007bff;
}


/* 모달 관련 스타일 추가 */
.modal {
  z-index: 1050 !important;
}
.modal-backdrop {
  z-index: 40 !important;
  position: absolute;
}
.modal-dialog {
  z-index: 1051 !important;
  margin: 1.75rem auto;
}
/* 모바일 화면에서 버튼 영역을 더 크게 */
@media (max-width: 767.98px) {
  .btn {
      padding: 12px 16px;
      font-size: 16px; /* 모바일에서 더 큰 글씨 */
  }
  .modal-footer .btn {
      flex: 1;
      margin: 0 5px;
  }
}


.info-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}
.info-content {
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 4px;
}
.package-info {
  margin-bottom: 20px;
}
.carousel-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
#packagePhotoCarousel {
  margin-bottom: 15px;
}
#packageuseinfo {
  font-size: 0.875rem;
}
