/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, li {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Util Bar */
.util-bar {
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    color: #666;
}

.util-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
}

.util-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.util-left .divider {
    color: #ddd;
}

.util-right {
    display: flex;
    gap: 16px;
}

.util-right a:hover {
    color: #1a73e8;
}

.util-right .signup {
    color: #1a73e8;
    font-weight: 500;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    color: #1a73e8;
}

.logo a img {
    display: block;
    vertical-align: middle;
    position: relative;
}

.logo span {
    color: #333;
}

/* GNB */
.gnb-menu {
    display: flex;
    gap: 8px;
}

.gnb-item {
    position: relative;
}

.gnb-item > a {
    display: block;
    padding: 24px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    transition: color 0.2s;
}

.gnb-item > a:hover {
    color: #1a73e8;
}

.gnb-item.highlight > a {
    color: #e53935;
}

.gnb-sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
}

.gnb-item:hover .gnb-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gnb-sub ul {
    padding: 8px 0;
}

.gnb-sub li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #555;
    transition: all 0.2s;
}

.gnb-sub li a:hover {
    background: #f5f5f5;
    color: #1a73e8;
}

.header-util {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.search-btn:hover {
    background: #f5f5f5;
}

/* Main Visual */
.main-visual {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.visual-slider {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 1;
}

.slide-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #1a73e8;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.slide-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s;
}

.slide-btn:hover {
    background: #1a73e8;
    color: #fff;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    font-size: 20px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.slider-prev:hover,
.slider-next:hover {
    background: #1a73e8;
    color: #fff;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: #fff;
    width: 24px;
    border-radius: 5px;
}

/* Quick Search */
.quick-search {
    margin-top: -40px;
    position: relative;
    z-index: 100;
}

.search-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 24px 30px;
}

.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

.search-tab {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    border-radius: 4px;
    transition: all 0.2s;
}

.search-tab:hover {
    color: #1a73e8;
}

.search-tab.active {
    background: #1a73e8;
    color: #fff;
}

.search-form {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.form-field {
    flex: 1;
}

.form-field label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.form-field select,
.form-field input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    background: #fff;
    transition: border-color 0.2s;
}

.form-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-field select:focus,
.form-field input:focus {
    outline: none;
    border-color: #1a73e8;
}

/* 출발일 date 필드 */
.date-field {
    position: relative;
    cursor: pointer;
}
.date-field input[type="date"] {
    cursor: pointer;
    color: transparent;
}
.date-field input[type="date"]::-webkit-datetime-edit,
.date-field input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    color: transparent;
}
.date-field input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.date-field .date-placeholder {
    position: absolute;
    left: 14px;
    bottom: 12px;
    font-size: 14px;
    color: #999;
    pointer-events: none;
}
.date-field input[type="date"].has-value {
    color: #333;
}
.date-field input[type="date"].has-value::-webkit-datetime-edit,
.date-field input[type="date"].has-value::-webkit-datetime-edit-fields-wrapper {
    color: #333;
}
.date-field input[type="date"].has-value ~ .date-placeholder {
    display: none;
}

.search-submit {
    height: 44px;
    padding: 0 40px;
    background: #1a73e8;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s;
}

.search-submit:hover {
    background: #1557b0;
}

/* Feature Section */
.feature-section {
    padding: 50px 0;
    background: #fafafa;
}

.feature-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 8px;
    flex: 1;
    border: 1px solid #eee;
}

.feature-icon {
    color: #1a73e8;
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
}

.feature-text p {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

/* Product Section */
.product-section {
    padding: 60px 0;
}

.travelpack-section {
    background: #f0f7ff;
}
.honeymoon-section {
    background: #f9fafb;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.view-all {
    font-size: 14px;
    color: #666;
    transition: color 0.2s;
}

.view-all:hover {
    color: #1a73e8;
}

.product-tabs {
    display: flex;
    gap: 8px;
}

.product-tab {
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: all 0.2s;
}

.product-tab:hover {
    border-color: #1a73e8;
    color: #1a73e8;
}

.product-tab.active {
    background: #1a73e8;
    border-color: #1a73e8;
    color: #fff;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    color: #fff;
}

.card-badge.hot {
    background: #e53935;
}

.card-badge.sale {
    background: #ff9800;
}

.card-badge.new {
    background: #43a047;
}

.wish-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    padding: 0;
    z-index: 2;
}

.product-card:hover .wish-btn {
    opacity: 1;
}

.wish-btn.wishlisted {
    opacity: 1;
}

.wish-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.wish-btn:hover svg {
    stroke: #e53935;
}

/* 상세 페이지 찜 버튼 */
.btn-wish-detail {
    width: 100%;
    height: 48px;
    background: #fff;
    color: #e53935;
    border: 1px solid #e53935;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}
.btn-wish-detail:hover {
    background: #fff5f5;
}
.btn-wish-detail.wishlisted {
    background: #e53935;
    color: #fff;
    border-color: #e53935;
}
.btn-wish-detail.wishlisted svg {
    stroke: #fff;
    fill: #fff;
}
.btn-wish-detail.wishlisted:hover {
    background: #c62828;
    border-color: #c62828;
}

.card-content {
    padding: 16px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

.tag:nth-child(6n+1) { background: #eff6ff; color: #2563eb; }
.tag:nth-child(6n+2) { background: #f0fdf4; color: #16a34a; }
.tag:nth-child(6n+3) { background: #fef3c7; color: #d97706; }
.tag:nth-child(6n+4) { background: #fce7f3; color: #db2777; }
.tag:nth-child(6n+5) { background: #f3e8ff; color: #7c3aed; }
.tag:nth-child(6n+6) { background: #ecfeff; color: #0891b2; }

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-info {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.card-info span {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.card-info span:nth-child(1) { background: #eff6ff; color: #2563eb; }
.card-info span:nth-child(2) { background: #f0fdf4; color: #16a34a; }
.card-info span:nth-child(3) { background: #fef3c7; color: #d97706; }
.card-info span:nth-child(4) { background: #fce7f3; color: #db2777; }
.card-info span:nth-child(5) { background: #f3e8ff; color: #7c3aed; }
.card-info span:nth-child(n+6) { background: #f1f5f9; color: #64748b; }

.card-price {
    margin-bottom: 8px;
}

.card-price .original {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.card-price .current {
    font-size: 18px;
    font-weight: 700;
    color: #e53935;
}

.card-date {
    font-size: 12px;
    color: #888;
}

.more-btn-wrap {
    text-align: center;
    margin-top: 32px;
}

.more-btn {
    display: inline-block;
    padding: 14px 48px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: all 0.2s;
}

.more-btn:hover {
    border-color: #1a73e8;
    color: #1a73e8;
}

/* Promotion Banner */
.promotion-banner {
    padding: 60px 0;
    background: #fff;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 180px);
    gap: 20px;
}

.banner-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}

.banner-item.large {
    grid-row: span 2;
}

.banner-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: #fff;
    z-index: 1;
}

.banner-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    font-size: 11px;
    margin-bottom: 10px;
}

.banner-content h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.banner-item.large .banner-content h3 {
    font-size: 28px;
}

.banner-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* Destination Section */
.destination-section {
    padding: 60px 0;
    background: #fff;
}

.destination-tabs {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.dest-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.dest-tab:hover {
    background: #f5f5f5;
}

.dest-tab.active {
    background: #e3f2fd;
}

.dest-tab img {
    width: 180px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dest-tab:hover img {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.dest-tab span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.destination-cities {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.city-link {
    padding: 10px 24px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
    transition: all 0.2s;
}

.city-link:hover {
    border-color: #1a73e8;
    color: #1a73e8;
    background: #f0f7ff;
}

.city-link-all {
    border-style: dashed;
    color: #888;
}

.city-link-all:hover {
    border-color: #1a73e8;
    color: #1a73e8;
    border-style: solid;
}

/* Destination Modal - 좌우 분할 대형 */
.dest-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}
.dest-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.dest-modal {
    background: #fff;
    border-radius: 24px;
    width: 1100px;
    max-width: 96vw;
    height: 640px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.45);
    transform: translateY(40px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    display: flex;
    flex-direction: row;
}
.dest-modal-overlay.active .dest-modal {
    transform: translateY(0) scale(1);
}
.dest-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.25);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.2s, transform 0.2s;
    line-height: 1;
    backdrop-filter: blur(8px);
}
.dest-modal-close:hover {
    background: rgba(0,0,0,0.5);
    transform: rotate(90deg);
}

/* 왼쪽 패널 - 비주얼 배너 */
.dest-modal-left {
    position: relative;
    width: 42%;
    flex-shrink: 0;
    overflow: hidden;
}
.dest-modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}
.dest-modal-overlay.active .dest-modal-left img {
    transform: scale(1.1);
}
.dest-modal-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.15) 100%);
}
.dest-modal-left-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 36px;
    z-index: 1;
}
.dest-modal-left-text .dest-modal-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.dest-modal-left-text h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.dest-modal-left-text p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* 오른쪽 패널 - 나라 카드 + 버튼 */
.dest-modal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.dest-modal-right-header {
    padding: 28px 32px 0;
    flex-shrink: 0;
}
.dest-modal-right-header h4 {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px;
}
.dest-modal-right-header p {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* 나라 이미지 카드 그리드 */
.dest-modal-body {
    padding: 20px 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    overflow-y: auto;
    flex: 1;
}
.dest-modal-body::-webkit-scrollbar {
    width: 5px;
}
.dest-modal-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}
.dest-region-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dest-region-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.02) 55%);
    transition: background 0.3s;
}
.dest-region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
.dest-region-card:hover::before {
    background: linear-gradient(to top, rgba(26,115,232,0.75) 0%, rgba(26,115,232,0.08) 55%);
}
.dest-region-card-text {
    position: relative;
    z-index: 1;
    padding: 14px 16px;
    width: 100%;
}
.dest-region-card-text span {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.dest-region-card-text small {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    margin-top: 2px;
    font-weight: 400;
}
.dest-card-info { display: flex; gap: 8px; margin-top: 2px; }
.dest-card-rate { font-size: 11px; color: rgba(255,255,255,0.85); font-weight: 500; }
.dest-card-time { font-size: 11px; color: rgba(255,255,255,0.85); font-weight: 500; }
.dest-region-card .card-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}
.dest-region-card .card-arrow svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2.5;
    fill: none;
}
.dest-region-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}
.dest-card-info-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    color: #fff;
    text-decoration: none;
}
.dest-card-info-btn svg { width: 14px; height: 14px; }
.dest-region-card:hover .dest-card-info-btn { opacity: 0.8; transform: translateX(0); }
.dest-card-info-btn:hover { opacity: 1 !important; background: rgba(26,115,232,0.7); }

/* 하단 전체보기 버튼 */
.dest-modal-footer {
    padding: 16px 32px 24px;
    flex-shrink: 0;
}
.dest-modal-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: #1a73e8;
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.dest-modal-all:hover {
    background: #1557b0;
    color: #fff;
    transform: translateY(-1px);
}
.dest-modal-all svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

/* 모달 반응형 - 태블릿 */
@media (max-width: 900px) {
    .dest-modal {
        width: 96vw;
        height: auto;
        max-height: 92vh;
        flex-direction: column;
        border-radius: 20px 20px 0 0;
        margin-top: auto;
    }
    .dest-modal-overlay.active {
        align-items: flex-end;
    }
    .dest-modal-left {
        width: 100%;
        height: 220px;
        flex-shrink: 0;
    }
    .dest-modal-left-text {
        padding: 28px 24px;
    }
    .dest-modal-left-text h3 {
        font-size: 28px;
    }
    .dest-modal-left-text p {
        font-size: 14px;
    }
    .dest-modal-right-header {
        padding: 20px 20px 0;
    }
    .dest-modal-body {
        padding: 16px 20px;
        gap: 12px;
    }
    .dest-region-card {
        height: 120px;
    }
    .dest-modal-footer {
        padding: 12px 20px 20px;
    }
    .dest-modal-close {
        top: 12px;
        right: 12px;
    }
}

/* 모달 반응형 - 모바일 */
@media (max-width: 480px) {
    .dest-modal-left {
        height: 180px;
    }
    .dest-modal-left-text {
        padding: 20px;
    }
    .dest-modal-left-text h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .dest-modal-left-text .dest-modal-badge {
        margin-bottom: 10px;
        font-size: 11px;
    }
    .dest-modal-body {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 14px 16px;
    }
    .dest-region-card {
        height: 100px;
        border-radius: 12px;
    }
    .dest-region-card-text {
        padding: 10px 12px;
    }
    .dest-region-card-text span {
        font-size: 14px;
    }
    .dest-region-card .card-arrow {
        opacity: 1;
        transform: translateX(0);
        width: 26px;
        height: 26px;
        top: 8px;
        right: 8px;
    }
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: #fafafa;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-box {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #eee;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.booking-list {
    overflow: hidden;
}
.booking-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: opacity 0.3s, transform 0.3s;
}
.booking-list li:last-child {
    border-bottom: none;
}
.booking-product {
    font-size: 14px;
    color: #333;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.booking-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}
.booking-name {
    font-size: 12px;
    color: #666;
}
.booking-time {
    font-size: 12px;
    color: #999;
}

.review-list {
    overflow: hidden;
}
.review-list li {
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: opacity 0.3s, transform 0.3s;
}

.review-list li:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.review-rating {
    color: #ffb400;
    font-size: 13px;
}
.rv-star-full { color: #ffb400; }
.rv-star-half {
    display: inline-block;
    position: relative;
    color: #ddd;
}
.rv-star-half::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffb400;
    overflow: hidden;
    width: 50%;
}
.rv-star-empty { color: #ddd; }

.review-product {
    font-size: 13px;
    color: #666;
}

.review-content {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 8px;
}

.review-author {
    font-size: 12px;
    color: #999;
}

/* Notice Section */
.notice-section {
    padding: 60px 0;
    background: #fff;
}

.notice-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.notice-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 24px;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.notice-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.notice-header a {
    font-size: 13px;
    color: #666;
}

.notice-header a:hover {
    color: #1a73e8;
}

.notice-list li a {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
}

.notice-list li:last-child a {
    border-bottom: none;
}

.notice-tag {
    display: inline-block;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 3px;
    background: #e3f2fd;
    color: #1a73e8;
    margin-right: 12px;
    flex-shrink: 0;
}

.notice-title {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.notice-date {
    font-size: 12px;
    color: #999;
    margin-left: 16px;
}

.quick-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.2s;
}

.quick-item:hover {
    border-color: #1a73e8;
    background: #f0f7ff;
}

.quick-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.quick-item span:last-child {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #a0a0b8;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-top {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}

.footer-menu a {
    font-size: 14px;
    font-weight: 400;
    color: #b0b0c8;
    transition: color 0.2s;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-menu .privacy {
    font-weight: 700;
    color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 36px 0;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}
.footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.company-info p {
    font-size: 16px;
    line-height: 1.9;
    color: #7a7a90;
    letter-spacing: -0.01em;
    word-break: keep-all;
}
.ci-label {
    color: #9a9ab0;
    font-weight: 600;
    margin-right: 3px;
}
.ci-sep {
    margin: 0 5px;
    color: #4a4a60;
}
.ci-nowrap {
    white-space: nowrap;
}
.biz-verify {
    color: #9a9ab0;
    font-size: 11px;
    text-decoration: underline;
    margin-left: 3px;
    transition: color 0.2s;
}
.biz-verify:hover {
    color: #fff;
}

.footer-cs {
    text-align: right;
    flex-shrink: 0;
}

.cs-title {
    font-size: 20px;
    font-weight: 500;
    color: #9a9ab0;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.cs-title i {
    margin-right: 6px;
    color: #5b8def;
}

.cs-number {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    font-family: 'Noto Sans KR', sans-serif;
}

.cs-time {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 18px;
    line-height: 1.5;
    color: #7a7a90;
}
.cs-time span {
    display: block;
}
.cs-time i {
    width: 16px;
    margin-right: 6px;
    color: #5b6a80;
    font-size: 13px;
}

.cs-call-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 12px 30px;
    background: #5b8def;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    letter-spacing: 0.02em;
}
.cs-call-btn:hover {
    background: #4a7de0;
}
.cs-call-btn i {
    margin-right: 6px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.footer-sns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
}
.footer-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #8a8aa0;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}
.footer-sns a:hover {
    background: #5b8def;
    color: #fff;
}

.footer-bottom p {
    font-size: 14px;
    color: #555568;
    letter-spacing: 0.03em;
}

/* ===================== */
/* 모바일 햄버거 버튼 */
/* ===================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== */
/* 모바일 오버레이 + 드로어 */
/* ===================== */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}
.drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
}

.drawer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.drawer-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
}
.drawer-item > a i {
    font-size: 12px;
    color: #999;
    transition: transform 0.3s;
}
.drawer-item.open > a i {
    transform: rotate(180deg);
}

.drawer-sub {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}
.drawer-item.open .drawer-sub {
    display: block;
}
.drawer-sub li a {
    display: block;
    padding: 12px 20px 12px 36px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}
.drawer-sub li a:active {
    background: #e8f0fe;
}

.drawer-util {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid #eee;
    margin-top: 8px;
}
.drawer-util a {
    flex: 1 1 50%;
    padding: 14px 20px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}
.drawer-util a:nth-child(odd) {
    border-right: 1px solid #f0f0f0;
}

.drawer-cs {
    padding: 16px 20px;
    background: #f8f9fa;
}
.drawer-cs p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
.drawer-cs strong {
    color: #1a73e8;
}

/* ===================== */
/* Auth Page (Login/Join) */
/* ===================== */
.auth-page {
    padding: 0;
    min-height: calc(100vh - 200px);
    background: #fff;
}

/* 폼 패널 */
.auth-form-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 60px;
}

/* 상단 로고 */
.auth-mobile-logo {
    text-align: center;
    padding: 0 0 16px;
}
.auth-mobile-logo img {
    height: 32px;
}

/* 폼 박스 */
.auth-box {
    max-width: 440px;
    width: 100%;
    padding: 0;
}
.auth-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
}
.auth-desc {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 24px;
}
.auth-error {
    background: #fff0f0;
    color: #d32f2f;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.auth-success,
.auth-joined-msg {
    background: #f0fff4;
    color: #2e7d32;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 소셜 로그인 버튼 */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.1s;
    box-sizing: border-box;
    cursor: pointer;
    border: none;
}
.social-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.social-btn:active {
    transform: translateY(0);
}
.social-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
}
.social-kakao {
    background: #FEE500;
    color: #3C1E1E;
}
.social-naver {
    background: #03C75A;
    color: #fff;
}
.social-google {
    background: #fff;
    color: #444;
    border: 1px solid #ddd;
}

/* 구분선 */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}
.auth-divider span {
    padding: 0 14px;
    font-size: 13px;
    color: #999;
    white-space: nowrap;
}

/* 폼 */
.auth-form .form-group {
    margin-bottom: 16px;
}
.auth-form .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}
.auth-form .form-group input[type="email"],
.auth-form .form-group input[type="password"],
.auth-form .form-group input[type="text"],
.auth-form .form-group input[type="tel"] {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.auth-form .form-group input:focus {
    border-color: #1a73e8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
}
.form-row {
    display: flex;
    gap: 12px;
}
.form-row .form-group {
    flex: 1;
}
.form-agree {
    margin-top: 8px;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #1a73e8;
}
.checkbox-label a {
    color: #1a73e8;
    text-decoration: underline;
}
.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
    text-decoration: none;
    box-sizing: border-box;
}
.auth-btn:hover {
    background: #1557b0;
    color: #fff;
}
.auth-links {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #888;
}
.auth-links a {
    color: #1a73e8;
    font-weight: 600;
    margin-left: 6px;
}

/* ---- 모바일 auth (768px 이하) ---- */
@media (max-width: 768px) {
    .auth-form-panel {
        padding: 24px 20px 40px;
    }
    .auth-title {
        font-size: 22px;
    }
    .auth-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ---- 480px 이하 ---- */
@media (max-width: 480px) {
    .auth-form-panel {
        padding: 20px 16px 32px;
    }
    .social-login {
        gap: 8px;
    }
}

/* 이메일 인증 (verify) */
.verify-info {
    text-align: center;
    padding: 24px 16px;
    margin-bottom: 20px;
    background: #f5f7fa;
    border-radius: 12px;
}
.verify-icon {
    font-size: 48px;
    color: #1a73e8;
    margin-bottom: 12px;
}
.verify-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.verify-info strong {
    color: #1a73e8;
}
.verify-code-input {
    text-align: center !important;
    font-size: 28px !important;
    letter-spacing: 8px !important;
    font-weight: 700 !important;
}
.verify-timer {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.verify-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}
.verify-resend-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.verify-resend-btn:hover {
    border-color: #1a73e8;
    color: #1a73e8;
}
.verify-resend-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.verify-back-link {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.verify-back-link:hover {
    color: #555;
}

/* ===================== */
/* Mypage                 */
/* ===================== */
.mypage-section {
    padding: 0 0 80px;
    min-height: calc(100vh - 300px);
    background: #f5f6f8;
}

/* 프로필 헤더 */
.mp-profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px 0 28px;
}
.mp-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #4a9af5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
}
.mp-name {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px;
}
.mp-name span {
    font-weight: 400;
    color: #888;
    font-size: 18px;
}
.mp-email, .mp-since {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.8;
}
.mp-email i, .mp-since i {
    width: 16px;
    margin-right: 6px;
    color: #aaa;
}

/* 탭 네비게이션 */
.mypage-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 28px;
    background: transparent;
}
.mypage-nav a {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    color: #888;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mypage-nav a.active {
    color: #1a73e8;
    border-bottom-color: #1a73e8;
    font-weight: 700;
}
.mypage-nav a:hover {
    color: #333;
}

/* 알림 */
.mypage-success {
    background: #f0fff4;
    color: #2e7d32;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 2단 그리드 레이아웃 */
.mp-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}
.mp-main { min-width: 0; }

/* 카드 */
.mypage-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 24px;
}
.mypage-card .card-header {
    background: #f8f9fa;
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
}
.mypage-card .card-header h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}
.mypage-card .card-header h2 i {
    color: #1a73e8;
}
.mypage-card .card-body {
    padding: 24px;
}

/* 폼 */
.mypage-form .form-group {
    margin-bottom: 20px;
}
.mypage-form .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #555;
}
.mypage-form .form-group label i {
    width: 16px;
    margin-right: 4px;
    color: #999;
}
.mypage-form .form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.mypage-form .form-group input:disabled {
    background: #f5f5f5;
    color: #999;
}
.mypage-form .form-group input:focus {
    border-color: #1a73e8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
}
.mypage-form .form-group small {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}
.mp-form-row {
    display: flex;
    gap: 16px;
}
.mp-form-row .form-group {
    flex: 1;
}

/* 버튼 */
.mypage-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 32px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}
.mypage-btn:hover {
    background: #1557b0;
    color: #fff;
}
.mp-btn-outline {
    background: #fff;
    color: #1a73e8;
    border: 2px solid #1a73e8;
}
.mp-btn-outline:hover {
    background: #e8f0fe;
    color: #1a73e8;
}

/* 퀵 메뉴 */
.mp-quick-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mp-quick-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.mp-quick-item:last-child {
    border-bottom: none;
}
.mp-quick-item:hover {
    color: #1a73e8;
}
.mp-quick-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e8f0fe;
    color: #1a73e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.mp-quick-item span {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}
.mp-quick-item > i.fa-chevron-right {
    font-size: 12px;
    color: #ccc;
}

/* 고객센터 박스 */
.mp-cs-box {
    text-align: center;
}
.mp-cs-number {
    font-size: 26px;
    font-weight: 800;
    color: #222;
    margin: 0 0 6px;
}
.mp-cs-time {
    font-size: 13px;
    color: #888;
    margin: 0 0 16px;
}
.mp-cs-buttons {
    display: flex;
    gap: 10px;
}
.mp-cs-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    background: #1a73e8;
    color: #fff;
}
.mp-cs-btn:hover {
    opacity: 0.9;
}
.mp-cs-kakao {
    background: #FEE500;
    color: #3C1E1E;
}

/* ---- 예약확인 페이지 ---- */
/* 예약 요약 카드 */
.rv-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.rv-summary-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.rv-summary-num {
    font-size: 28px;
    font-weight: 800;
    color: #1a73e8;
    margin-bottom: 4px;
}
.rv-num-success { color: #2e7d32; }
.rv-num-pending { color: #e65100; }
.rv-num-cancel { color: #c62828; }
.rv-summary-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* 예약 카드 리스트 */
.rv-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rv-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.rv-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.rv-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.rv-order {
    font-size: 13px;
    font-weight: 600;
    color: #999;
}
.rv-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin: 0 0 14px;
}
.rv-card-info {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}
.rv-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}
.rv-info-item i {
    color: #aaa;
    font-size: 13px;
}
.rv-card-actions {
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}
.rv-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #f0f4ff;
    color: #1a73e8;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.rv-action-btn:hover {
    background: #dce8ff;
}

/* 뱃지 */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.badge-success {
    background: #e8f5e9;
    color: #2e7d32;
}
.badge-danger {
    background: #ffebee;
    color: #c62828;
}
.badge-default {
    background: #f5f5f5;
    color: #666;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.empty-state-icon i {
    font-size: 36px;
    color: #ccc;
}
.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
}
.empty-state p {
    font-size: 15px;
    color: #888;
    margin: 0 0 28px;
}
.empty-state-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Util bar name */
.util-name {
    font-weight: 600;
    color: #1a73e8;
}

/* Responsive mypage */
@media (max-width: 1024px) {
    .mp-grid {
        grid-template-columns: 1fr;
    }
    .mp-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .mp-sidebar .mypage-card {
        margin-bottom: 0;
    }
}
@media (max-width: 768px) {
    .mp-profile-header {
        padding: 28px 0 20px;
        gap: 16px;
    }
    .mp-avatar {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    .mp-name {
        font-size: 20px;
    }
    .mypage-nav a {
        padding: 12px 18px;
        font-size: 14px;
    }
    .mp-grid {
        grid-template-columns: 1fr;
    }
    .mp-sidebar {
        grid-template-columns: 1fr;
    }
    .mp-form-row {
        flex-direction: column;
        gap: 0;
    }
    .rv-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .rv-card-info {
        flex-direction: column;
        gap: 8px;
    }
    .empty-state-links {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .rv-summary {
        grid-template-columns: repeat(2, 1fr);
    }
    .mp-cs-buttons {
        flex-direction: column;
    }
}

/* ===================== */
/* Legal Page             */
/* ===================== */
.legal-page {
    padding: 60px 0 80px;
    min-height: calc(100vh - 300px);
}

.legal-page .page-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.legal-page .page-desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #222;
}

.legal-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.legal-nav a {
    padding: 8px 18px;
    font-size: 13px;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: all 0.2s;
}

.legal-nav a:hover {
    border-color: #1a73e8;
    color: #1a73e8;
}

.legal-nav a.active {
    background: #1a73e8;
    border-color: #1a73e8;
    color: #fff;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content .highlight-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 20px 0;
}

.legal-content .warning-text {
    color: #e53935;
    font-weight: 500;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 13px;
}

.legal-content table th,
.legal-content table td {
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    text-align: left;
    color: #555;
    line-height: 1.6;
}

.legal-content table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* ===================== */
/* Responsive            */
/* ===================== */
@media (max-width: 1024px) {
    .gnb-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    /* 유틸바 숨김 */
    .util-bar {
        display: none;
    }

    /* 헤더 */
    .header-inner {
        height: 56px;
    }
    .logo img {
        height: 28px !important;
    }

    /* 메인 비주얼 */
    .main-visual {
        height: 320px;
    }
    .slide-content {
        top: 45%;
    }
    .slide-content h2 {
        font-size: 24px;
    }
    .slide-content p {
        font-size: 13px;
        margin-bottom: 14px;
    }
    .slide-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
    .slide-tag {
        font-size: 11px;
    }
    .slider-controls {
        bottom: 16px;
    }

    /* 퀵 검색 */
    .quick-search {
        margin-top: -24px;
    }
    .search-box {
        padding: 20px 16px;
    }
    .search-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        gap: 6px;
        padding-bottom: 4px;
    }
    .search-tabs::-webkit-scrollbar { display: none; }
    .search-tab {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 13px;
        padding: 8px 16px;
    }
    .search-form {
        flex-wrap: wrap;
        gap: 10px;
    }
    .form-field {
        flex: 1 1 45%;
    }
    .search-submit {
        width: 100%;
        margin-top: 8px;
    }

    /* 특징 섹션 */
    .feature-section {
        padding: 32px 0;
    }
    .feature-list {
        flex-wrap: wrap;
        gap: 12px;
    }
    .feature-item {
        flex: 1 1 45%;
        padding: 14px 16px;
        gap: 12px;
    }
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
    .feature-text h4 {
        font-size: 13px;
    }
    .feature-text p {
        font-size: 11px;
    }

    /* 상품 섹션 */
    .product-section {
        padding: 40px 0;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .section-title {
        font-size: 20px;
        word-break: keep-all;
    }
    .product-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        gap: 6px;
    }
    .product-tabs::-webkit-scrollbar { display: none; }
    .product-tab {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 13px;
    }
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .card-image {
        height: 160px;
    }
    .wish-btn {
        opacity: 1;
        width: 32px;
        height: 32px;
    }
    .card-content {
        padding: 12px;
    }
    .card-title {
        font-size: 14px;
    }
    .card-price .current {
        font-size: 16px;
    }

    /* 배너 */
    .banner-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }
    .banner-item.large {
        grid-row: span 1;
        height: 180px;
    }
    .banner-item {
        height: 140px;
    }
    .banner-content h3 {
        font-size: 18px;
    }

    /* 여행지 */
    .destination-section {
        padding: 40px 0;
    }
    .destination-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        gap: 12px;
        justify-content: flex-start;
        padding-bottom: 4px;
    }
    .destination-tabs::-webkit-scrollbar { display: none; }
    .dest-tab {
        flex-shrink: 0;
    }
    .dest-tab img {
        width: 120px;
        height: 84px;
        border-radius: 8px;
    }
    .dest-tab span {
        font-size: 12px;
    }
    .destination-cities {
        gap: 8px;
    }
    .city-link {
        padding: 8px 14px;
        font-size: 13px;
    }

    /* 정보 섹션 */
    .info-grid,
    .notice-grid {
        grid-template-columns: 1fr;
    }
    .info-title {
        font-size: 16px;
    }

    /* 푸터 - 모바일 중앙 정렬 + 여유 공간 */
    .footer .container {
        padding: 0 24px;
    }
    .footer-top {
        padding: 14px 0;
    }
    .footer-menu {
        gap: 6px 14px;
    }
    .footer-menu a {
        font-size: 12px;
    }
    .footer-content {
        flex-direction: column;
        gap: 28px;
        padding: 28px 0;
        text-align: center;
    }
    .footer-info {
        text-align: center;
    }
    .footer-logo {
        margin-bottom: 16px;
    }
    .company-info p {
        font-size: 12px;
        line-height: 1.8;
    }
    .ci-nowrap {
        white-space: normal;
    }
    .footer-cs {
        text-align: center;
    }
    .cs-number {
        font-size: 26px;
    }
    .cs-time {
        align-items: center;
        font-size: 13px;
    }
    .cs-call-btn {
        width: auto;
        display: inline-block;
        min-width: 180px;
        text-align: center;
        font-size: 14px;
        padding: 10px 24px;
    }
    .footer-bottom {
        padding: 16px 0;
    }
    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    /* 메인 비주얼 */
    .main-visual {
        height: 260px;
    }
    .slide-content {
        top: 40%;
    }
    .slide-content h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .slide-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .slide-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    .slider-controls {
        bottom: 12px;
    }

    /* 검색 폼 1열 */
    .form-field {
        flex: 1 1 100%;
    }

    /* 특징 1열 */
    .feature-item {
        flex: 1 1 100%;
    }

    /* 상품 1열 */
    .product-list {
        grid-template-columns: 1fr;
    }
    .card-image {
        height: 180px;
    }

    /* 여행지 */
    .destination-cities {
        gap: 6px;
    }
    .city-link {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* 공지 */
    .notice-list li a {
        flex-wrap: wrap;
    }

    /* 리스트 카드 패딩 조정 */
    .card-content { padding: 10px; }

    /* 푸터 - 480px */
    .footer .container {
        padding: 0 20px;
    }
    .footer-menu {
        gap: 4px 10px;
    }
    .footer-menu a {
        font-size: 11px;
    }
    .footer-content {
        padding: 24px 0;
        gap: 24px;
    }
    .company-info p {
        font-size: 12px;
    }
    .cs-number {
        font-size: 22px;
    }
    .cs-call-btn {
        min-width: 160px;
        font-size: 13px;
        padding: 9px 20px;
    }
}

/* ===================== */
/* 상품 상세/리스트 모바일  */
/* ===================== */

/* 768px 이하 - 상품 상세 모바일 */
@media (max-width: 768px) {
    /* 컨테이너 모바일 패딩 */
    .container { padding: 0 16px; }

    /* 메인 레이아웃 간격 축소 */
    .detail-main { padding: 32px 0; }
    .detail-grid { gap: 32px; }

    /* 콘텐츠 영역 오버플로우 방지 */
    .detail-left { max-width: 100%; overflow-x: hidden; }
    .tab-panel { max-width: 100%; overflow-x: hidden; }
    .product-header { overflow: hidden; }

    /* 요금표: 가로 스크롤 래퍼 */
    .cost-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .cost-table { min-width: 480px; }

    /* 타임라인 텍스트 줄밀림 방지 */
    .timeline-header-info { flex-direction: column; align-items: flex-start; gap: 4px; }
    .timeline-hotel { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .activity-desc { word-break: keep-all; overflow-wrap: break-word; }

    /* 예약 사이드바 → 모바일 정리 */
    .booking-card { border-radius: 12px; }
    .booking-price { font-size: 28px; }

    /* 라이트박스 모바일 */
    .lightbox-img-wrap { max-width: 95vw; max-height: 90vh; }

    /* 탭 스크롤 - 스크롤바 숨기기 */
    .detail-tabs {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .detail-tabs::-webkit-scrollbar { display: none; }

    /* 안내사항 아코디언 텍스트 줄밀림 방지 */
    .notice-acc-body { word-break: keep-all; overflow-wrap: break-word; }
    .notice-acc-body div { word-break: keep-all; overflow-wrap: break-word; }

    /* 모달 모바일 최적화 - 하단 시트 스타일 */
    .acc-modal, .gc-modal { max-width: 100%; border-radius: 12px 12px 0 0; max-height: 85vh; }
    .acc-modal-overlay, .gc-modal-overlay { align-items: flex-end; padding: 0; }
}

/* 480px 이하 - 상품 상세 모바일 */
@media (max-width: 480px) {
    /* 컨테이너 */
    .container { padding: 0 14px; }

    /* 메인 레이아웃 간격 축소 */
    .detail-main { padding: 20px 0; }
    .detail-grid { gap: 24px; }

    /* 상품 헤더 */
    .product-header { padding: 16px 0 0; }
    .product-header .breadcrumb { font-size: 12px; margin-bottom: 8px; }
    .product-header .product-tags { gap: 6px; margin-bottom: 6px; }
    .product-header .product-tag { font-size: 11px; padding: 3px 8px; }

    /* 탭 영역 */
    .detail-tabs { top: 56px; }
    .detail-tab { padding: 12px 16px; font-size: 13px; }
    .tab-panel { padding: 24px 0; }

    /* 타임라인 */
    .day-badge .day-num { font-size: 16px; }
    .timeline-city { font-size: 14px; }
    .timeline-body { padding: 12px; }
    .activity-title { font-size: 14px; }
    .activity-desc { font-size: 12px; line-height: 1.6; }
    .timeline-activities { padding-left: 20px; }

    /* 요금표 */
    .cost-table { min-width: 360px; }
    .cost-table thead th { padding: 10px 8px; font-size: 13px; }
    .cost-table tbody td { padding: 10px 8px; font-size: 13px; }
    .cost-table .price { font-size: 14px; }
    .cost-notice { padding: 12px 14px; font-size: 12px; line-height: 1.7; }

    /* 식사 태그 */
    .meal-tag { font-size: 11px; padding: 2px 6px; }
    .meal-icon { font-size: 12px; }

    /* 관련 상품 섹션 */
    .related-section { padding: 40px 0; }
    .related-section .section-title { font-size: 20px; margin-bottom: 20px; }

    /* 카드 (골프코스/숙소) */
    .gc-card, .acc-card { flex-direction: column; }
    .gc-card-img, .acc-card-img { width: 100%; height: 160px; }
    .gc-card-name, .acc-card-name { font-size: 15px; }

    /* 라이트박스 모바일 */
    .lightbox-img-wrap { max-width: 100vw; }
    .lightbox-close { top: 12px; right: 12px; }
    .lightbox-counter { top: 16px; left: 16px; font-size: 13px; }
    .lightbox-nav { width: 36px; height: 36px; font-size: 18px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    /* 안내사항 아코디언 */
    .notice-acc-header { padding: 14px 16px; font-size: 14px; }
    .notice-acc-item.open .notice-acc-body { padding: 12px 16px; }
    .notice-acc-body ul { font-size: 13px; }

    /* 예약 폼 모바일 */
    .booking-card { padding: 20px 16px; }
    .booking-price { font-size: 26px; }
    .booking-field label { font-size: 12px; margin-bottom: 6px; }
    .booking-field select,
    .booking-field input { height: 44px; font-size: 13px; }
    .btn-book { height: 48px; font-size: 15px; }
    .btn-consult { height: 44px; font-size: 14px; }
    .btn-cart { height: 44px; font-size: 14px; }
    .btn-wish-detail { height: 44px; font-size: 14px; }

    /* 정보 카드 */
    .info-card { padding: 14px; }
    .info-card .ic-icon { font-size: 24px; margin-bottom: 4px; }
    .info-card .ic-label { font-size: 11px; }
    .info-card .ic-value { font-size: 13px; }

    /* 코스 카드 */
    .course-card img { height: 160px; }
    .course-card .course-info { padding: 12px; }
    .course-card .course-name { font-size: 15px; }
    .course-card .course-desc { font-size: 12px; }

    /* 모달 모바일 */
    .acc-modal-body, .gc-modal-body { padding: 16px; }
    .acc-modal-name, .gc-modal-name { font-size: 18px; }
    .acc-modal-gallery, .gc-modal-gallery { height: 200px; }
}

/* 모바일 예약 하단 고정 바 */
.mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 10px 16px;
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}
.mobile-booking-bar .mb-price { font-size: 18px; font-weight: 700; color: #e53935; }
.mobile-booking-bar .mb-price small { font-size: 12px; color: #888; font-weight: 400; }
.mobile-booking-bar .mb-actions { display: flex; gap: 8px; margin-top: 6px; }
.mobile-booking-bar .mb-btn { flex: 1; height: 44px; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; }
.mobile-booking-bar .mb-btn-book { background: #1a73e8; color: #fff; }
.mobile-booking-bar .mb-btn-call { background: #f5f5f5; color: #333; }

@media (max-width: 1024px) {
    .mobile-booking-bar { display: block; }
    .detail-main { padding-bottom: 100px; }
}

/* ===== 나라별 여행 정보 섹션 ===== */
.country-guide-section {
    padding: 48px 0 40px;
    background: #f9fafb;
}
.country-guide-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 20px;
}
.country-guide-section .section-desc {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}
.country-guide-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.cg-tab {
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #fff;
    transition: all 0.2s;
    cursor: pointer;
    font-family: inherit;
}
.cg-tab:hover {
    border-color: #1a73e8;
    color: #1a73e8;
}
.cg-tab.active {
    background: #1a73e8;
    border-color: #1a73e8;
    color: #fff;
}
.country-guide-grid {
    display: none;
    gap: 12px;
    padding-bottom: 8px;
}
.country-guide-grid.active {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
}
.country-guide-grid.active:not(.expanded) > .country-guide-card:nth-child(n+11) {
    display: none;
}
.country-guide-grid.active.expanded > .country-guide-card {
    display: flex;
}
.country-guide-grid::-webkit-scrollbar {
    height: 4px;
}
.country-guide-grid::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}
.country-guide-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}
.country-guide-card {
    background-size: 70% auto;
    background-position: right -10% bottom -20%;
    background-repeat: no-repeat;
}
.country-guide-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.88);
    pointer-events: none;
    z-index: 0;
}
.country-guide-card > * { position: relative; z-index: 1; }
.country-guide-card:hover {
    border-color: #1a73e8;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.1);
    transform: translateY(-2px);
}
.cg-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.cg-card-flag {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0,0,0,0.15);
}
.cg-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    flex: 1;
}
.cg-card-code {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
}
.cg-card-info-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
    flex: 1;
    min-height: 60px;
}
.cg-card-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cg-card-label {
    font-size: 11px;
    color: #999;
    font-weight: 500;
}
.cg-card-value {
    font-size: 12px;
    color: #555;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    text-align: right;
}
.cg-card-rate {
    color: #1a73e8;
}
.cg-card-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}
.cg-card-arrow span {
    font-size: 12px;
    color: #1a73e8;
    font-weight: 600;
}
.cg-card-arrow svg {
    width: 16px;
    height: 16px;
    stroke: #1a73e8;
}
.cg-more-btn {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 16px auto 0;
    padding: 10px 28px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.cg-more-btn:hover {
    border-color: #1a73e8;
    color: #1a73e8;
}
.cg-more-btn svg {
    vertical-align: middle;
}

/* 나라별 여행 정보 반응형 */
@media (max-width: 1024px) {
    .country-guide-grid.active {
        grid-template-columns: repeat(3, 1fr);
    }
    .country-guide-grid.active:not(.expanded) > .country-guide-card:nth-child(n+7) {
        display: none;
    }
}
@media (max-width: 768px) {
    .country-guide-section {
        padding: 32px 0 28px;
    }
    .country-guide-grid.active {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .country-guide-grid.active:not(.expanded) > .country-guide-card:nth-child(n+11) {
        display: flex;
    }
    .cg-more-btn {
        display: none;
    }
    .country-guide-card {
        min-width: 160px;
        flex-shrink: 0;
    }
    .country-guide-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .country-guide-tabs::-webkit-scrollbar { display: none; }
}

/* ===== 여행 컨텐츠 섹션 ===== */
.travel-contents-section {
    padding: 48px 0 56px;
    background: #f8fafc;
}
.travel-contents-section .section-header {
    text-align: center;
    margin-bottom: 28px;
}
.contents-header-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.contents-sns-links {
    display: flex;
    gap: 6px;
    align-items: center;
}
.contents-sns-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.contents-sns-btn:hover {
    transform: scale(1.15);
    opacity: 0.85;
}
.contents-sns-insta {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.contents-sns-blog {
    background: #03c75a;
}
.contents-sns-yt {
    background: #ff0000;
}
.travel-contents-section .section-desc {
    color: #64748b;
    font-size: 14px;
    margin-top: 6px;
}
.contents-slider-wrap {
    position: relative;
}
.contents-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 0 16px;
    -webkit-overflow-scrolling: touch;
}
.contents-slider::-webkit-scrollbar { height: 4px; }
.contents-slider::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.contents-card {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.contents-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.contents-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #e2e8f0;
}
.contents-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.contents-card:hover .contents-card-img img {
    transform: scale(1.05);
}
.contents-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}
.contents-badge-blog { background: #03c75a; }
.contents-badge-youtube { background: #ff0000; }
.contents-badge-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contents-badge-other { background: #64748b; }
.contents-card-title {
    padding: 14px 16px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.contents-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 22px;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
}
.contents-nav:hover { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.contents-prev { left: -18px; }
.contents-next { right: -18px; }
@media (max-width: 768px) {
    .travel-contents-section { padding: 32px 0 40px; }
    .contents-card { min-width: 240px; max-width: 240px; }
    .contents-nav { display: none; }
}

/* ===== 나라별 여행 정보 상세 페이지 ===== */
.ci-page {
    padding: 60px 0 80px;
}
.ci-page-header {
    text-align: center;
    margin-bottom: 40px;
}
.ci-page-header-flag {
    position: relative;
    overflow: hidden;
}
.ci-page-header-flag {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 20px;
    border-radius: 12px;
}
.ci-page-header-flag::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    pointer-events: none;
    z-index: 0;
    border-radius: 12px;
}
.ci-page-header-flag > * { position: relative; z-index: 1; }
.ci-page-breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}
.ci-page-breadcrumb a { color: #888; text-decoration: none; }
.ci-page-breadcrumb a:hover { color: #1a73e8; }
.ci-page-breadcrumb span { color: #333; font-weight: 500; }
.ci-page .page-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}
.ci-page .page-desc {
    font-size: 15px;
    color: #666;
}

.ci-basics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.ci-basic-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s;
}
.ci-basic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ci-basic-icon {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ci-basic-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    margin-bottom: 6px;
}
.ci-basic-value {
    font-size: 16px;
    color: #222;
    font-weight: 700;
    line-height: 1.4;
}
.ci-basic-sub {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}
.ci-basic-rate {
    font-size: 12px;
    color: #e8710a;
    font-weight: 600;
    margin-top: 6px;
}

.ci-content-section {
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}
.ci-content-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.ci-entry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.ci-entry-item {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px 24px;
}
.ci-entry-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}
.ci-entry-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.ci-embassy {
    background: #f9fafb;
    border-radius: 8px;
    padding: 24px;
}
.ci-embassy-name {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8e8;
}
.ci-embassy-row {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    gap: 12px;
}
.ci-emb-label {
    font-size: 13px;
    color: #888;
    min-width: 72px;
    flex-shrink: 0;
    font-weight: 500;
}
.ci-emb-val {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    word-break: break-all;
}
.ci-emb-val a { color: #1a73e8; text-decoration: none; }
.ci-emb-val a:hover { text-decoration: underline; }
.ci-emb-emergency a { color: #e53935; }

.ci-tips-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 24px;
}
.ci-tips-box p {
    font-size: 14px;
    color: #92400e;
    line-height: 1.8;
    margin: 0;
}

.ci-cta {
    text-align: center;
    padding-top: 48px;
}
.ci-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #1a73e8;
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.ci-cta-btn:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26,115,232,0.3);
}

/* 나라 목록 페이지 */
.ci-country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.ci-country-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 24px 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
    position: relative;
    overflow: hidden;
}
.ci-country-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ci-country-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.88);
    pointer-events: none;
    z-index: 0;
}
.ci-country-card > * { position: relative; z-index: 1; }
.ci-country-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0,0,0,0.15);
    margin-right: 6px;
    vertical-align: middle;
}
.ci-country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ci-country-name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}
.ci-country-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ci-country-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ci-country-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}
.ci-country-val {
    font-size: 13px;
    color: #444;
    font-weight: 600;
    text-align: right;
}
.ci-country-rate {
    color: #e8710a;
}
.ci-empty {
    text-align: center;
    padding: 80px 20px;
    color: #888;
    font-size: 15px;
}

/* 나라 정보 페이지 반응형 */
@media (max-width: 1024px) {
    .ci-country-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ci-page { padding: 40px 0 60px; }
    .ci-page .page-title { font-size: 24px; }
    .ci-basics { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 36px; }
    .ci-basic-card { padding: 16px 12px; }
    .ci-basic-value { font-size: 14px; }
    .ci-content-section { margin-bottom: 32px; padding-top: 32px; }
    .ci-embassy { padding: 16px; }
    .ci-embassy-row { flex-wrap: wrap; }
    .ci-emb-label { min-width: auto; }
    .ci-country-grid { grid-template-columns: 1fr; }
    .ci-country-card { padding: 20px 16px; }
}

/* ===================== */
/* 모바일 반응형 보완     */
/* ===================== */

/* 폼 입력 iOS 확대 방지 (16px 이상) */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="date"],
input[type="number"],
textarea,
select {
    font-size: 16px;
}

/* 카드 태그/정보 overflow 처리 */
.card-info {
    flex-wrap: wrap;
    overflow: hidden;
}
.card-info span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 마이페이지 네비게이션 모바일 스크롤 */
@media (max-width: 480px) {
    .mypage-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .mypage-nav::-webkit-scrollbar { display: none; }
    .mypage-nav a {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 12px 16px;
        font-size: 13px;
    }
    .mp-profile-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .mp-avatar { margin: 0 auto; }
    .mp-name { font-size: 18px; }
    .mp-email, .mp-since { font-size: 12px; }

    /* 카트 모바일 */
    .cart-total-price { font-size: 20px; }

    /* 공지 상세 */
    .notice-nav-label { width: 60px; font-size: 11px; }
    .notice-nav-title { font-size: 12px; }
    .notice-detail-title { font-size: 16px; }
    .notice-detail-meta { gap: 6px; font-size: 11px; }
    .notice-detail-body { font-size: 13px; padding: 20px 0 24px; }

    /* 나라가이드 탭 스크롤 */
    .country-guide-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }
    .country-guide-tabs::-webkit-scrollbar { display: none; }
    .country-guide-tab { flex-shrink: 0; }
}

/* 모바일 예약 하단 바 iOS safe-area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-booking-bar {
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }
}

/* 최근 본 상품 패널 - 작은 화면 대응 */
@media (max-width: 480px) {
    .recent-panel {
        width: min(260px, calc(100vw - 80px));
    }
}

/* 320px 이하 - 최소 화면 대응 */
@media (max-width: 360px) {
    .container { padding: 0 12px; }

    /* 헤더 */
    .header .logo img { height: 28px; }

    /* 메인 비주얼 */
    .slide-content h2 { font-size: 18px; }
    .slide-content p { font-size: 11px; }

    /* 상품 카드 */
    .card-title { font-size: 13px; }
    .card-price .current { font-size: 14px; }
    .card-content { padding: 8px; }
    .card-info span { font-size: 10px; padding: 2px 6px; }

    /* 상품 상세 */
    .product-header .product-title { font-size: 16px; }
    .product-header .breadcrumb { font-size: 11px; }
    .detail-tab { padding: 10px 12px; font-size: 12px; }
    .booking-card { padding: 14px; }
    .booking-price { font-size: 22px; }
    .booking-price-label { font-size: 11px; }
    .info-card .ic-label { font-size: 10px; }
    .info-card .ic-value { font-size: 12px; }

    /* 요금표 */
    .cost-table { min-width: 320px; }
    .cost-table thead th { font-size: 12px; padding: 8px 6px; }
    .cost-table tbody td { font-size: 12px; padding: 8px 6px; }

    /* 타임라인 */
    .day-badge .day-num { font-size: 14px; }
    .timeline-city { font-size: 13px; }
    .activity-title { font-size: 13px; }

    /* 푸터 */
    .footer .container { padding: 0 12px; }
    .footer-menu a { font-size: 10px; }
    .footer-menu { gap: 3px 8px; }
    .company-info p { font-size: 11px; }
    .cs-number { font-size: 20px; }
    .cs-call-btn { min-width: 140px; font-size: 12px; padding: 8px 16px; }

    /* 플로팅 리모콘 */
    .float-remote { right: 8px; bottom: 12px; }
    .float-util { padding: 3px; }
    .float-btn { width: 40px; height: 40px; font-size: 14px; }
    .float-label { font-size: 7px; }
    .float-sns a { width: 36px; height: 36px; }
    .float-sns a img { width: 36px; height: 36px; }
    .float-top { width: 36px; height: 36px; font-size: 14px; }

    /* 마이페이지 */
    .mp-name { font-size: 16px; }
    .mypage-nav a { padding: 10px 12px; font-size: 12px; }

    /* 공지 */
    .notice-tab { padding: 5px 10px; font-size: 11px; }

    /* 라이트박스 */
    .lightbox-nav { width: 32px; height: 32px; font-size: 16px; }
    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }
}
