@charset "UTF-8";



/* --- Header --- */
header.top-nav {
  background-color: var(--white);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 10;
  height: 75px;
  max-width: 768px;
  left: 50%;
  transform: translate(-50%, 0);
  border-left: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
  width: 100%;
}
.top-nav .logo {
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -1px;
  width: 60px;
}
.top-nav .arw{
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.top-nav .location {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.top-nav .location i{
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../../imgs/icon/icon-loca.svg) no-repeat center center;
  background-size: auto 100%;
}
.top-nav .header-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}
.top-nav .header-icon {
  font-size: 20px;
  color: #333;
  width: 40px;
  text-align: center;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;

}


/* 하단 탭 바 컨테이너 */
.app-bottom-bar {
  position: fixed;
  bottom: 0;
  left: calc((100% - 768px)/2);
  width: 768px;
  padding-left:12px;
  padding-right:12px;
  background-color: rgba(255,255,255,.7);
  border-top: 1px solid #eeeeee;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  z-index: 99;
  box-shadow: 0 -1px 3px rgba(0,0,0,0.03);
  border-left: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
  backdrop-filter: blur(10px);
}
.app-bottom-bar ul li{
	flex:1;
	width:20%;
	text-align: center;
	padding: 15px 0 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.app-bottom-bar ul li .nv-icon{
	width:40px;
	height:40px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px;
}

.app-bottom-bar ul li .tab-button{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -.25px;
}

.app-bottom-bar ul li .tab-button.active{
  color: var(--primary-color);
	font-weight:600
}
.app-bottom-bar ul li .icon-home{
	background-image: url(../../imgs/common/icon-home.svg);
}
.app-bottom-bar ul li .tab-button.active .icon-home{
	background-image: url(../../imgs/common/icon-home_active.svg);
}
.app-bottom-bar ul li .icon-ticket{
	background-image: url(../../imgs/common/icon-ticket.svg);
	background-size: 75%;
	position: relative;
}
.app-bottom-bar ul li .icon-ticket:before{
	content:'';
	display:none;
	position:absolute;
	width: 6px;
	height: 6px;
	border-radius:50%;
	background: var(--primary-color);
	right: 0;
	top: 0;
}
.app-bottom-bar ul li.has-dot .icon-ticket:before{ display:inline-block; }

.app-bottom-bar ul li .tab-button.active .icon-ticket{
	background-image: url(../../imgs/common/icon-ticket_active.svg);
}
.app-bottom-bar ul li .icon-lesson{
	background-image: url(../../imgs/common/icon-lesson.svg);
	background-size: 74%;
}
.app-bottom-bar ul li .tab-button.active .icon-lesson{
	background-image: url(../../imgs/common/icon-lesson_active.svg);
}
.app-bottom-bar ul li .icon-coupon{
	background-image: url(../../imgs/common/icon-coupon.svg);
}
.app-bottom-bar ul li .tab-button.active .icon-coupon{
	background-image: url(../../imgs/common/icon-coupon_active.svg);
}
.app-bottom-bar ul li .icon-mypage{
	background-image: url(../../imgs/common/icon-mypage.svg);
	background-size: 27px;
}
.app-bottom-bar ul li .tab-button.active .icon-mypage{
	background-image: url(../../imgs/common/icon-mypage_active.svg);
}


/* 모바일 */
@media (max-width:768px) {
  .app-bottom-bar{
    width: 100%;
    left: 0;
    border: 0;
  }
	.app-container,header.top-nav{
		border-left:0;
		border-right:0
	}

}


/* --- Main Content --- */
.app-container > main.mainPage{
	padding-top:24px;
}
/* 공통 카드 스타일 */
.card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-100, #f0f0f0);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 24px;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.main-card.card {
  margin-bottom: 20px;
}

.card:active {
  transform: scale(0.98);
}

/* 상단 큰 배너 (1시간 바로 시작) */
.hero-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 24px;
}

.hero-text h2 {
  font-size: 22px;
  margin-bottom: 6px;
}
.hero-text .highlight {
  color: var(--primary-color);
}
.hero-text p {
  font-size: 14px;
  color: #666;
}

.hero-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: url(../../imgs/icon/icon-main-clock.svg) no-repeat center center;
  background-size: 32px;
}

/* 2열 그리드 메뉴 */
.grid-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.main-menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 140px;
  text-align: center;
  gap: 10px;
  padding: 20px 16px;
}
.main-menu-card .icon-wrapper {
  width: 56px;
  height: 56px;
}
.main-menu-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.mainPage .menu-icon {
  font-size: 32px;
  margin-bottom: 16px;
  color: #333;
}

/* 라켓 아이콘에 주황색 점 포인트 */

.mainPage .icon-point {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.mainPage .menu-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-800);
  display: block;
}

/* SNS 섹션 */
.section-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.sns-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sns-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  padding: 4px 0;
}
.sns-item:active {
  opacity: 0.6;
}
.sns-item i {
  font-size: 20px;
  color: #9CA3AF;
}

/* --- Footer --- */
footer {
  padding: 0;
  margin-top: 32px;
  text-align: center;
}

.footer-info {
  font-size: 10px;
  color: var(--gray-300);
  line-height: 1.5;
  margin-bottom: 20px;
  background: #FFF;
  padding: 12px 24px;
  font-weight: 300;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.footer-links a {
  font-size: 11px;
  color: #888;
  text-decoration: none;
}
.info-links a{display: inline-block;color: var(--gray-400);font-weight: 400;font-size: 10.5px;}

/* --- Bottom Navi --- */
.bottom-nav {
  /* position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #eee; */
  backdrop-filter:blur(10px);
  display: flex;
  background: #FFF;
  max-width: 768px;
  height: 70px;
  padding: 0 12px;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #bbb;
  font-size: 11px;
  position: relative;
  width: 20%;
  height: 70px;
  justify-content: center;
  gap: 5px;
}

.nav-item i {
  font-size: 24px;
  margin-bottom: 4px;
}

.nav-item.active {
  color: var(--primary-color);
}

/* 알림 배지 */
.badge-dot {
  position: absolute;
  top: 0;
  right: 25%;
  width: 6px;
  height: 6px;
  background-color: #ff4d4f;
  border-radius: 50%;
}  



/* 결제하기 */
.content {/* padding: 20px; */}
.page-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  padding-left:0;
  padding-right: 0;
  display: block;
  width: 100%;
}

/* [티켓 카드 스타일] */
.ticket-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  position: relative;
  /* overflow: hidden; */
  margin-bottom: 50px;
  margin-top: 12px;
}

/* 티켓 상단 (정보 영역) */
.ticket-top {padding: 25px 20px;/* box-shadow: 0 0 8px rgba(0,0,0,0.1); */border-radius: 15px 15px 0 0;}
.ticket-top.ticket-top-info{
  padding:13px 20px
}
.summary-row {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  font-size: 1.4rem;
  gap: 12px;
  align-items: flex-start;
}
.summary-row:last-child { margin-bottom: 0; }

.summary-row .label {
  background-color: var(--gray-50);
  color: var(--black-900);
  padding: 10px 10px 9px;
  border-radius: 7px;
  width: 80px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  flex-shrink: 0;
}

.summary-row .value {font-weight: 500;flex: 1;padding-top: 8px;font-size: 1.6rem;}
.highlight { color: #FF7F27; font-weight: 700; }



.ticket-divider-wrap{
  position: relative;
}
.ticket-divider-wrap::after{
  content: '';
  display: block;
  background: var(--gray-10);
  height: 48px;
  position: absolute;
  left: -6px;
  right: -10px;
  top: calc(50% + -24px);
}
.ticket-divider {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-top: 1px dashed var(--gray-100);
  border-bottom: 1px dashed var(--gray-100);
  /* overflow: hidden; */
  /* box-shadow: 0 0 8px rgba(0,0,0,0.1); */
  padding: 0;
  min-height: 90px;
  z-index: 1;
}
.ticket-divider .ticket-payment {
  width: 100%;
  margin: 0 20px;
  position: relative;
  z-index: 1;
}
/* 왼쪽 홈 */
.ticket-divider::before {
	  content: '';
	position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 48px;
  background-color: var(--gray-10);
  border-radius: 0 24px 24px 0 ;
  box-shadow: inset 3px 0 4px rgba(0, 0, 0, 0.08);
  z-index: 1;
  }
/* 오른쪽 홈 */
.ticket-divider::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 48px;
  background-color: var(--gray-10);
  border-radius: 24px 0 0 24px;
  box-shadow: inset -3px 0 4px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

/* 티켓 하단 (결제 금액 및 수단) */
.ticket-bottom {
  padding: 24px 24px 30px;
  /* text-align: center; */
  /* box-shadow: 0 0px 15px rgba(0,0,0,0.1); */
  overflow: hidden;
  border-radius: 0 0 15px 15px;
}
.price-label {font-size: 1.6rem;font-weight: 500;color: var(--black-900);margin-bottom: 5px;}
.total-price {
  font-size: 3.0rem;
  font-weight: 600;
  color: var(--primary-color);
  /* margin-bottom: 25px; */
  letter-spacing: -1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.total-price .won{
  font-size: 2.3rem;
}
.round-box{
  border-radius: var(--border-radius);
  box-shadow: 0 0px 8px rgba(0,0,0,0.13);
  overflow: hidden;
  background: #FFF;
  padding: 24px;
}

.payment-method { text-align: left; }
.payment-method h3 { font-size: 14px; margin-bottom: 10px; } 

/* select ct */
.select-box {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fix_btn_area {
  position: -webkit-sticky;
  position: sticky;
  bottom: 118px;
  left: 0;
  width: 100%;
  z-index: 2;
  background-color: #fff;
  padding-bottom: env(safe-area-inset-bottom);
}
body.swal2-shown:not(.swal2-no-backdrop,.swal2-toast-shown){
  padding-right:0 !important
}
/* payment-done */
#done-lottie-box{
  max-width: 90px;
  margin-left: auto;
  margin-right: auto;
  width: 27%;
}
.info-box{
  border-radius:8px;
  border: 1px solid var(--gray-100);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-box .info-row{
  display: flex;
  font-size: 1.6rem;
  width: 100%;
}
.info-box .info-row .label{
  color: var(--black-900);
  opacity: .8;
  width: 90px;
}
.info-box .info-row .value{
	flex:1;
  font-weight: 600;
}

/* qr */
.qr-box{
  display: block;
  text-align: center;
}
.qr-box > img{
  display: block;
  height: 95px;
  width: auto;
  margin: 0 auto 12px;
  max-width: 95px;
}

/* season ticket */
.option-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  position: relative; /* 위치 기준점 */
  cursor: pointer;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: #FFF;
  margin: 0 auto;
}
.option-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  padding: 12px 16px 11px 16px;
  transition: all 0.2s ease;
  display: none;
  width: 100%;
}
.option-card.selected {
  display: flex;
  order: -1; 
}
 .option-list.active .option-card {
  display: flex; 
  border-radius: 0; 
  border-bottom: none; 
 }
 .option-list.active .option-card.selected {
  border-radius: 12px 12px 0 0;
  border-bottom: 1px dashed var(--gray-100);
 }
.option-details { display: flex; align-items: center; gap: 10px; }
.option-time {font-size: 1.6rem;font-weight: 500;color: #111;}
.option-validity {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 4px 5px;
  border-radius: 5px;
}
.option-price {display: flex;align-items: center;font-size: 1.6rem;font-weight: 500;color: var(--black-900);}
.option-card.selected .option-price::after {
  content: ''; display: inline-block; width: 8px; height: 8px; margin-left: 12px;
  border-right: 2px solid #333; border-bottom: 2px solid #333;
  transform: rotate(45deg); transition: transform 0.2s;
  margin-top: -6px;
}
.option-list.active .selected .option-price::after {
  transform: rotate(225deg); 
  margin-top: 4px;
}

.info-txt-cont {
  max-width: 600px;
  width: 100%;
  color: #333;
  line-height: 1.5;
  letter-spacing: -0.02em;
 }
 .info-txt-cont .info-section {
  margin-bottom: 12px;
 }
.info-txt-cont .info-section:last-child {
  margin-bottom: 0;
 }
.info-txt-cont .info-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 3px;
 }
.info-txt-cont .info-list {
  list-style-type: disc;
  padding-left: 14px;
  color: #666;
 }
.info-txt-cont .info-list li {
  margin-bottom: 2px;
  word-break: keep-all;
  font-size: 1.2rem;
  color: var(--gray-500);
  font-weight: 500;
 }
.info-txt-cont .info-list li:last-child {
  margin-bottom: 0;
 }

 /* 테이블예약진행 */
 /* gametable.css - 수정본 */
/* :root { --primary:#FE5F2D; --muted:#6b7280; --bg:#F4F4F5; --ok:#FE5F2D; --wait:#111827; } */
/* 패널 */
#table_resv_container .resv-panel{
 max-width: 100%;
 margin: 12px auto 24px;
 padding: 16px 16px 24px;
}
#table_resv_container .resv-title{
 font-size: 20px; font-weight: 800; line-height: 1.3;
 margin: 0 0 38px; text-align: center;
}
#table_resv_container .resv-hint .hint-strong{ font-weight:700; margin:8px 0 4px; text-align:center; }
#table_resv_container .resv-hint .hint-sub{ color:var(--muted); font-size:12px; margin:0 0 12px; text-align:center; }

/* STEP1: 칩 */
#table_resv_container .chip-grid{
 display: grid; grid-template-columns: repeat(2,1fr); gap:8px;
}
#table_resv_container .chip{
 appearance:none;
 border:1px solid var(--gray-100);
 background:#fff;
 border-radius: 8px;
 padding: 10px 10px;
 font-size: 1.6rem;
 font-weight: 500;
 cursor:pointer;
 transition:.15s;
 width:100%;
 text-align:center;
}
#table_resv_container .chip:hover{ box-shadow:0 2px 8px rgba(0,0,0,.06); }
#table_resv_container .chip.is-active{
  color: var(--primary-color);
  border-color: var(--primary-color);
}
#table_resv_container .chip.is-disabled{ opacity:.45; cursor:not-allowed; }
#table_resv_container .chip s{ color:#9ca3af; }
#table_resv_container .chip span{ vertical-align: bottom; }

/* 공통 폼 블록 */
#table_resv_container .form-block{ margin-top: 40px; }
#table_resv_container section .form-label{
 color:#000;
 font-size:16px;
 font-weight:600;
 display:block;
 margin-bottom:8px;
}

/* STEP2-1: 테이블 목록 행 */
#table_resv_container .table-row{
 width:100%;
 border:none;
 text-align:left;
 border-radius: 8px;
 padding:14px 14px;
 display:flex;
 align-items:center;
 justify-content:space-between;
 margin-bottom:10px;
 cursor:pointer;
 transition: background .2s;
 border: 1px solid var(--gray-100);
 font-size: 1.6rem;
}
#table_resv_container .table-row .row-cap{
	font-size:1.4rem;
	color: var(--gray-500);
	font-weight: 600;
}
#table_resv_container .table-row .row-name{
	font-weight: 600 !important;
}
/* 선택 가능한 테이블 → 흰색 */
#table_resv_container .table-row.is-now{
 background:#fff;
/* border:1.5px solid #FE5F2D;*/
}

/* 예약 대기중/불가 테이블 → 회색 */
#table_resv_container .table-row.is-later{
 background: var(--gray-100);
 border:1.5px solid #ddd;
 cursor:not-allowed;
 color: var(--gray-500);
 font-weight: 400;
}
#table_resv_container .table-row.is-later .row-badge{ color:#6b7280; }

/* STEP2-2: 선택 요약 카드 + 다시 선택 버튼(우측) */
#table_resv_container .table-card{
 display:flex;
 align-items:center;
 justify-content:space-between;
 border: 1px solid var(--primary-color);
 border-radius: 8px;
 padding: 14px;
 background:#fff;
 margin-bottom:10px;
}
#table_resv_container .table-info{ display:inline-block; }
#table_resv_container .table-info .table-name, #table_resv_container .table-info .table-cap{ display:inline-block; vertical-align:bottom; }
#table_resv_container .table-info .table-name{font-weight: 600;font-size:16px;}
#table_resv_container .table-info .table-cap,
#table_resv_container .table-row .row-cap{font-size:12px;color: var(--gray-500);margin-left:6px;font-weight: 500;}
#table_resv_container .table-reset{color: var(--gray-100);font-weight: 600;font-size:14px;text-decoration:none;background:transparent;border:none;cursor:pointer;}
#table_resv_container .table-reset:hover, #table_resv_container .table-reset:focus{ color:var(--primary); text-decoration:underline; }

/* STEP3/4: 셀렉트 */
#table_resv_container .select-wrap{ position:relative; }
#table_resv_container .select-wrap .select{
 width:100%;
 appearance:none;
 border: 1px solid var(--gray-100);
 border-radius: 8px;
 padding: 14px;
 font-size: 1.6rem;
 background:#fff;
 text-align: left;
}
#table_resv_container .select-wrap .select:focus{ outline:none; box-shadow:0 0 0 3px rgba(254,95,45,0.18); }
#table_resv_container .select-wrap .select-caret{
 position:absolute; right:14px; top:50%; width:0; height:0;
 border-left:6px solid transparent; border-right:6px solid transparent; border-top:7px solid #111827;
 transform:translateY(-50%); pointer-events:none;
}

/* 제출 */
#table_resv_container .submit-wrap{ margin-top:18px; }
#table_resv_container .submit-btn{
 width:100%; border:none; border-radius:12px; height:56px; background:var(--primary); color:#fff;
 font-size:18px; font-weight:800; cursor:pointer; box-shadow:0 8px 20px rgba(254,95,45,.25);
 transition:transform .04s ease, filter .15s ease;
}
#table_resv_container .submit-btn:active{ transform:translateY(1px); }

/* 숨김 */
[hidden]{ display:none !important; }



/* mypage */

/* .reservation-btn-wrapper {
  margin-bottom: 10px;
}
.new-reservation-button {
  width: 100%;
  padding: 18px;
  background-color: #FF6F0F;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
  box-sizing: border-box;
} */
.ticket-grid {
 display: grid;
 grid-template-columns: 160px 160px;
 column-gap: 7px;
 align-items: start;
 margin-top: 12px;      /* 1시간권과의 간격 (원하면 16/20 조절) */
}
.reservation-detail-button {
  background-color: #FF6F0F !important;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
}

.reservation-detail-button:hover {
  opacity: 0.9;
}
 /* 탭 */
#table_resv_container .tabs { display:flex; padding:0; }
#table_resv_container .tab {position:relative;padding:14px 6px;font-weight: 500;color: var(--black-800);cursor:pointer;border: 0px;background: white;border-bottom: 1px solid var(--gray-100);width: 50%;font-size: 1.6rem;}
#table_resv_container .tab.active {color: var(--primary-color);}
#table_resv_container .tab.active::after {content:"";position:absolute;left:0;right:0;bottom:-1.5px;height:3px;background: var(--primary-color);border-radius:3px;}
#table_resv_container .panel { display:none; padding:0; }
#table_resv_container .panel.active { display:block; }

 /* 카드 */
#table_resv_container .pass-card{display: block;border:1px solid #eee;border-radius:16px;padding:16px;background:#fff;margin-bottom:12px;position: relative;}
#table_resv_container .pass-card:after{
    content: '';
    display: inline-block;
    width: 38px;
    height: 38px;
    background: url(../../imgs/common/arw.svg) no-repeat center center;
    background-size: 100%;
    position: absolute;
    right: 20px;
    top: 20px;
}
#table_resv_container .pass-card.ver_ss:after{
	display:none
}
#table_resv_container .pass-card.ver_ss{
}
#table_resv_container .pass-card .pass-left-tit{
	display:inline-flex;
	align-items: center;
	gap: 6px;
	line-height: 20px;
}
#table_resv_container .pass-card .pass-left-tit .sts_date{
	background: var(--gray-50);
	padding: 3px 5px;
	border-radius: 3px;
}
#table_resv_container .pass-card .pass-left-tit .title{
	font-size:1.6rem;
	font-weight:600;
	color: var(--black-900);
}
#table_resv_container .pass-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
#table_resv_container .title {font-weight: 500;color: var(--primary-color);font-size: 1.6rem;}
#table_resv_container .title.ver2{
    margin-top: 5px;
    color: var(--black-800);
    font-weight: 600;
    font-size: 1.8rem;
}
#table_resv_container .badge { font-size:12px; padding:4px 8px; border-radius:999px; background:#f4f4f4; }
#table_resv_container .badge.orange { background:#FFE7DE; color:#EF5A2D; font-weight:700; }
#table_resv_container .meta {color:#666;font-size:14px;line-height:1.5;margin-top: 12px;}
#table_resv_container .meta_time_tit {color:#666;font-size:14px;line-height:1.5;background: #FFF;border-radius: 50px;background: var(--gray-50);display: inline-block;border: 1px solid var(--gray-100);font-size: 1.2rem;padding: 2px 6px;}
#table_resv_container .meta_time {color: var(--black-800);font-size: 1.4rem;line-height:1.5;margin-top: 4px;padding-left: 4px;}
#table_resv_container .cta-row { gap:12px; margin:16px 0 24px; }
#table_resv_container .btn1 { flex:1; height:44px; border-radius:10px; font-weight:700; border:1px solid #EF5A2D; background:#fff; }
#table_resv_container .btn.primary { background:#EF5A2D; color:#fff; border-color:#EF5A2D; }
#table_resv_container .section-title { font-weight:800; margin:24px 0 12px; }

 /* 빈 상태 */
#table_resv_container .empty,
.empty_cont {
    text-align: center;
    color: var(--gray-500);
    background: #FFF;
    min-height: 100px;
    border-radius: 18px;
    font-size: 1.4rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
#table_resv_container .empty img { width:180px; max-width:80%; height:auto; display:block; margin:0 auto 12px; }

 /* 하단 더보기 */
#table_resv_container .more-wrap { text-align:center; margin:12px 0 20px; }
#table_resv_container .link-more { display:inline-block; padding:10px 16px; border:1px solid #ddd; border-radius:10px; }

#table_resv_container .info-title{
	color: #000;
	font-family: Pretendard;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 150% */
	margin:0px;
}
#table_resv_container .info-text-custom {
  text-align: left ;
	color: var(--Gray400, #898995) ;
	font-family: Pretendard ;
	font-size: 12px ;
	font-style: normal ;
	font-weight: 500 ;
	line-height: 20px ; /* 166.667% */
	margin-bottom: 10px ;
}


/* 내정보 */
.mypage-wrap .info-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 24px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); /* 아주 옅은 그림자 */
}
.mypage-wrap .profile-card .row {
    display: flex;
    margin-bottom: 16px;
}
.mypage-wrap .profile-card .row:last-child {
    margin-bottom: 0;
}

.mypage-wrap .profile-card .label {
    display: inline-block;
    width: 100px;
    font-weight: 600;
    font-size: 15px;
}
.mypage-wrap .profile-card .value {
    font-size: 1.5rem;
    font-weight: 400;
}

/* 2. 지점 카드 스타일 */
.mypage-wrap .branch-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mypage-wrap .branch-card .branch-info {
    display: flex;
    align-items: center;
}

.mypage-wrap .branch-card .label {
    font-weight: 600;
    margin-right: 20px;
    font-size: 15px;
}
.mypage-wrap .branch-card .value {
    font-size: 15px;
}
.mypage-wrap .change-branch-button {
    background: #fff;
    border: 1px solid #ff7f3e; /* 오렌지색 테두리 */
    color: #ff7f3e;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.mypage-wrap .btn-change-branch:active {
    background: #fff5f0;
}
.mypage-wrap .menu-card {
    display: flex;
    justify-content: space-between; 
    padding: 24px 30px; 
}
.mypage-wrap .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    gap: 8px;
}
.mypage-wrap .menu-item img{width: 7vw;max-width: 35px;}
.mypage-wrap .menu-item p{
    font-size: 1.5rem;
}


/* 쿠폰 */
.coupon-item-wrap{
	background:#FFF;
	padding-top:24px;
  border-radius: 18px;
}
.icon-arrow-down {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid #111;
	border-bottom: 1.5px solid #111;
	transform: rotate(45deg);
	margin-left: 6px;
	margin-bottom: 2px;
}

.coupon-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* 쿠폰 카드 스타일 */
.coupon-list .coupon-card {
	border: 1px solid var(--gray-100);
	border-radius: 12px;
	padding: 16px;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* 쿠폰 타이틀 */
.coupon-list .coupon-title {
	color: var(--primary-color);
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.coupon-list .info-row {
	display: flex;
	align-items: center;
	margin-bottom: 6px;
	font-size: 15px;
}

.coupon-list .info-row:last-child {
	margin-bottom: 0;
}

.coupon-list .info-label {
	color: var(--gray-700);
	width: 60px;
	font-weight: 500;
	font-size: 1.4rem;
}

.coupon-list .info-value {
	font-weight: 600;
	font-size: 1.4rem;
}


/* 지점변경 */
#store-container .search-box {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  margin-top: 24px;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 0 13px;
}
#store-container .search-box input {
  flex: 1;
  padding: 0 10px;
  border: none;
  outline: none;
  line-height: 48px;
  font-size: 1.6rem;
}
#store-container .search-box .search-btn {
  background: #fff;
  border: none;
  padding: 0 12px;
  font-size: 16px;
  cursor: pointer;
}

#store-container .section {
  margin-bottom: 24px;
}
#store-container .section-title {
	text-align: left;
	font-size: 1.8rem;
	font-weight: 600;
	 /* 100% */
	padding: 0;
	margin-bottom: 0;
	color: var(--black-700);
}
#store-container .section-title small {
  font-weight: normal;
  font-size: 12px;
  color: #888;
}

#store-container .store-card {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  /*  border-radius: 10px;*/
  border: 1px solid #eee;
  /*  margin-bottom: 10px;*/
  transition: 0.2s;
  background: #FFF;
  position: relative;
}
#store-container .store-card img {
  width: 80px;
  height: 80px;
  border-radius: 3px;
  object-fit: cover;
  margin-right: 12px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
#store-container .store-card .store-info {
  flex: 1;
  margin-bottom: 19px;
}
#store-container .store-card .store-name {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 5px;
}
#store-container .store-card .store-addr {
	margin-bottom: 0px !important;
	position:relative;
	font-size: 1.2rem;
	color: var(--gray-300);
	word-break: keep-all;
	line-height: 1.3;
	display: flex;
}
#store-container .store-card .store-addr:before{
	content:'';
	display:inline-block;
	background: url(../../imgs/icon/ico-map.svg) no-repeat center center;
	width: 15px;
	height: 17px;
	margin-top: -2px;
	margin-right: 1px;
	background-size: 100%;
}
#store-container .store-card .distance {
  font-size: 13px;
  font-weight: 500;
  color: var(--black-900);
  display: block;
  position: absolute;
  left: 117px;
  width: calc(100% - 141px);
  text-align: right;
  bottom: 21px;
  font-weight: 500;
}

#store-container .store-card.active {
  background: #FFF;
  border: 1px solid var(--primary-color);
}
#store-container .store-card.active .store-name{color: var(--primary-color);}

/* 구매내역 */

.purchase-history-container {
    width: 100%;
}
/* === [UI Pass Card] 메인 카드 스타일 === */
.purchase-history-container .ui-pass-card {
    display: block;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 0 14px;
    margin-bottom: 12px;
    overflow: hidden;
}

.purchase-history-container .pass-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.purchase-history-container .pass-head .flexBox.column {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.purchase-history-container .pass-head .title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.purchase-history-container .pass-head .title.ver2 {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}
.purchase-history-container .icon-arrow {
    color: #333;
    font-size: 16px;
}
.purchase-history-container .pass-content {
    padding: 20px 0;
}

.purchase-history-container .product-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.purchase-history-container .meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--gray-500);
}

.purchase-history-container .meta_time_tit {
    border: 1px solid var(--gray-500);
    border-radius: 12px;
    padding: 0 8px;
    line-height: 18px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    white-space: nowrap; 
}

.purchase-history-container .price {
    display: flex;
    justify-content: flex-end; 
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color); 
    margin-top: 16px;
}


.detail-history-container .detail-section {
    margin-bottom: 24px;
}

.detail-history-container .section-heading {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 11px;
    padding-left: 4px;
}

.detail-history-container .detail-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.detail-history-container .detail-card.ver-left{
    
}



.detail-history-container .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1.4;
    gap: 5px;
}
.detail-history-container .detail-card.ver-left .info-row{
    justify-content: space-between;
}
.detail-history-container .label {
    color: var(--gray-500);
    font-weight: 500;
    flex-shrink: 0;
    width: 80px;
}
.detail-history-container .detail-card.ver-left .value{
    text-align: left;
    font-weight: 400;
}
.detail-history-container .value {
    font-weight: 500;
    text-align: right;
    flex-grow: 1;
    word-break: keep-all;
}

.detail-history-container .value.bold {
    font-weight: 700;
}

.detail-history-container .value.text-gray {
    color: var(--gray-500);
    font-weight: 400;
}

.detail-history-container .dotted-bottom {
    border-bottom: 1px dashed var(--gray-200);
    padding-bottom: 8px;
    margin-bottom: 0;
}

.detail-history-container .solid-bottom {
    border-bottom: 1px solid var(--black-900);
    padding-bottom: 8px;
    margin-bottom: 0;
}

.detail-history-container .total-row {
    margin-top: 6px;
    margin-bottom: 16px;
}

.detail-history-container .total-label {
    color: #333;
    font-weight: 700;
    font-size: 16px;
}

.detail-history-container .total-price {
    font-size: 1.6rem;
    font-weight: 700;
    display: inline;
    text-align: right;
}

.detail-history-container .value-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-grow: 1;
}

.detail-history-container .btn-receipt {
    background: #fff;
    border: 1px solid var(--gray-500);
    border-radius: 14px;
    padding: 4px 10px;
    font-size: 12px;
    color: var(--gray-500);
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s;
}

.detail-history-container .btn-receipt:hover {
    background-color: #f9f9f9;
}



/* lesson */
.empty_cont.ver_lesson {
    min-height:300px;
	gap:12px
}

/* apt login */
.new_login_area{
  background: var(--gray-50);
}
.new_login_area .logo-img{}
.new_login_area .login_welcome_txt{
    color: var(--gray-500);
    font-weight: 500;
}

/* ── Responsive: small phones ──────────────────── */
@media (max-width: 430px) {
  .hero-card { padding: 24px 20px; }
  .hero-text h2 { font-size: 20px; }
  .hero-icon { width: 48px; height: 48px; background-size: 28px; }
  .grid-menu { gap: 12px; margin-bottom: 24px; }
  .main-menu-card { height: 120px; padding: 16px 12px; }
  .main-menu-card .icon-wrapper { width: 48px; height: 48px; }
  .main-menu-card img { width: 48px; height: 48px; }
  .sns-list { gap: 10px; }
  .sns-item { padding: 12px 14px; font-size: 13px; }
}

@media (max-width: 360px) {
  .hero-card { padding: 20px 16px; }
  .hero-text h2 { font-size: 18px; }
  .hero-text p { font-size: 13px; }
  .grid-menu { gap: 10px; }
  .main-menu-card { height: 110px; gap: 8px; }
  .main-menu-card .icon-wrapper { width: 40px; height: 40px; }
  .main-menu-card img { width: 40px; height: 40px; }
  .mainPage .menu-title { font-size: 14px; }
  .sns-list { grid-template-columns: 1fr; }
}