@charset "utf-8";
@import url("@bootstrap.min.css");
@import url("@bootstrap-icons.min.css");
@import url("@sweetalert2.min.css");
@import url("@swiper.min.css");
@import url("@flatpickr.min.css");
@import url("@fancybox.min.css");
@import url("@aos.min.css");
/* ==========================================================================
   0. Variables — 사이트 전체 CSS 변수 (main.css §1 + 레이아웃 변수 통합)
   ========================================================================== */
:root {
  /* 아이콘 & 색상 변수 */
  --font-bs: "bootstrap-icons";
  --body-color: #242424;
  --body-cont-color: #666;
  --body-sub-color: #888;
  --bg-color: #fff;
  --bg-primary: #e0e9ff;
  --bg-danger: #ffebeb;
  --border-color: #d4d4d4;
  --border-sub-color: #ddd;
  /* 브랜드 컬러 */
  --primary-color: #00b1ff;
  --primary-rgb: 0, 177, 255;
  --trip-color: #ff9800;
  --trip-rgb: 255, 152, 0;
  --stay-color: #00a693;
  --stay-rgb: 0, 166, 147;
  --dish-color: #ff00ff;
  --dish-rgb: 255, 0, 255;
  --coupon-color: #ff00ff;
  /* 상태 컬러 */
  --danger-rgb: 223, 71, 89;
  --success-rgb: 66, 186, 150;
  --info-rgb: 124, 105, 239;
  /* Z-Index 시스템 */
  --z-header: 1030;
  --z-search: 1040;
  --z-overlay: 1999;
  --z-offcanvas: 2300;
  --z-nav: 2100;
  /* 레이아웃 계산 */
  --header-h-default: 94px;
  --header-h-scroll: 78px;
  --map-gap: 24px;
}
/* ==========================================================================
   1. Base Reset (main.css §1)
   ========================================================================== */
.cls-1 { fill: #fff; }
.cls-2 { fill: #00a693; }
.cls-3 { fill: #ff9800; }
.cls-4 { fill: #f0f; }
.cls-5 { fill: #00b1ff; }
body {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--body-color);
  font-size: 15px;
  margin: 0;
  background-color: var(--bg-color);
}
a {
  cursor: pointer;
  text-decoration: none;
  color: var(--body-color);
  transition: all 0.2s ease;
}
a:hover {
  color: var(--body-color);
  text-decoration: none;
}
img {
  height: auto;
  max-width: 100%;
  border: none;
  outline: none;
}
.wrap {
  margin: 0 auto;
  max-width: 1920px;
  position: relative;
}
.bg-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* ==========================================================================
   2. Layout Container (main.css §2)
   ========================================================================== */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* ==========================================================================
   §3 Header & Navigation — 흰 배경 기본값 (index.css 의 body.page-main 이 덮어씀)
   ========================================================================== */

.header {
  position: fixed;
  z-index: var(--z-header);
  width: 100%;
  left: 0;
  top: 0;
  height: var(--header-h-default);
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.2s ease;
}
.header .header-inner {
  max-width: 1320px;
  padding: 0 20px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

/* Logo */
.header .logo .logo-white,
.header .logo .logo-color {
  height: 36px;
  display: block;
  transition: all 0.3s ease;
}
.header .logo .logo-white {
  opacity: 0;
}
.header .logo .logo-color {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}
body.is-scrolled .header .logo .logo-color {
  height: 32px;
}

/* GNB Desktop */
.header .gnb-menu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .gnb-menu > ul {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header .gnb-menu .gnb-link {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #222;
}
.header .gnb-menu .gnb-content {
  display: flex;
  align-items: center;
  position: relative;
}
.header .gnb-menu .gnb-content::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #222;
  transition: width 0.3s ease;
}
.header .gnb-menu .gnb-link:hover .gnb-content::after,
.header .gnb-menu .gnb-link.active .gnb-content::after {
  width: calc(100% + 8px);
}
.header .gnb-menu .gnb-icon {
  height: 40px;
  margin-right: 10px;
}
.header .gnb-menu li.gnb-active .gnb-content::after {
  width: calc(100% + 8px);
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  bottom: -24px;
  display: block;
  transition: bottom 0.3s ease;
}
.header .gnb-menu li.gnb-active .gnb-link {
  font-weight: 700;
  color: var(--body-color);
}
body.is-scrolled .header .gnb-menu li.gnb-active .gnb-content::after {
  bottom: -16px;
}

/* Util Buttons */
.header .util-top .btn-inquiry {
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 38px;
  background-color: #444;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  transition: background-color 0.2s ease;
}
.header .util-top .btn-inquiry:hover {
  background-color: var(--body-color);
}
.header .util-top .btn-inquiry::after {
  content: "\00a0문의";
}
.header .util-top .icon-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #ededed;
  color: var(--body-color);
  border-radius: 50%;
  font-size: 24px;
  transition: all 0.2s ease;
}
.header .util-top .icon-box a:hover {
  background-color: #444;
  color: #fff;
}

/* Sticky / Scrolled */
.header.sticky,
.header.scrolled {
  top: 0;
  height: var(--header-h-scroll);
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header.sticky .logo .logo-white,
.header.scrolled .logo .logo-white {
  opacity: 0;
}
.header.sticky .logo .logo-color,
.header.scrolled .logo .logo-color {
  opacity: 1;
}
.header.sticky .logo .logo-white,
.header.sticky .logo .logo-color,
.header.scrolled .logo .logo-white,
.header.scrolled .logo .logo-color {
  height: 32px;
}
.header.sticky .gnb-menu .gnb-link,
.header.scrolled .gnb-menu .gnb-link {
  color: #222;
}
.header.sticky .gnb-menu .gnb-content::after,
.header.scrolled .gnb-menu .gnb-content::after {
  background-color: #222;
  bottom: -16px;
}
.header.sticky .util-top .icon-box a,
.header.scrolled .util-top .icon-box a {
  background-color: #ededed;
  color: var(--body-color);
}
.header.sticky .util-top .icon-box a:hover,
.header.scrolled .util-top .icon-box a:hover {
  background-color: #444;
  color: #fff;
}

.safe-area-bottom {
  padding-bottom: env(safe-area-inset-bottom);
}

/* Tablet (992px ~ 1280px) */
@media (max-width: 1280px) {
  .header .gnb-menu {
    width: 32vw;
    min-width: 180px;
  }
  .header .gnb-menu > ul {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }
  .header .gnb-menu .gnb-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .header .gnb-menu .gnb-content span {
    white-space: nowrap;
  }
  .header .gnb-menu .gnb-icon {
    margin-right: 0;
    margin-bottom: 6px;
  }
  .header .gnb-menu .gnb-link {
    padding: 10px 0;
  }
  .header .gnb-menu .gnb-content::after {
    bottom: -10px;
  }
  .header .gnb-menu li.gnb-active .gnb-content::after {
    bottom: -10px;
  }
  .header.sticky .gnb-menu .gnb-icon,
  .header.scrolled .gnb-menu .gnb-icon {
    height: 36px;
    margin-bottom: 2px;
  }
  .header.sticky .gnb-menu .gnb-content span,
  .header.scrolled .gnb-menu .gnb-content span {
    font-size: 14px;
  }
  .header.sticky .gnb-menu .gnb-content::after,
  .header.scrolled .gnb-menu .gnb-content::after {
    bottom: -7px;
  }
  body.is-scrolled .header .gnb-menu li.gnb-active .gnb-content::after {
    bottom: -12px;
  }
}
@media (max-width: 991px) {
  .header .util-top .btn-inquiry {
    padding: 0 15px;
  }
  .header .util-top .btn-inquiry::after {
    content: "";
  }
}

/* Mobile (max-width: 767px) — 서브 페이지 기준 (index.css 가 덮어씀) */
@media (max-width: 767px) {
  .header {
    height: 78px;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .header .header-inner {
    padding: 0 !important;
  }
  .header.sticky,
  .header.scrolled {
    height: 78px;
    background-color: #fff;
  }

  /* Mobile Logo */
  .header .logo {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    transition: top 0.3s ease;
  }
  .header .logo .logo-white {
    height: 32px;
    opacity: 0;
  }
  .header .logo .logo-color {
    display: none;
    opacity: 0;
  }
  .header .logo .logo-mobile {
    opacity: 1;
    height: 32px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.2s;
    overflow: visible;
  }

  /* Logo Animation Parts */
  .header .logo .logo-mobile .logo-part {
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: both;
    animation-play-state: running;
  }
  .header .logo .logo-mobile #part-top-left {
    animation-name: slideInTopLeft;
    animation-delay: 0s;
  }
  .header .logo .logo-mobile #part-top-right {
    animation-name: slideInTopRight;
    animation-delay: 0.1s;
  }
  .header .logo .logo-mobile #part-bottom-left {
    animation-name: slideInBottomLeft;
    animation-delay: 0.2s;
  }
  .header .logo .logo-mobile #part-bottom-right {
    animation-name: slideInBottomRight;
    animation-delay: 0.3s;
  }

  /* Mobile Side Menu Button */
  .side-menu-btn {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    color: #333;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: color 0.2s, top 0.3s ease;
  }
  .side-menu-btn i {
    font-size: 28px;
  }

  /* Mobile GNB (In-Header) */
  .header .gnb-menu {
    display: block !important;
    position: absolute;
    left: 0 !important;
    width: 100% !important;
    bottom: 0;
    top: auto !important;
    transform: none !important;
    z-index: 10;
  }
  .header .gnb-menu > ul {
    width: 100%;
    gap: 0 !important;
    padding: 0 0 10px 0 !important;
    margin: 0 !important;
    justify-content: space-between;
    transition: padding 0.4s ease;
  }
  .header.sticky .gnb-menu > ul,
  .header.scrolled .gnb-menu > ul {
    padding-bottom: 14px !important;
  }
  .header .gnb-menu > ul > li {
    flex: 1 1 25% !important;
    width: 25%;
    text-align: center;
    justify-content: center;
    display: flex;
  }
  .header .gnb-menu .gnb-link {
    padding: 0;
    color: #333;
    flex-direction: column;
    width: 100%;
  }
  .header.sticky .gnb-menu .gnb-link,
  .header.scrolled .gnb-menu .gnb-link {
    color: #333;
  }
  .header .gnb-menu .gnb-icon {
    height: 38px;
    width: auto;
    display: none;
  }
  .header.sticky .gnb-menu .gnb-icon,
  .header.scrolled .gnb-menu .gnb-icon {
    display: none !important;
  }
  .header .gnb-menu .gnb-content span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
  }
  .header .gnb-menu .gnb-content::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease, background-color 0.2s;
  }
  .header .gnb-menu .gnb-link:hover .gnb-content::after,
  .header .gnb-menu .gnb-link.active .gnb-content::after {
    width: 38px;
  }
  .header.sticky .gnb-menu .gnb-content::after,
  .header.scrolled .gnb-menu .gnb-content::after {
    background-color: #333;
    bottom: -12px;
  }
  .header .gnb-menu li.gnb-active .gnb-content::after {
    width: 38px;
    background-color: #333;
    bottom: -12px;
  }
  .header .gnb-menu li.gnb-active .gnb-link {
    font-weight: 700;
  }
  .header .util-top {
    display: none;
  }
}

/* Logo Animations */
@keyframes slideInTopLeft {
  from { transform: translate(-80px, -80px); opacity: 0; }
  to   { transform: translate(0, 0);          opacity: 1; }
}
@keyframes slideInTopRight {
  from { transform: translate(80px, -80px); opacity: 0; }
  to   { transform: translate(0, 0);         opacity: 1; }
}
@keyframes slideInBottomLeft {
  from { transform: translate(-80px, 80px); opacity: 0; }
  to   { transform: translate(0, 0);         opacity: 1; }
}
@keyframes slideInBottomRight {
  from { transform: translate(80px, 80px); opacity: 0; }
  to   { transform: translate(0, 0);        opacity: 1; }
}
/* ==========================================================================
   3.9 서브페이지 공통 — 헤더·로고를 처음부터 스크롤 상태로 고정
       (index.php의 투명 헤더와 반대)
   ========================================================================== */
@media (min-width: 768px) {
  .header .logo .logo-white,
  .header .logo .logo-color {
    height: 36px;
  }
}
@media (max-width: 767px) {
  .header {
    height: var(--header-h-scroll);
  }
  .header .gnb-menu > ul {
    padding-bottom: 14px !important;
  }
  .header .gnb-menu .gnb-content::after {
    bottom: -12px;
  }
}

/* ==========================================================================
   4. Footer (main.css §10)
   ========================================================================== */
.copy-section {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  margin-top: 0;
  background-color: #161616;
}
body.page-main:not(.page-loaded) .copy-section {
  visibility: hidden;
}
.copy-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.h-380 {
  height: 380px;
}
.copy-info p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 9px;
  line-height: 1.9;
  color: #fff;
  opacity: 0.9;
}
.btn-circle-black {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: transform 0.2s;
}
.btn-circle-black:hover {
  color: #fff;
  transform: scale(1.1);
}
.btn-kakao img {
  height: 46px;
  width: auto;
  transition: transform 0.2s;
}
.btn-kakao:hover img {
  transform: scale(1.05);
}
.logo-group {
  gap: 17px;
}
.copy-logo-icon {
  width: 38px;
  height: auto;
}
.copy-logo-text {
  height: 22px;
  margin-bottom: 0;
}
.logo-group-side {
  gap: 12px;
}
.copy-slogan {
  margin-top: 30px;
  color: #fff;
}
.copy-slogan p {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
}
.copy-slogan .author {
  font-size: 14px;
  display: block;
  margin-top: 15px;
  opacity: 0.8;
}
.copy-menu li {
  margin-bottom: 14px;
}
.copy-menu li a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.copy-menu li a:hover {
  opacity: 1;
  text-decoration: underline;
}
.copy-col {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ver-line {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120px;
  background-color: #fff;
  opacity: 0.4;
}
.hor-line {
  position: absolute;
  top: 380px;
  left: 20px;
  right: 20px;
  width: auto;
  height: 1px;
  background-color: #fff;
  opacity: 0.3;
  z-index: 1;
}
.social-btns {
  position: absolute;
  top: 380px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.sc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: transform 0.2s;
}
.sc-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}
.sc-btn.twitter { background-color: var(--primary-color); }
.sc-btn.blog    { background-color: var(--stay-color); }
.sc-btn.youtube { background-color: var(--coupon-color); }
.sc-btn.insta   { background-color: var(--trip-color); }
.copy-bottom {
  height: 100px;
}
.bottom-left {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
}
.bottom-right ul {
  margin: 0;
  padding: 0;
  align-items: center;
}
.gap-custom {
  gap: 27px;
}
.bottom-right a {
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
}
.bottom-right .sep {
  font-size: 12px;
  opacity: 0.5;
  cursor: default;
}
@media (min-width: 992px) {
  .copy-col.first,
  .copy-col.third {
    justify-content: flex-start !important;
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .copy-section {
    height: auto;
    padding: 60px 0 40px;
  }
  .h-380 {
    height: auto;
    flex-direction: column;
  }
  .copy-col {
    height: auto;
    padding: 0 0 40px 0;
    margin-bottom: 40px;
    justify-content: center !important;
  }
  .ver-line {
    display: none;
  }
  .copy-col::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
  }
  .copy-col:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .copy-col:last-child::after {
    display: none;
  }
  .hor-line {
    position: static;
    top: auto;
    left: 10px;
    right: 10px;
    width: auto;
    margin: 40px 0 60px 0;
    display: block !important;
    opacity: 0.3;
  }
  .social-btns {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    justify-content: center;
    margin-top: -78px;
    margin-bottom: 40px;
  }
  .copy-bottom {
    height: auto;
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }
  .bottom-left {
    font-size: 12px !important;
    margin-bottom: 0;
    opacity: 0.6;
  }
  .bottom-right ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .bottom-right a {
    font-size: 10px !important;
  }
  .bottom-right .sep {
    display: none;
  }
  .copy-slogan {
    margin-top: 30px;
  }
}
/* ==========================================================================
   5. Offcanvas & Side Menu (main.css §11)
   ========================================================================== */
.offcanvas.offcanvas-end {
  width: 320px !important;
  z-index: var(--z-offcanvas) !important;
}
.offcanvas-backdrop {
  z-index: var(--z-overlay) !important;
}
.offcanvas-header {
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
}
.offcanvas-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #222;
  display: flex;
  align-items: center;
  gap: 0;
}
.offcanvas-title i {
  width: 24px;
  height: 24px;
  background-color: #fff;
  color: #242424;
  border: 1px solid #b4b4b4;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  margin-right: 10px;
  flex-shrink: 0;
}
#wishlistMenu .offcanvas-title i { color: var(--coupon-color);  border-color: var(--coupon-color);  }
#couponMenu   .offcanvas-title i { color: var(--trip-color);    border-color: var(--trip-color);    }
#nearMeMenu   .offcanvas-title i { color: var(--primary-color); border-color: var(--primary-color); }
#profileMenu  .offcanvas-title i { color: var(--stay-color);    border-color: var(--stay-color);    }
#noticeMenu   .offcanvas-title i { color: #666;                 border-color: #666;                 }
#mobileMapOffcanvas .offcanvas-title i {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
#mobileMapOffcanvas .offcanvas-title .breadcrumb-arrow {
  width: auto;
  height: auto;
  background: none;
  border: none;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  color: #888;
  margin-right: 2px;
  margin-left: 2px;
  position: static;
  flex-shrink: initial;
}
.swal2-container {
  z-index: 2200 !important;
}
.offcanvas-bottom#nearMeMenu,
.offcanvas-bottom#wishlistMenu,
.offcanvas-bottom#couponMenu,
.offcanvas-bottom#profileMenu,
.offcanvas-bottom#noticeMenu {
  z-index: 2100 !important;
  border-top: 1px solid #ddd;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .offcanvas-bottom#nearMeMenu,
  .offcanvas-bottom#wishlistMenu,
  .offcanvas-bottom#couponMenu,
  .offcanvas-bottom#profileMenu,
  .offcanvas-bottom#noticeMenu {
    width: 95% !important;
    max-width: 1320px !important;
    height: 90% !important;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 0 !important;
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}
.nav-hover-link {
  transition:
    transform 0.2s ease-out,
    color 0.2s ease;
  display: flex !important;
  align-items: center;
}
.nav-hover-link::before {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  background-color: #666;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}
.nav-hover-link:hover {
  transform: translateX(5px);
  color: var(--primary-color) !important;
}
.nav-hover-link:hover::before {
  background-color: var(--primary-color);
}
.lang-select-btn {
  transition: background-color 0.2s ease;
  cursor: pointer;
  font-size: 14px;
}
.lang-select-btn:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
/* ==========================================================================
   5.1 Side Menu Components
   ========================================================================== */
.offcanvas-logo        { height: 32px; }
.offcanvas-body-full   { min-height: 100%; }
.offcanvas-full-height { height: 100vh !important; }

.side-desc          { font-size: 15px; line-height: 1.6; }
.side-desc strong   { font-size: 16px; color: #000; }
.side-nav-name      { font-size: 16px; font-weight: 500; }
.side-slogan        { font-size: 14px; font-family: serif; }

.btn-side-primary {
  background-color: var(--primary-color);
  padding: 10px 0;
  border: none;
  font-size: 16px;
  font-weight: 600;
}
.btn-side-primary:hover { background-color: #0099d6; color: #fff; }
.btn-side-dark {
  background-color: #444444;
  padding: 10px 0;
  border: none;
  font-size: 16px;
  font-weight: 500;
}
.btn-side-dark:hover { background-color: #333; color: #fff; }
/* ==========================================================================
   6. Bottom Navigation (main.css §12)
   ========================================================================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0) 80%
  );
  z-index: var(--z-nav);
  padding-bottom: env(safe-area-inset-bottom);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 12px;
}
.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ebebeb;
  margin-bottom: 1px;
  box-sizing: border-box;
  border: 1px solid #b4b4b4;
  transition: all 0.3s ease;
}
.nav-icon {
  font-size: 14px;
  color: #242424;
  line-height: 0;
  display: inline-block;
  transition: all 0.3s ease;
}
.nav-text {
  font-size: 10px;
  font-weight: 400;
  color: #666;
  line-height: 1;
}
.nav-item.active {
  transform: translateY(-8px);
}
.nav-item.active .nav-text {
  display: none;
}
.nav-item.active .nav-icon-wrap {
  width: 38px;
  height: 38px;
  margin-bottom: 0;
  background-color: #fff;
  border: 1px solid var(--primary-color);
}
.nav-item.active .nav-icon {
  font-size: 18px;
  color: var(--primary-color);
  line-height: 0;
}
.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  animation: underlineAppear 0.3s ease-out;
}
.nav-item:active .nav-icon-wrap {
  transform: scale(0.9);
}
@keyframes underlineAppear {
  from { opacity: 0; width: 0; }
  to   { opacity: 1; width: 12px; }
}
/* ==========================================================================
   7. Modal & Auth (main.css)
   ========================================================================== */
.custom-auth-modal .modal-content {
  border-radius: 32px;
  overflow: hidden;
}
.custom-auth-modal.fade .modal-dialog {
  transform: none !important;
  transition: opacity 0.15s ease-in-out;
}
@media (max-width: 767px) {
  .custom-auth-modal .modal-content {
    border-radius: 0 !important;
  }
}
.custom-auth-modal .modal-header {
  border-bottom: 1px solid #ebebeb;
}
.btn-auth-back {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  color: #222;
  z-index: 10;
}
.auth-main-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #222;
}
.auth-sub-title {
  font-size: 14px;
  word-break: keep-all;
}
.auth-input-group {
  border: 1px solid #b0b0b0;
  border-radius: 12px;
  overflow: hidden;
}
.auth-input-box {
  padding: 10px 14px;
  background-color: #fff;
  position: relative;
}
.auth-input-box:focus-within {
  outline: 2px solid #222;
  border-radius: 12px;
  z-index: 2;
}
.auth-input-box label {
  font-size: 12px;
  color: #717171;
  margin-bottom: 2px;
  display: block;
}
.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: opacity 0.2s ease;
}
.btn-social:hover {
  opacity: 0.9;
}
.btn-social .social-icon {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  pointer-events: none;
  object-fit: contain;
}
.btn-naver .social-icon { width: 14px; height: 14px; }
.btn-social.btn-kakao { background-color: #fee500; color: #391b1b; }
.btn-social.btn-naver { background-color: #03c75a; color: #ffffff; }
.btn-social.btn-google {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  color: #333333;
}
.auth-step {
  display: none;
  animation: fadeInStep 0.3s ease forwards;
}
.auth-step.active {
  display: block;
}
@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.custom-check .form-check-input {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  cursor: pointer;
}
.custom-check .form-check-input:checked {
  background-color: #222;
  border-color: #222;
}
.custom-check .form-check-label {
  padding-top: 2px;
  cursor: pointer;
}
.auth-policy-content {
  max-height: 66vh;
  overflow-y: auto;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 8px;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.auth-agree-badge { font-size: 13px; }
.auth-agree-link  { font-size: 13px; }
.auth-verified-badge { font-size: 11px; }
.auth-code-btn { min-width: 90px; }
.auth-timer { min-width: 60px; text-align: right; }
.auth-hint { font-size: 12px; letter-spacing: -0.3px; }
.auth-step-bottom { height: 30px; }
#stepSuccess .bi-check-circle-fill { font-size: 60px; }
.auth-divider { opacity: 0.2; }
.btn-auth-submit        { background-color: #444; color: #fff; }
.btn-auth-submit:hover  { background-color: #333; color: #fff; }
.btn-auth-submit .social-icon { font-size: 16px; }
.find-id-type-icon { width: 16px; height: 16px; }
.find-id-date { font-size: 12px; }
/* Profile Offcanvas */
#profileMainView     { transition: transform 0.3s ease; }
#profileWithdrawView { left: 100%; transition: left 0.3s ease; }
.profile-avatar      { width: 60px; height: 60px; font-size: 24px; }
.profile-sns-badge   { width: 20px; height: 20px; }
#btnSaveNickname     { background-color: #444; }
#currentPhoneInput   { color: #666; }
#btnTogglePhoneChange { font-size: 13px; }
.profile-intro-p { font-size: 15px; line-height: 1.6; }
.profile-intro-p strong { font-size: 16px; color: #000; }
.profile-login-btn {
  background-color: var(--primary-color);
  padding: 10px 0;
  border: none;
  font-size: 16px;
  font-weight: 600;
}
.profile-login-btn:hover          { background-color: #0099d6; color: #fff; }
.profile-icon-lg                  { font-size: 40px; }
.profile-coupon-action-btn        { background-color: var(--coupon-color); }
.profile-coupon-action-btn:hover  { background-color: #d900d9; color: #fff; }
.profile-coupon-title             { font-size: 18px; }
.profile-coupon-badge-active      { background-color: var(--primary-color); }
.profile-coupon-wait-time         { font-size: 18px; color: var(--primary-color); }
.profile-coupon-use-time          { font-size: 21px; letter-spacing: 2px; color: var(--primary-color); }
.profile-coupon-note              { font-size: 13px; }
.profile-coupon-use-date          { font-size: 12px; }
.profile-update-btn               { background-color: #666; font-size: 16px; }
.profile-update-btn:hover         { background-color: #555; color: #fff; }
.profile-action-link              { font-size: 13px; }
.profile-partnership-btn {
  background-color: #444;
  padding: 10px 0;
  border: none;
  font-size: 16px;
  font-weight: 500;
}
.profile-partnership-btn:hover { background-color: #333; color: #fff; }
.profile-quote                    { font-size: 14px; font-family: serif; }
.profile-withdraw-icon            { font-size: 40px; }
.profile-withdraw-desc            { font-size: 14px; line-height: 1.6; word-break: keep-all; }
.profile-withdraw-hint            { font-size: 13px; }
.profile-withdraw-textarea        { font-size: 13px; resize: none; }
.profile-withdraw-btn             { background-color: #df4759; font-size: 14px; }
.profile-withdraw-btn:hover       { background-color: #c73a4b; color: #fff; }
.profile-withdraw-spacer          { height: 40px; }
/* ==========================================================================
   8. Map Controls (공통 지도 컨트롤 버튼)
   ========================================================================== */
.map-control {
  position: absolute;
  top: 54px;
  right: 20px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-control .btn {
  width: 36px;
  height: 36px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #666;
  transition: all 0.2s ease;
  outline: none;
  cursor: pointer;
}
.map-control .btn:hover {
  background-color: #f8f8f8;
  color: #222;
}
.map-control .btn:active {
  background-color: #eee;
  transform: scale(0.95);
}
.map-control .my-location {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.map-control .my-location:hover {
  background-color: #e6f7ff;
  color: #0094d4;
}
.map-control .my-location.active {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
  border-color: #0088cc;
}
.map-control .my-location.active:hover {
  background-color: #0099dd;
}
.map-item-list {
  position: absolute;
  left: 0;
  bottom: 9px;
  z-index: 9;
  overflow: hidden;
  width: 100%;
}
.map-item-list .swiper-slide {
  width: 280px;
  border: 3px solid transparent;
  border-radius: 25px;
  overflow: hidden;
}
.map-item-list .swiper-slide-active {
  border: 3px solid var(--primary-color);
}

/* ==========================================================================
   §9 Search Bar
   ========================================================================== */

.search-bar {
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #ffffff 0%, #fbfbfb 100%);
  border: 1px solid #ced4da;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-radius: 40px;
  width: 680px;
  height: 66px;
  position: fixed;
  top: 111px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-search);
  transition:
    top 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.search-bar.active-mode {
  background: #ebebeb;
  box-shadow: none;
}
.search-item {
  position: relative;
  height: 100%;
  padding: 0 45px 0 20px;
  border-radius: 32px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
#locationItem {
  flex: 30;
  padding-left: 30px;
}
#typeItem {
  flex: 37;
}
#keywordItem {
  flex: 50;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right: 45px;
  cursor: text;
}
.search-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background-color: #ddd;
  transition: opacity 0.2s;
}
.search-item:hover::before,
.search-item:hover + .search-item::before,
.search-item.active::before,
.search-item.active + .search-item::before {
  opacity: 0;
}
.search-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.search-item.active {
  background-color: #fff !important;
  border-color: #ddd;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
.search-bar .search-label {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
}
.search-bar .search-text {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--primary-color);
  outline: none;
}
.search-text.has-value {
  color: var(--primary-color) !important;
  font-weight: 700;
}
.search-item.has-text .search-input {
  color: var(--primary-color);
  font-weight: 700;
}
.search-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 8px;
  z-index: 20;
  transition: all 0.3s ease;
}
.search-btn i {
  color: #fff;
  font-size: 17px;
}
.search-bar .btn-clear {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-item.is-selected:hover .btn-clear,
.search-item.has-text:hover .btn-clear {
  opacity: 1;
  visibility: visible;
}
.search-bar .btn-clear:hover {
  color: #333;
}
#keywordItem .btn-clear {
  right: 65px;
  transition: right 0.3s ease;
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 100;
  cursor: default;
  padding: 15px 0;
  box-sizing: border-box;
  overflow: hidden;
}
.search-item.active .search-dropdown {
  display: block;
  animation: fadeInDown 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.drop-list-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drop-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 1px solid #f5f5f5;
}
.drop-list-item:last-child {
  border-bottom: none;
}
.drop-list-item:hover {
  background-color: #f8f9fa;
}
.item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-text {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  transition: all 0.2s;
}
.item-icon-img {
  width: 32px;
  height: auto;
  object-fit: contain;
}
.item-icon-bi {
  font-size: 24px;
  color: #aaa;
  transition: color 0.2s;
}
.item-check {
  font-size: 22px;
  color: var(--primary-color);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s;
}
.drop-list-item.selected .item-text {
  font-weight: 500;
  color: #242424;
}
.drop-list-item.selected .item-check {
  opacity: 1;
  transform: scale(1);
}
.drop-list-item.selected .item-icon-bi {
  color: var(--primary-color);
}
.type-scroll-box {
  max-height: 360px;
  overflow-y: auto;
}
.type-scroll-box::-webkit-scrollbar {
  width: 4px;
}
.type-scroll-box::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}
.type-section-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f5f5f5;
}
.type-section-header:hover {
  background-color: #f8f9fa;
}
.type-section-header .item-check {
  position: absolute;
  right: 15px;
  font-size: 22px;
  color: var(--primary-color);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s;
}
.type-section-header.selected .item-check {
  opacity: 1;
  transform: scale(1);
}
.cat-badge {
  display: inline-block;
  padding: 5px 25px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.cat-badge.trip {
  background-color: var(--trip-color);
}
.cat-badge.stay {
  background-color: var(--stay-color);
}
.cat-badge.dish {
  background-color: var(--dish-color);
}
.cat-badge.loc-all {
  background-color: var(--primary-color);
}
.loc-badge-item {
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 15px;
}
.loc-badge-item .item-check {
  position: absolute;
  right: 15px;
}
.loc-badge-item {
  position: relative;
}
.dropdown-divider {
  height: 1px;
  background-color: #f1f1f1;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .search-bar.scrolled {
    top: 86px;
    height: 48px;
  }
  .search-bar.scrolled .search-label {
    display: none;
  }
  .search-bar.scrolled .search-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    right: 6px;
  }
  .search-bar.scrolled .search-btn i {
    font-size: 17px !important;
  }
  .search-bar.scrolled .search-text,
  .search-bar.scrolled .search-input {
    font-size: 14px;
  }
  .search-bar.scrolled .search-item:not(:first-child)::before {
    height: 20px;
  }
  .search-bar.scrolled #keywordItem .btn-clear {
    right: 50px;
  }
}
@media (max-width: 1280px) {
  .search-bar {
    width: 580px;
  }
}
@media (max-width: 767px) {
  .search-bar {
    top: 85px;
    right: 10px;
    width: calc(100% - 20px);
    height: 46px;
    z-index: var(--z-search);
    left: auto !important;
    transform: none !important;
    overflow: visible !important;
    transition:
      top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
      width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
      border-radius 0.4s ease;
  }
  .search-bar.compact {
    top: 96px !important;
    width: 48px !important;
    padding: 0;
    cursor: pointer;
  }
  .search-bar.scrolled {
    height: 46px !important;
    overflow: visible !important;
    top: 85px !important;
  }
  .search-bar.compact .search-item,
  .search-bar.compact .search-dropdown,
  .search-bar.compact #locationItem,
  .search-bar.compact #typeItem,
  .search-bar.compact #keywordItem {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .search-bar.compact .search-item::before {
    opacity: 0;
  }
  .search-bar.expanded {
    width: calc(100% - 20px) !important;
    cursor: default;
    overflow: visible !important;
  }
  .search-bar.expanded .search-item,
  .search-bar.expanded .search-dropdown,
  .search-bar.expanded #locationItem,
  .search-bar.expanded #typeItem,
  .search-bar.expanded #keywordItem {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.4s ease 0.2s;
  }
  .search-bar .search-label {
    display: none !important;
  }
  .search-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    background-color: var(--primary-color) !important;
  }
  .search-text,
  .search-input {
    width: 100%;
    text-align: left;
    padding: 0;
    font-size: 14px !important;
    font-weight: 500;
  }
  .search-text:not(.has-value) {
    font-size: 0 !important;
  }
  .search-input {
    color: var(--primary-color);
  }
  #locationItem .search-text:not(.has-value)::before {
    content: "여행지";
    color: #666;
    font-weight: 400;
    font-size: 14px;
  }
  #typeItem .search-text:not(.has-value)::before {
    content: "카테고리";
    color: #666;
    font-weight: 400;
    font-size: 14px;
  }
  .search-input::placeholder {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    opacity: 1;
  }
  .search-item {
    padding: 0;
    min-width: 0;
    align-items: flex-start;
    justify-content: center;
  }
  #locationItem {
    flex: 28;
    padding-left: 12px;
  }
  #typeItem {
    flex: 37;
    padding-left: 10px;
  }
  #keywordItem {
    flex: 35;
    padding-left: 10px;
    padding-right: 50px;
  }
  #keywordItem .btn-clear {
    right: 50px;
  }
  .search-item:not(:first-child)::before {
    height: 18px;
    left: -1px;
    opacity: 1;
  }
  .search-dropdown {
    width: 100%;
    min-width: 200px;
    left: 0;
  }
}

/* ==========================================================================
   §10 Font Weight Utilities
   ========================================================================== */

.fw-300 {
  font-weight: 300 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}

/* ==========================================================================
   §11 Font Size Utilities
   ========================================================================== */

.fs-11 { font-size: 11px !important; }
.fs-13 { font-size: 13px !important; }
.fs-13-lh-15 { font-size: 13px !important; line-height: 1.5 !important; }
.fs-14 { font-size: 14px !important; }
.fs-15 { font-size: 15px !important; }
.fs-20 { font-size: 20px !important; }
.modal-title-18 { font-size: 18px !important; }

/* ==========================================================================
   §12 Flex & Layout Utilities
   ========================================================================== */

.flex-1          { flex: 1; }
.spacer-12       { height: 12px; flex-shrink: 0; }
.cursor-pointer  { cursor: pointer; }

/* ==========================================================================
   §13 Component Helpers
   ========================================================================== */
.user-avatar-lg    { width: 60px; height: 60px; font-size: 24px; }

/* ==========================================================================
   Coupon Offcanvas — View Container & UI Styles
   (global: coupon offcanvas opens from item.php, coupon.php, profile, etc.)
   ========================================================================== */

#btnBackToCouponList {
  outline: none;
  box-shadow: none;
}

/* List View */
#couponListViewContainer {
  transition: transform 0.3s ease;
  transform: translateX(0);
  background: #f8f9fa;
  z-index: 1;
}

#couponCategoryGroup {
  max-width: 400px;
}

#couponSectionTitle {
  font-size: 18px;
  color: #242424;
  border-bottom: var(--bs-border-width) solid var(--bs-border-color);
}

/* Detail View */
#couponDetailViewContainer {
  left: 100%;
  transition: left 0.3s ease;
  z-index: 2;
}

#couponDetailLoading {
  z-index: 10;
}

/* Use View */
#couponUseViewContainer {
  left: 100%;
  transition: left 0.3s ease;
  z-index: 15;
  background-color: #f0f2f5;
}

#useCoName { font-size: 14px; }
#usePassText { font-size: 15px; }

/* Expired View */
#couponExpiredViewContainer {
  left: 100%;
  transition: left 0.3s ease;
  z-index: 4;
}

/* Guest View */
#couponGuestView {
  background: #f8f9fa;
  transition: transform 0.3s ease;
}

/* Apply View */
#couponApplyViewContainer {
  left: 100%;
  transition: left 0.3s ease;
  z-index: 3;
}

#cpDateRange {
  font-size: 16px;
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  color: #333;
  letter-spacing: -0.5px;
}

#cpAgreeEvent {
  width: 18px;
  height: 18px;
  border-color: #ccc;
}

#btnOpenCouponApply {
  background-color: var(--primary-color);
  padding: 12px 0;
  border: none;
  font-size: 16px;
  font-weight: 600;
}

#btnSubmitCouponApply {
  background-color: var(--coupon-color);
  font-size: 16px;
  border: none;
}

.coupon-pass-guide {
  font-size: 13px;
  line-height: 1.5;
}

/* Coupon Detail Content — Map & Sidebar overrides */

#couponDetailContent .map-wrapper {
  height: 360px;
}

#cpDetailMap {
  width: 100%;
  height: 100%;
  pointer-events: auto;
  background-color: #e0e0e0;
}

#couponDetailContent .map-control {
  top: 20px;
  right: 20px;
  pointer-events: auto;
}

#couponDetailContent .map-btn-group .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 15px;
  width: 180px;
  padding: 10px 12px;
  border-radius: 24px;
  transition: all 0.2s ease;
}

#couponDetailContent .map-btn-group .btn img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  margin-right: 10px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  #couponDetailContent .map-btn-group .btn {
    flex-direction: column;
    width: auto;
    flex: 1;
    padding: 10px 4px;
    border-radius: 16px;
  }
  #couponDetailContent .map-btn-group .btn img {
    margin-right: 0;
    margin-bottom: 6px;
  }
}

#couponDetailContent .cp-sticky-sidebar .badge {
  font-size: 14px;
}

#couponDetailContent .cp-sticky-sidebar .border-top li {
  font-size: 14px;
}

#couponDetailContent .check-list .bi-check-lg {
  font-size: 16px;
  color: var(--trip-color);
}

#couponDetailContent .check-list li span {
  font-size: 14px;
}

.copy-addr-btn { cursor: pointer; }
.lang-chevron-icon { font-size: 12px; color: #ccc; }
