/* Fonts */
@font-face {
    font-family: 'NanumSquareNeo';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-aLt.woff2);
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'NanumSquareNeo';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.woff2);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'NanumSquareNeo';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-cBd.woff2);
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'NanumSquareNeo';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-dEb.woff2);
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'NanumSquareNeo';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-eHv.woff2);
    font-weight: 900;
    font-display: swap;
}

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

body {
    font-family: 'NanumSquareNeo', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

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

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

/* Page Wrapper */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container */
.container {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 20px;
    box-shadow: none !important;
}

/* Remove any shadow effects on scroll */
.site-header::before,
.site-header::after {
    box-shadow: none !important;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0 0.5rem 0;
}

/* 햄버거 메뉴 버튼 (데스크톱에서만 숨김) */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-nav {
        display: none !important;
    }

    .mobile-menu-overlay {
        display: none !important;
    }

    /* 모바일 광고 컨테이너 숨김 */
    #mobile-adsense-container.mobile-ad {
        display: none !important;
    }
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 160px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF7700;
}

/* Navigation */
.main-nav {
    flex: 1;
    margin: 0 2rem;
}

/* Navigation Icons */
.nav-link i {
    margin-right: 2px;
    font-size: 15px;
    vertical-align: middle;
}

.dropdown-menu a i {
    margin-right: 10px;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #FF7700;
}

/* Dropdown */
.dropdown-menu {
    z-index: 999;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    list-style: none;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #666;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: #f8f8f8;
    color: #FF7700;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 0.5rem;
}

/* Buttons */
.btn {
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #FF7700;
    color: #fff;
}

.btn-primary:hover {
    background: #e66900;
}

.btn-outline {
    border: 1px solid #ddd;
    color: #333;
    background: transparent;
}

.btn-outline:hover {
    border-color: #FF7700;
    color: #FF7700;
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-white:hover {
    background: #fff;
    color: #FF7700;
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 0px;
}

/* Content Wrapper */
.content-wrapper {
    margin: 0 20px 20px 20px;
    padding: 10px;
    background: #f0f0f0;
    /* min-height: calc(100vh - 200px); */
}

.content-inner {
    padding: 40px;
    background: #fff;
    border: 1px solid #ddd;
    /* min-height: calc(100vh - 200px); */
}

.content-inner .main-content {
    padding: 0px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    margin: 0 -20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Sections */
.features-section,
.hotspots-section,
.news-section {
    padding: 0;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

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

.view-all {
    color: #FF7700;
    font-weight: 500;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 1rem;
}

.feature-link {
    color: #FF7700;
    font-weight: 500;
}

/* Hotspots Grid */
.hotspots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.hotspot-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hotspot-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hotspot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    padding: 1.5rem;
}

.hotspot-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.news-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-date {
    color: #999;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.news-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.news-link {
    color: #FF7700;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: #579CA8;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background: #1e2127;
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 2rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    padding-left: 20px;
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-logo-image {
    height: 35px;
    width: auto;
    max-width: 130px;
    transition: transform 0.3s ease;
    content: url('/assets/images/logo_dark.png') !important;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}


.footer-description {
    margin-top: 0.5rem;
    color: #bbb;
    font-size: 14px;
    font-weight: normal;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-label {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.footer-inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-inline-links a {
    color: #bbb;
    font-size: 13px;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-inline-links a:hover {
    color: #FF7700;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.1rem;
}

.footer-section ul.horizontal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-section ul.horizontal-links li {
    margin-bottom: 0;
}

.footer-section a {
    color: #bbb;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FF7700;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: left;
    padding-left: 20px;
    color: #bbb;
    font-size: 12px;
    font-weight: thin;
}


/* Search Container */
.search-container {
    max-width: 930px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #ddd;
    background-image: url('/assets/images/th_back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    z-index: 1;
}

.search-form-wrapper {
    position: relative;
    z-index: 2;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: #007bff;
    box-shadow: 0 2px 15px rgba(0, 123, 255, 0.15);
}

.search-icon {
    color: #666;
    margin-right: 15px;
    font-size: 16px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.search-button {
    background: #2190ff;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
    white-space: nowrap;
}

.search-button:hover {
    background: hsl(211, 96%, 65%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Bootstrap-like Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

[class*="col-"] {
    box-sizing: border-box;
}

/* ==============================================
   반응형 디자인 - 3단계 브레이크포인트
   ==============================================
   1. 데스크톱: 1200px 이상 (기본 스타일)
   2. 태블릿: 968px 이하
   3. 모바일: 768px 이하
   ============================================== */

/* 작은 데스크톱/큰 태블릿 스타일 (1200px 이하) */
@media (max-width: 1200px) {
    .flight-coupons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 태블릿 스타일 (968px 이하) */
@media (max-width: 968px) {
    /* 그리드 시스템 */
    .travel-spotlight-grid {
        flex-direction: column !important;
    }

    .travel-section-left,
    .travel-section-right {
        width: 100% !important;
    }

    .spotlight-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .hotel-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .tour-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .flight-coupons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight-image {
        height: 160px !important;
    }

    .section-title {
        font-size: 20px !important;
    }

    .slider-nav-btn {
        opacity: 1;
        width: 32px;
        height: 32px;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }
}

/* 모바일 스타일 (768px 이하) */
@media (max-width: 768px) {
    /* 그리드 시스템 - 모든 컬럼을 100% 너비로 */
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    /* 검색 컨테이너 */
    .search-container {
        padding: 20px;
    }
    
    .search-input-group {
        flex-direction: row !important;
        gap: 10px;
        padding: 15px;
    }
    
    .search-icon {
        display: none;
    }
    
    .search-input {
        text-align: left;
        margin-bottom: 0;
    }
    
    .search-button {
        width: auto;
        margin-left: 15px;
        white-space: nowrap;
    }

    /* 검색 및 광고 컨테이너 모바일 스타일 - 세로 배치 */
    .row {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        margin-bottom: 10px !important;
    }

    .row > div:first-child {
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
    }

    #adsense-container {
        width: 100% !important;
        flex-shrink: 1 !important;
        margin-top: 0;
    }

    /* 모바일 광고 컨테이너 - 검색창과의 여백 15px */
    #mobile-adsense-container.mobile-ad {
        margin-top: 0 !important;
    }

    /* 헤더 */
    .header-wrapper {
        flex-direction: column;
        gap: 1rem 0 0 0;
    }

    .logo-image {
        height: 30px;
        max-width: 120px;
    }

    .main-nav {
        margin: 0;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    /* 히어로 섹션 */
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    /* 푸터 */
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* 홈페이지 컴포넌트 - 1열 그리드 */
    .spotlight-grid {
        grid-template-columns: 1fr !important;
    }

    .hotel-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .tour-services-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .flight-coupons-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .spotlight-image {
        height: 200px !important;
    }

    .slider-nav-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    /* 커뮤니티 날씨 위젯 모바일 스타일 */
    .weather-widget-slide {
        flex-direction: column !important;
    }

    .weather-card {
        margin-bottom: 10px;
    }

    .weather-nav-btn {
        opacity: 1 !important;
        width: 24px !important;
        height: 24px !important;
    }

    .weather-nav-btn i {
        font-size: 12px !important;
    }

    /* 환율 티커 위젯 모바일 스타일 - 1줄로 변경 */
    .exchange-info-section > div {
        flex-direction: column !important;
    }

    .domestic-exchange,
    .thailand-exchange {
        width: 100% !important;
        flex: none !important;
        margin-bottom: 10px;
    }

    .domestic-exchange:last-child,
    .thailand-exchange:last-child {
        margin-bottom: 0;
    }

    /* 뉴스 및 커뮤니티 섹션 모바일 스타일 - 1줄로 변경 */
    .news-section .container > div {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .news-container,
    .community-container {
        width: 100% !important;
        flex: none !important;
    }
}

/* Travel Info Page */
.travel-info-page {
    padding: 2rem 0;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-title i {
    font-size: 2rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.info-categories {
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    /* margin-bottom: 2rem; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    /* transition: all 0.3s ease; */
    border: 1px solid #e0e0e0;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-icon i {
    font-size: 1.8rem;
    color: white;
}

.info-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.info-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content h3 a:hover {
    color: #667eea;
}

.info-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.info-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.quick-info {
    background: #f8f9fa;
    padding: 3rem 0;
    border-radius: 15px;
    margin: 2rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.quick-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.quick-card h4 {
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quick-card h4 i {
    color: #667eea;
}

.quick-card p {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
}

/* User Menu Styles */
.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border: none !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    color: white !important;
}

/* ==============================================
   HOMEPAGE COMPONENTS - 원본 파일: default/header.php 인라인 스타일
   ============================================== */

/* 슬라이더 컨테이너 - 원본 라인: 34-37 */
.spotlight-slider-container,
.flight-coupons-slider-container {
    position: relative;
    overflow: hidden;
}

.spotlight-slider-wrapper,
.flight-coupons-slider-wrapper {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.spotlight-slide {
    min-width: 100%;
    flex-shrink: 0;
}

/* 네비게이션 버튼 - 원본 라인: 50-73 */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
}

.slider-nav-btn:hover {
    background: #FF7700;
    border-color: #FF7700;
    color: white;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

/* 인디케이터 - 원본 라인: 83-104 */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #FF7700;
    width: 24px;
    border-radius: 4px;
}

/* 카드 호버 효과 - 원본 라인: 106-115 */
.spotlight-card:hover {
    border-color: #FF7700;
}

.spotlight-card:hover .spotlight-title {
    color: #FF7700;
}

/* 호텔 카드 호버 효과 - 원본 라인: 117-141 */
.hotel-card {
    transition: all 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-3px);
}

.hotel-card:hover .hotel-title {
    color: #FF7700;
}

.hotel-title {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.hotel-name-en {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* 투어 서비스 카드 호버 효과 - 원본 라인: 143-154 */
.tour-service-card {
    transition: all 0.3s ease;
}

.tour-service-card:hover {
    transform: translateY(-3px);
}

.tour-service-card:hover .tour-service-title {
    color: #FF7700;
}

/* 항공권 할인/쿠폰 섹션 스타일 - 원본 라인: 156-252 */
.flight-coupons-section {
    padding: 20px 0;
}

.flight-coupons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.flight-coupon-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.flight-coupon-card:hover {
    border-color: #007bff;
}

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

.coupon-badge {
    background: #dc2626;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coupon-title {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.coupon-content {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.coupon-date {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 5px;
}

.coupon-actions {
    text-align: center;
}

.view-coupon-btn {
    background: rgb(255, 132, 132);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.view-coupon-btn:hover {
    background: rgb(255, 106, 106);
    transform: translateY(-1px);
}

.view-coupon-btn:active {
    transform: translateY(0);
}

/* 항공권 할인/쿠폰 반응형은 위의 3단계 브레이크포인트에 통합됨 */

.view-all-link {
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #e56a00;
}

/* 커뮤니티 날씨 위젯 스타일 - 원본 라인: 281-320 */
.weather-widget-slider {
    position: relative;
    overflow: hidden;
}

.weather-widget-wrapper {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

/* 날씨 위젯 데스크톱/모바일 슬라이드 기본 설정 */
.desktop-weather-slides,
.mobile-weather-slides {
    display: flex;
    transition: transform 0.4s ease-in-out;
    flex-direction: row;
}

.desktop-weather-slides {
    display: flex;
}

.mobile-weather-slides {
    display: none;
}

/* 각 슬라이드는 전체 너비를 차지하도록 설정 */
.desktop-weather-slides .weather-widget-slide,
.mobile-weather-slides .weather-widget-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    gap: 10px;
}

/* 데스크톱 슬라이드 내 날씨 카드 스타일 */
.desktop-weather-slides .weather-card {
    flex: 1 !important; /* 인라인 스타일 덮어쓰기 */
    min-width: 0 !important; /* flex 아이템이 축소되도록 설정 */
    max-width: 50% !important; /* 각 카드가 최대 45% 너비를 차지하도록 제한 (gap 10% 고려) */
    box-sizing: border-box !important;
    width: 50% !important; /* 명시적으로 너비 설정 */
}

/* 커뮤니티 섹션 내 날씨 위젯 슬라이더 너비 제한 */
.community-container .weather-widget-slider {
    width: 100%;
    box-sizing: border-box;
}

/* 데스크톱 슬라이드 래퍼 너비 제한 */
.desktop-weather-slides {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.weather-card {
    transition: none;
}

.weather-nav-btn {
    transition: all 0.3s ease;
}

.weather-nav-btn:hover {
    background: #FF7700 !important;
    border-color: #FF7700 !important;
    color: white !important;
}

.weather-widget-slider:hover .weather-nav-btn {
    opacity: 1 !important;
}

.weather-dot.active {
    background: #FF7700 !important;
    width: 20px !important;
    border-radius: 4px !important;
}

/* 슬라이더 호버 시 버튼 표시 */
.spotlight-slider-container:hover .slider-nav-btn,
.flight-coupons-slider-container:hover .slider-nav-btn {
    opacity: 1;
}

