:root {
    --navy: #0f172a;
    --navy-light: #1e293b;
    --navy-soft: #334155;
    --gold: #c9a227;
    --gold-light: #e8d48b;
    --gold-dark: #a6851f;
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #1e293b;
    --text-soft: #64748b;
    --border: #e2e8f0;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-hover: 0 12px 40px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding-top: 72px;
    min-height: 100vh;
}

/* Navbar */
#mainNav {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.85rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

#mainNav.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.text-gold { color: var(--gold) !important; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0f172a;
    border: none;
    font-weight: 600;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #0f172a;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.9rem !important;
    border-radius: 8px;
}
.nav-link:hover { color: var(--gold-light) !important; }

/* Main content */
.main-content {
    min-height: calc(100vh - 320px);
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    padding: 5rem 0 4.5rem;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(201,162,39,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.hero h1 {
    font-weight: 800;
    font-size: clamp(1.9rem, 5vw, 2.8rem);
    letter-spacing: -0.03em;
    line-height: 1.25;
}
.hero .lead {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 540px;
}

/* Cards */
.property-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid var(--border);
}
.property-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.property-card .card-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1e293b, #334155);
    overflow: hidden;
}
.property-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.property-card:hover .card-img-wrap img {
    transform: scale(1.05);
}
.property-card .badge-type {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15,23,42,0.85);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
}
.property-card .card-body {
    padding: 1.25rem 1.35rem 1.4rem;
}
.property-card .card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.property-card .region-tag {
    font-size: 0.8rem;
    color: var(--text-soft);
}
.property-card .price {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
}
.property-card .price small {
    font-weight: 500;
    color: var(--text-soft);
    font-size: 0.8rem;
}

/* Region page header */
.region-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 3.5rem 0 3rem;
}
.region-hero h1 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Property detail */
.property-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 3rem 0 2.5rem;
}
.property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.95rem;
    opacity: 0.9;
}
.property-meta i {
    color: var(--gold);
    margin-right: 0.35rem;
}

/* Booking form */
.booking-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border);
    position: sticky;
    top: 90px;
}
.booking-card .card-header {
    background: var(--navy);
    color: white;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 1.1rem 1.4rem;
    font-weight: 600;
}

/* Footer base */
.site-footer a { color: #94a3b8; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

/* Utilities */
.section-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: #0f172a !important;
}
.section-subtitle {
    color: #64748b !important;
    margin-bottom: 2rem;
}
.bg-white .section-title,
.bg-white h2,
.bg-white h3,
.bg-white h4 {
    color: #0f172a !important;
}
.bg-navy .section-title,
.bg-navy h2 {
    color: #f8fafc !important;
}
.bg-navy .section-subtitle {
    color: #cbd5e1 !important;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
    body { padding-top: 64px; }
    .hero { padding: 3.5rem 0 3rem; }
    .booking-card { position: static; margin-top: 2rem; }
}

/* Gallery */
.gallery-thumbs .thumb-btn img {
    border: 2px solid transparent;
}
.gallery-thumbs .thumb-btn.active-thumb img,
.gallery-thumbs .thumb-btn:hover img {
    opacity: 1 !important;
    border-color: var(--gold);
}
.carousel-indicators {
    margin-bottom: 0.8rem;
}
.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
}
.carousel-indicators .active {
    background-color: var(--gold);
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-overlay img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    cursor: default;
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: white;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    z-index: 10000;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ========== Stage 3: 메인 포털 ========== */

/* Hero + Search */
.hero-search {
    padding: 4rem 0 3.5rem;
}
.search-card {
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    padding: 1.5rem 1.4rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    color: var(--text);
}
.search-card .form-label {
    font-weight: 600;
    font-size: 0.78rem;
}
.search-card .form-select,
.search-card .form-control {
    border-radius: 12px;
    border-color: #e2e8f0;
    font-size: 0.95rem;
}
.search-card .form-select:focus,
.search-card .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.2);
}

/* Promo scroll (광고 배너) */
.promo-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}
.promo-scroll::-webkit-scrollbar { height: 4px; }
.promo-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

.promo-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--promo-bg, #1e293b);
    color: white;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    color: white;
}
.promo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.promo-body { flex: 1; min-width: 0; }
.promo-title {
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.promo-sub {
    font-size: 0.75rem;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.promo-cta {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.9;
    white-space: nowrap;
}

/* Region big cards */
.region-big-card {
    display: block;
    height: 100%;
}
.region-big-inner {
    border-radius: 18px;
    padding: 1.6rem 1.2rem;
    color: white;
    min-height: 180px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
@media (min-width: 992px) {
    .region-big-inner {
        min-height: 200px;
    }
}
.region-big-card:hover .region-big-inner {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.25);
}
.region-big-icon {
    font-size: 1.8rem;
    line-height: 1;
    height: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    opacity: 0.95;
}
.region-big-icon i {
    display: inline-block;
    font-size: inherit;
    line-height: 1;
}
.region-big-name {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}
.region-big-desc {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.6rem;
    line-height: 1.35;
}
.region-big-cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-light);
}

/* Premium badge */
.property-card.is-premium {
    border-color: rgba(201,162,39,0.45);
    box-shadow: 0 4px 20px rgba(201,162,39,0.12);
}
.badge-premium {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0f172a;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.25rem 0.55rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
    z-index: 2;
}

/* Navy section */
.bg-navy {
    background: var(--navy);
}

/* Search compact bar */
.search-bar-compact .form-select,
.search-bar-compact .form-control {
    border-radius: 10px;
    font-size: 0.9rem;
}

/* Mobile tweaks for new components */
@media (max-width: 767.98px) {
    .hero-search { padding: 2.8rem 0 2.2rem; }
    .search-card { padding: 1.15rem 1rem; border-radius: 16px; }
    .search-card .form-select-lg,
    .search-card .form-control-lg {
        font-size: 0.92rem;
        padding: 0.55rem 0.75rem;
    }
    .promo-card { flex: 0 0 230px; padding: 12px 14px; }
    .region-big-inner { min-height: 140px; padding: 1.25rem 1rem; }
    .region-big-name { font-size: 1.05rem; }
    .property-card .card-title { font-size: 0.98rem; }
    .property-card .card-body { padding: 0.9rem 1rem 1.1rem; }
}


/* ========== Luxury polish v3c2 ========== */

:root {
    --navy: #0b1220;
    --navy-light: #152238;
    --navy-soft: #243047;
    --gold: #d4af37;
    --gold-light: #f0d78c;
    --gold-dark: #b8962e;
    --bg: #f5f6f8;
}

#mainNav {
    background: rgba(11, 18, 32, 0.92);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    padding: 0.75rem 0;
}
#mainNav.scrolled {
    background: rgba(11, 18, 32, 0.98);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    border-bottom-color: rgba(212,175,55,0.2);
}
.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.08));
    border: 1px solid rgba(212,175,55,0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.05rem;
}
.brand-text {
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 10px;
    padding: 0.4rem 0.55rem;
}
.btn-gold {
    background: linear-gradient(135deg, #e8c547, #b8962e);
    box-shadow: 0 4px 14px rgba(184, 150, 46, 0.35);
    letter-spacing: 0.02em;
}
.btn-gold:hover {
    box-shadow: 0 6px 20px rgba(184, 150, 46, 0.45);
    transform: translateY(-1px);
}

.hero, .hero-search {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(212,175,55,0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 90% 80%, rgba(59,130,246,0.08) 0%, transparent 40%),
        linear-gradient(160deg, #0b1220 0%, #152238 45%, #0b1220 100%);
}
.search-card {
    border: 1px solid rgba(212,175,55,0.15);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05) inset;
}

/* Footer compact horizontal */
.site-footer {
    background: linear-gradient(180deg, #0b1220 0%, #070d18 100%);
    color: #94a3b8;
    padding: 0.85rem 0 0.65rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(212,175,55,0.12);
}
.site-footer a { color: #94a3b8; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

.footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1.1rem;
}

.footer-brand { flex: 0 0 auto; }
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.footer-logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(212,175,55,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
}
.footer-brand-name {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
}
.footer-brand-sub {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.footer-regions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.8rem;
    font-size: 0.8rem;
}
.footer-regions a { color: #94a3b8; white-space: nowrap; }
.footer-regions a:hover { color: var(--gold); }

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.85rem;
    font-size: 0.78rem;
}
.footer-contact a {
    color: #94a3b8;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact i { font-size: 0.82rem; opacity: 0.85; }

.footer-partners {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem 0.75rem;
}
.footer-partner-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
}
.footer-partner-link:hover { color: #fff; }
.fp-icon {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 800;
    flex-shrink: 0;
}
.fp-reskore {
    background: linear-gradient(135deg, #1a1a1a, #3d2b00);
    border: 1px solid #c9a227;
    color: #e8d48b;
}
.fp-tgy {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #fff;
}

.footer-copy-line {
    margin-top: 0.45rem;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.7rem;
    color: #64748b;
    text-align: center;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    color: var(--gold);
    font-size: 1.05rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(212,175,55,0.25);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    cursor: pointer;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: linear-gradient(145deg, var(--gold), var(--gold-dark));
    color: #0f172a;
}

.property-card {
    border-radius: 18px;
    border: 1px solid rgba(15,23,42,0.06);
}
.property-card:hover {
    border-color: rgba(212,175,55,0.25);
}

@media (max-width: 991.98px) {
    .footer-row { gap: 0.5rem 0.9rem; }
    .footer-contact { width: 100%; }
}

@media (max-width: 767.98px) {
    .site-footer {
        padding: 0.9rem 0 0.7rem;
        margin-top: 2rem;
    }
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
    .footer-regions { gap: 0.2rem 0.65rem; }
    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.28rem;
    }
    .footer-partners { gap: 0.3rem 0.8rem; }
    .footer-copy-line {
        margin-top: 0.35rem;
        padding-top: 0.3rem;
        text-align: left;
    }
    .back-to-top {
        width: 42px;
        height: 42px;
        right: 14px;
        bottom: 16px;
    }
}

/* PWA install button */
.btn-install {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
    border: 1px solid rgba(212,175,55,0.45);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    white-space: nowrap;
    line-height: 1.2;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-install:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0f172a;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(184, 150, 46, 0.4);
}
.btn-install i {
    font-size: 0.95rem;
}
@media (max-width: 575.98px) {
    .btn-install .install-label {
        display: none;
    }
    .btn-install {
        padding: 0.4rem 0.55rem;
        border-radius: 10px;
    }
}
/* 앱(standalone) 모드에서는 버튼 강제 숨김 */
@media (display-mode: standalone), (display-mode: fullscreen), (display-mode: minimal-ui) {
    #pwaInstallBtn {
        display: none !important;
    }
}

/* Sample image regions / cards */
.region-big-inner {
    background-size: cover !important;
    background-position: center !important;
}
.property-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-search {
    background-size: cover !important;
    background-position: center !important;
}
.region-hero {
    background-size: cover !important;
    background-position: center !important;
}

/* Region feature photos */
.region-feature-img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}
.region-feature-body {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #334155 !important;
}
.region-feature-body.text-muted {
    color: #475569 !important;
}
.region-feature-body p {
    margin-bottom: 0.9rem;
    color: #334155 !important;
}
.region-feature-body h2,
.region-feature-body h3,
.region-feature-body h4 {
    color: #0f172a !important;
    font-weight: 700;
    margin-top: 1rem;
}
.region-feature-body a {
    color: #a6851f;
    text-decoration: underline;
}
.region-feature-body strong,
.region-feature-body b {
    color: #0f172a;
}
/* 지역 소개 제목 */
.region-feature-title {
    color: #0f172a !important;
}
/* 핵심 포인트 박스: 어두운 테마에 맞게 */
.region-highlight-box {
    background: #fffbeb !important;
    border: 1px solid #f0d78c !important;
    color: #1e293b !important;
}
.region-highlight-box strong {
    color: #0f172a;
}


/* Brand / footer logo images */
.brand-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}
.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
    display: block;
}
.footer-logo-mark {
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.region-side-title {
    color: #0f172a !important;
    font-size: 0.95rem;
}


/* Bootstrap 로드 전/후에도 데스크톱에서 메뉴 강제 정리 */
@media (min-width: 992px) {
  #navMenu.navbar-collapse {
    display: flex !important;
  }
}
@media (max-width: 991.98px) {
  #navMenu.navbar-collapse:not(.show) {
    display: none !important;
  }
}


/* 숙소 카드 요금 블록 — 한 줄 깨짐 방지 */
.property-card .card-price-block {
    margin-top: 0.35rem;
}
.property-card .card-price-block .price {
    font-weight: 800;
    color: var(--navy, #0f172a);
    font-size: 1.12rem;
    line-height: 1.25;
    white-space: nowrap;
}
.property-card .card-price-block .price small {
    font-weight: 500;
    color: #64748b;
    font-size: 0.82rem;
}
.property-card .card-price-block .price-meta {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 0.15rem;
    line-height: 1.35;
}
.property-card .card-price-block .price-meta .sep {
    margin: 0 0.15rem;
    opacity: 0.6;
}
.property-card .card-price-block .price-meta.peak {
    color: #b45309;
    font-weight: 600;
}
.property-card .card-price-block .price-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: #64748b;
}
.property-card .card-price-block .price-foot .cap {
    margin-left: auto;
}
@media (max-width: 575.98px) {
    .property-card .card-price-block .price {
        font-size: 1rem;
    }
    .property-card .card-price-block .price-foot .cap {
        margin-left: 0;
    }
}


/* 숙소 홍보 단독 모드: 이탈 링크 차단 */
body.is-property-promo .footer-regions a[href^="/region"] { display: none !important; }
body.is-property-promo a.nav-link[href="/"],
body.is-property-promo a.nav-link[href="/partner-guide.html"],
body.is-property-promo .nav-item.dropdown { display: none !important; }

body.is-property-promo #pwaInstallBtn { display: none !important; }


/* 단독 모드: 숙소명 헤더 */
body.is-property-promo .brand-text {
  font-size: 0.95rem;
  max-width: 42vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 992px) {
  body.is-property-promo .brand-text { max-width: 28rem; font-size: 1.05rem; }
}
