:root {
    --bg-main: #0a0a0c;
    --bg-secondary: #141417;
    --bg-panel: rgba(255, 255, 255, 0.03);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a5;
    
    --accent-gold: #D4AF37;
    --accent-gold-hover: #F3E5AB;
    --accent-glow: rgba(212, 175, 55, 0.4);
    
    --success: #4ade80;
    --danger: #ef4444;
    
    --border-color: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Noto Sans KR', sans-serif;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

/* 이미지/영상 등은 max-width 초기화 */
img, video, canvas, iframe, svg {
    max-width: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* 모바일: 세로 스크롤만 허용 - 좌우 스와이프 흔들림 방지 */
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    /* 바운스 방지 (모바일) */
    overscroll-behavior-x: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Animations */
.fade-in-up, .slide-in-left, .slide-in-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    /* GPU 가속으로 애니메이션 버벅임 방지 */
    will-change: opacity, transform;
}

.fade-in-up {
    transform: translateY(30px);
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* translateX 대신 translateY 사용 - 가로 오버플로우 방지 */
.slide-in-left {
    transform: translateY(20px);
    opacity: 0;
}
.slide-in-left.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.slide-in-right {
    transform: translateY(20px);
    opacity: 0;
}
.slide-in-right.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    border-radius: 4px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: var(--accent-gold);
    z-index: -1;
    transition: 0.4s ease;
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button:hover {
    color: var(--bg-main);
    box-shadow: 0 0 20px var(--accent-glow);
}

.primary-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-gold);
    color: var(--bg-main);
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
.primary-btn:hover {
    background: var(--accent-gold-hover);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 5%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    /* 스크롤 시 GPU 레이어로 처리하여 버벅임 방지 */
    will-change: transform;
    transform: translateZ(0);
    /* 화면 밖 오버플로우 차단 */
    max-width: 100vw;
    overflow: hidden;
}

.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* 내비게이션 로고 이미지 */
.logo-img {
    height: 48px;
    width: auto;
    max-width: none;
    display: block;
    object-fit: contain;
    /* SVG 로고는 투명 배경이므로 filter 불필요 */
}

.auth-links {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.auth-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    border: 1px solid #ccc;
    border-radius: 30px;
    color: #444;
    transition: 0.3s;
}
.auth-btn:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}
.auth-btn.primary {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.auth-btn.primary:hover {
    background: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ── \uce74\uce74\uc624 \ub0b4\ube44\uac8c\uc774\uc158 \ubc84\ud2bc ──────────────────────────── */
.kakao-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: #FEE500;
    color: #3C1E1E;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.kakao-nav-btn:hover {
    background: #f0d800;
    box-shadow: 0 4px 12px rgba(254,229,0,0.4);
}

/* \ubaa8\ubc14\uc77c: \uce74\uce74\uc624 \ubc84\ud2bc \ud06c\uae30 \ucd95\uc18c */
@media (max-width: 900px) {
    .kakao-nav-btn {
        padding: 7px 12px;
        font-size: 0.8rem;
        gap: 5px;
    }
}

/* ── PC/Mobile 반응형 라우트 클래스 ──────────────────────────────── */
.pc-only {
    display: flex;
}
.mobile-only {
    display: none;
}

/* 모바일 공통 텍스트 링크 스타일 */
.mobile-nav-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
    .mobile-only {
        display: flex !important;
        align-items: center;
        gap: 14px; /* 글자 겹침 방지용 간격 */
    }

    /* 프로필 이미지/이름 숨김 */
    .auth-links #nav-profile-img, 
    .auth-links #nav-username {
        display: none !important;
    }
    
    .auth-links {
        gap: 8px !important;
        justify-content: flex-end !important;
    }

    /* 모바일 로그아웃 버튼: 텍스트 스타일로 변환 */
    .auth-links .auth-btn {
        padding: 0 !important;
        font-size: 0.9rem !important;
        border: none !important;
        background: none !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
        white-space: nowrap;
    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 6px;
    background: none !important;
    box-shadow: none !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #1a1a1a;
}
.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/hero.png') no-repeat center center/cover;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(10,10,12,0.6) 0%, rgba(10,10,12,0.9) 100%);
    z-index: 1;
    /* 마우스/터치 이벤트를 아래부터 통과 - PC 스크롤 차단 방지 */
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-body);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--accent-gold);
    font-weight: 500;
    font-family: var(--font-heading);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 120px 0;
}

.section-badge {
    font-size: 0.8rem;
    color: var(--accent-gold);
    letter-spacing: 4px;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.text-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.section-description.centered {
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text strong {
    color: var(--accent-gold);
    font-weight: 500;
}

.facility-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.facility-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-panel);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: 0.3s ease;
}

.facility-list li:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.facility-list .icon {
    font-size: 1.2rem;
    margin-right: 12px;
}
/* .about-image styles removed */

/* Smart Pricing & CTA Section */
.reservation-section {
    background-color: var(--bg-main);
}

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

.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.pricing-card.highlight {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.5);
}

.pkg-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #1a1a1a;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.pkg-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.pkg-time {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-row:last-child {
    border-bottom: none;
}

.price-row span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-row strong {
    font-size: 1.2rem;
    color: #fff;
    font-family: var(--font-body);
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(255,255,255,0.02);
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.03);
    margin: 0 auto;
}
.pricing-note strong {
    color: var(--accent-gold);
}

.cta-pulse-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-gold), #b8962f);
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: goldPulse 2s infinite;
    transition: all 0.3s;
}

.cta-pulse-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    color: #000;
}

@keyframes goldPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Footer */
footer {
    background: #000;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* 푸터 로고 이미지 (SVG - 투명 배경) */
.footer-logo-img {
    height: 80px;
    width: auto;
    max-width: none;
    display: block;
    object-fit: contain;
    /* 푸터가 다크항이므로 SVG 내부 텍스트는 어두운 배경에도 잘 보여야 한다 */
    /* 서브타이틀은 다크모드에서도 보이도록 색상 유지 */
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-business-info {
    margin-top: 20px;
    font-size: 0.8rem;
    line-height: 1.7;
    opacity: 0.6;
}

.footer-links {
    margin-top: 16px;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-links-divider {
    margin: 0 10px;
    opacity: 0.4;
}

.copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ============================
   이벤트 배너 박스 (PC + 모바일)
   ============================ */
.event-banner-box {
    margin-top: 24px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 16px 28px;
    text-align: center;
}

.event-banner-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-emoji {
    font-size: 1.4rem;
    line-height: 1;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
}

.event-banner-bottom {
    font-size: 0.95rem;
    color: rgba(212, 175, 55, 0.85);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    line-height: 1.6;
}

.event-coupon {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.event-amount {
    display: inline-block;
    background: var(--accent-gold);
    color: #1a1a1a;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-left: 4px;
    white-space: nowrap;
}

/* 모바일 전용 배너 조정 */
@media (max-width: 600px) {
    .logo-img {
        height: 38px;
    }

    .footer-logo-img {
        height: 60px;
    }

    .event-banner-box {
        padding: 14px 18px;
        border-radius: 14px;
        gap: 8px;
        width: 100%;
        max-width: 340px;
    }

    .event-title {
        font-size: 0.95rem;
    }

    .event-banner-bottom {
        font-size: 0.88rem;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .navbar {
        display: flex;
        justify-content: space-between;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.05rem;
    }
    
    .nav-links {
        display: none; /* Just for simplicity in mobile view */
    }
}

/* Rotation Floating Button (PC & Mobile) */
.rotation-fab {
    display: flex;
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--accent-gold), #b8962f);
    color: #000;
    width: auto;           /* 텍스트 폭에 맞게 자동 */
    min-width: auto;      /* 최소 너비 제한 해제 */
    padding: 8px 16px;     /* 더 간결한 패딩 */
    border-radius: 22px;   /* 더 둥글고 세련된 모서리 */
    text-decoration: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--font-heading); /* 명확한 폰트 적용 */
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.3;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4); /* 골드 글로우 강화 */
    z-index: 9999;
    animation: fab-floating 3s infinite ease-in-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2); /* 은은한 화이트 테두리 */
    white-space: nowrap;
}

.rotation-fab:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.5);
}

.rotation-fab:active {
    transform: scale(0.95);
}

@keyframes fab-floating {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.booking-modal-container {
    padding: 35px;
}

@media (max-width: 600px) {
    .booking-modal-container {
        padding: 20px !important;
    }
}

.banner-text strong {
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--accent-gold);
}
/* Mobile Menu Trigger */
.menu-trigger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 10001;
}

.menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-trigger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-trigger.active span:nth-child(2) { opacity: 0; }
.menu-trigger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links a {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: #1a1a1a;
    letter-spacing: 1px;
}

.mobile-nav-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    
    .menu-trigger {
        display: flex;
        order: 3;
        margin-left: 15px;
    }

    .auth-links {
        order: 2;
        margin-left: auto;
        gap: 8px;
    }

    .navbar {
        padding: 15px 20px;
    }
}

@media (max-width: 600px) {
    /* 모바일에서 backdrop-filter 제거 - 스크롤 성능 핵심 개선 */
    .navbar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }
    .auth-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: unset;
    }
    .auth-links {
        gap: 6px;
    }

    section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-content h1 span {
        font-size: 2.3rem;
        display: block;
        margin-top: 10px;
    }
    
    .hero-content p {
        font-size: 1.05rem;
        line-height: 1.8;
        padding: 0 10px;
    }
    
    .section-description {
        font-size: 1.1rem;
        line-height: 1.8;
        padding: 0 5%;
        word-break: keep-all;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .pricing-card {
        padding: 40px 20px;
    }

    .pkg-title {
        font-size: 1.4rem;
    }

    .price-row strong {
        font-size: 1.3rem;
    }

    .pricing-note {
        font-size: 1rem;
        line-height: 1.6;
        padding: 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    /* .rotation-fab reveal removed as it is now globally visible */
    
    .dashboard-panel, .booking-card {
        padding: 15px;
    }

    .calendar-grid {
        gap: 4px;
    }

    .day {
        font-size: 0.9rem;
    }

    .day span {
        font-size: 0.65rem;
    }
    
    .status-legend {
        font-size: 0.7rem;
    }

    /* Booking Summary Mobile Adjustments */
    .summary-row.total {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .summary-row.total strong {
        font-size: 1.5rem;
    }
}

/* Modal System */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex !important;
    opacity: 1;
}

.modal-container {
    background: #fff;
    color: #1a1a1a;
    width: 90%;
    max-width: 420px;
    border-radius: 16px;
    padding: 40px 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}
.modal-close:hover {
    color: #1a1a1a;
}

.modal-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.modal-form-group {
    margin-bottom: 15px;
}
.modal-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: 0.3s;
}
.modal-input:focus {
    outline: none;
    border-color: #1a1a1a;
    background: #fff;
}

.modal-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 24px;
}

.modal-options a {
    color: #666;
    text-decoration: underline;
}

.modal-submit {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
}
.modal-submit:hover {
    background: #000;
}

.modal-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 24px;
}
.modal-footer a {
    color: var(--accent-gold);
    font-weight: bold;
    cursor: pointer;
}

.sns-login {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.sns-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s;
}
.sns-btn:hover {
    transform: translateY(-3px);
}
.sns-kakaotalk { background: #fee500; color: #3c1e1e; }
.sns-naver { background: #03c75a; }
.sns-google { background: #f2f2f2; border: 1px solid #ddd; color: #333; }

.auth-btn-row {
    display: flex;
    gap: 10px;
}
.auth-btn-row .modal-input {
    flex: 1;
}
.auth-btn-row button {
    padding: 0 16px;
    background: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
}

/* Custom Login Modal Image Clone */
.monory-login-modal {
    background: #fff;
    color: #333;
    width: 90%;
    max-width: 380px;
    border-radius: 4px;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.ml-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #ccc;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 300;
}
.ml-close:hover { color: #333; }

.ml-header {
    text-align: center;
    padding: 40px 0 30px;
}
.ml-title {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-body);
}

.ml-body {
    padding: 0 30px 40px;
}

.ml-input-group {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 20px;
}
.ml-input-group input {
    width: 100%;
    padding: 15px 15px;
    border: none;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-body);
}
.ml-input-group input[type="text"] {
    border-bottom: 1px solid #e0e0e0;
}
.ml-input-group input::placeholder {
    color: #aaa;
}

.ml-check-row {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    user-select: none;
}
.ml-check-row input { display: none; }
.ml-checkmark {
    width: 20px; height: 20px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #ccc;
    margin-right: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.8rem;
}
.ml-check-row input:checked + .ml-checkmark {
    background: #ff5c5c;
    border-color: #ff5c5c;
}
.ml-check-row input:not(:checked) + .ml-checkmark i {
    display: none;
}

.ml-submit {
    width: 100%;
    background: #ff5c5c;
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.ml-links {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 30px;
}
.ml-links a { color: #333; text-decoration: none; }
.ml-links a:hover { text-decoration: underline; }

.ml-divider {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 25px;
}
.ml-divider::before, .ml-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #f0f0f0;
}
.ml-divider span {
    padding: 0 15px;
    color: #1a1a1a;
}

.ml-sns-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 15px;
    position: relative;
    font-family: var(--font-body);
    font-weight: 500;
}
.ml-sns-btn .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}
.ml-sns-btn.naver {
    background: #03c75a; color: white;
}
.ml-sns-btn.kakao {
    background: #fee500; color: #3c1e1e;
}
.ml-sns-btn.guest {
    background: #8e9cac; color: white; margin-top: 5px; margin-bottom: 0px;
}

/* Booking Modal Elements */
.booking-modal-container {
    background: #fff;
    color: #1a1a1a;
    width: 95%;
    max-width: 850px;
    border-radius: 16px;
    padding: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.booking-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .booking-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.booking-calendar-section {
    display: flex;
    flex-direction: column;
}

/* 좌측 섹션으로 이동된 시간제 선택 그룹 스타일 조정 */
.booking-calendar-section #group-hourly-select {
    width: 100%;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

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

.calendar-header button {
    background: rgba(0,0,0,0.05);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.2s;
}

.calendar-header button:hover {
    background: var(--accent-gold);
    color: #fff;
}

.calendar-header h4 {
    font-size: 1.2rem;
    font-weight: bold;
    font-family: var(--font-heading);
}

.bg-calendar {
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    display: grid;
}

.bg-calendar .day-name {
    text-align: center;
    font-size: 0.85rem;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 5px;
    color: #666;
}

.bg-calendar .cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: 0.2s;
    background: rgba(0,0,0,0.02);
}

.bg-calendar .cal-day:hover:not(.disabled) {
    background: #f0f0f0;
    border-color: #ddd;
}

.bg-calendar .cal-day.selected {
    background: var(--accent-gold);
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border-color: var(--accent-gold);
}

.bg-calendar .cal-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: transparent;
}

.option-group {
    margin-bottom: 25px;
}

.option-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #444;
    font-weight: bold;
}

.counter-control {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 10px;
    width: max-content;
    border: 1px solid #eaeaea;
}

.counter-control button {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.counter-control button:hover,
.counter-control button:active,
.counter-control button:focus {
    background: var(--accent-gold);
    color: #fff !important;
    border-color: var(--accent-gold);
    outline: none;
}

.counter-control button i {
    pointer-events: none;
    color: inherit;
}

.counter-control input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1.15rem;
    font-weight: bold;
    outline: none;
}

.guest-info-text {
    font-size: 0.8rem;
    color: #888;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .guest-info-text {
        font-size: 0.72rem; /* 모바일에서 더 작게 조절하여 한 줄 유지 */
        white-space: nowrap;
        letter-spacing: -0.3px;
    }
}

.price-summary-box {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.summary-row.total {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: bold;
    margin-bottom: 0;
}
.summary-row.total strong {
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* cache-bust: 20260404192005 */

/* ══════════════════════════════════════════
   예약 모달 2단계 슬라이드 시스템
   ══════════════════════════════════════════ */

/* 슬라이드 컨테이너 */
.booking-steps-wrap {
    overflow: hidden;
    position: relative;
}

.booking-steps-inner {
    display: flex;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.booking-step {
    min-width: 100%;
    flex-shrink: 0;
}

/* 2단계 활성화 */
.booking-steps-inner.step-2 {
    transform: translateX(-100%);
}

/* 2단계 헤더 */
.booking-step2-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.booking-step2-header button {
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: background 0.2s;
    flex-shrink: 0;
}
.booking-step2-header button:hover { background: #f5f5f5; }

.booking-step2-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
}

/* 예약 유형 토글 */
.booking-type-toggle {
    display: flex;
    gap: 0;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 4px;
}

.booking-type-toggle button {
    flex: 1;
    padding: 11px 0;
    border: none;
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.booking-type-toggle button.active {
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
}

/* 2단계 입력 그룹 */
.s2-group {
    margin-bottom: 18px;
}

.s2-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 7px;
}

.s2-group label span.required {
    color: var(--accent-gold);
    margin-left: 2px;
}

.s2-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e8e8e8;
    border-radius: 9px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #1a1a1a;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    outline: none;
}

.s2-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.s2-input::placeholder { color: #bbb; }

textarea.s2-input {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
}

/* 2단계 요약 박스 */
.s2-summary-bar {
    display: flex;
    gap: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.s2-summary-bar .s2-sum-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0; /* Allow shrinking below text content size if needed */
}

/* 1번: 날짜 - 너비 대폭 할당 (YY.MM.DD 요일 한 줄 유지) */
.s2-summary-bar .s2-sum-item:first-child {
    flex: 1.5;
    min-width: 105px;
}
.s2-summary-bar .s2-sum-item:first-child span:last-child {
    white-space: nowrap;
}

/* 3번: 인원 - 너비 최소화 (공간 절약) */
.s2-summary-bar .s2-sum-item:nth-child(3) {
    flex: 0.6;
    min-width: 45px;
}

/* 초소형 모바일 (400px 내외) 대응: 겹침 방지 */
@media (max-width: 420px) {
    .s2-summary-bar {
        gap: 5px;
        padding: 14px 10px;
    }
    .s2-summary-bar .s2-sum-item span:first-child {
        font-size: 0.65rem;
        letter-spacing: -0.2px;
    }
    .s2-summary-bar .s2-sum-item span:last-child {
        font-size: 0.8rem;
    }
    .s2-summary-bar .s2-sum-price {
        font-size: 0.95rem !important;
    }
}

.s2-summary-bar .s2-sum-item span:first-child {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s2-summary-bar .s2-sum-item span:last-child {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
}

.s2-summary-bar .s2-sum-price {
    color: var(--accent-gold) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    white-space: nowrap;
}

/* 결제 버튼 */
.btn-pay {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4af37 0%, #f5d46a 50%, #d4af37 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: background-position 0.4s, box-shadow 0.2s, transform 0.1s;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.btn-pay:hover {
    background-position: 100% 0;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

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

/* 스텝 인디케이터 */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.step-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s, width 0.3s;
}

.step-indicator .dot.active {
    background: var(--accent-gold);
    width: 24px;
    border-radius: 4px;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .booking-step2-header h3 { font-size: 1.2rem; }
    .s2-summary-bar { padding: 12px 15px; }
    .s2-summary-bar .s2-sum-item { min-width: 60px; }
    .btn-pay { font-size: 1rem; padding: 14px; }
    .booking-type-toggle button { padding: 10px 0; font-size: 0.9rem; }
}

/* 강제 모바일 상단바 UI 수정 */
@media (max-width: 768px) {
  .auth-links .pc-only {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .auth-links .mobile-only {
    display: none !important;
  }
}

.mobile-br {
  display: none;
}
@media (max-width: 768px) {
  .mobile-br {
    display: block;
    content: "";
    margin-bottom: 5px;
  }
}

.pc-br {
  display: block;
  content: "";
}
@media (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

/* ── 쿠폰 알림 말풍선 (Coupon Alert Badge) ────────────────────────── */
.coupon-badge-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.coupon-alert-badge {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* JS로 제어 — 절대 !important 금지 */
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #FFD700;
    color: #1a1a1a;
    border: 1px solid rgba(0,0,0,0.25);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1001;
    pointer-events: none;
    animation: badge-bounce-up 2.5s infinite ease-in-out;
}

/* 말풍선 꼬리: 아래쪽을 가리킴 (메뉴 텍스트 방향) */
.coupon-alert-badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 5px 0;
    border-style: solid;
    border-color: #FFD700 transparent transparent;
}

@keyframes badge-bounce-up {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

/* PC 900px 이하 크기 미세 조정 */
@media (min-width: 769px) and (max-width: 900px) {
    .coupon-alert-badge {
        top: -24px;
        font-size: 0.6rem;
        padding: 1px 7px;
    }
}

/* 모바일 전용: '마이페이지' 글자 바로 아래에 배치 */
@media (max-width: 768px) {
    .coupon-alert-badge {
        top: auto;
        bottom: -22px; /* 텍스트 아래로 이동 */
        font-size: 0.6rem;
        padding: 1px 6px;
        animation: badge-bounce-down 2.5s infinite ease-in-out;
    }
    /* 꼬리를 위쪽으로 반전 (위의 '마이페이지' 텍스트를 가리킴) */
    .coupon-alert-badge::after {
        top: -6px;
        bottom: auto;
        border-width: 0 5px 6px;
        border-color: transparent transparent #FFD700;
    }
}

@keyframes badge-bounce-down {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(3px); }
}




/* ============================
   시간제 예약 (Hourly) 스타일
   ============================ */
.hourly-picker-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    background: rgba(0,0,0,0.03);
    padding: 15px;
    border-radius: 12px;
}
.hourly-block {
    flex: 0 0 calc(16.66% - 8px);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: 0.2s;
    color: #333;
}
.hourly-block:hover { border-color: var(--accent-gold); }
.hourly-block.selected { background: var(--accent-gold); color: #fff; border-color: var(--accent-gold); }
.hourly-block.range { background: rgba(212,175,55,0.15); border-color: var(--accent-gold); }

@media (max-width: 600px) {
    .hourly-block {
        flex: 0 0 calc(25% - 8px);
    }
}

/* ============================
   스마트 추천 배너 스타일
   ============================ */
.recommend-banner {
    margin-top: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 15px;
    display: none; /* JS에서 노출 결정 */
    animation: fadeIn 0.4s ease;
}
.recommend-banner .msg {
    font-size: 0.88rem;
    color: var(--accent-gold);
    line-height: 1.5;
    margin-bottom: 8px;
    font-weight: 500;
}
.recommend-banner .btn-apply {
    display: inline-block;
    background: var(--accent-gold);
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.recommend-banner .btn-apply:hover {
    background: #b8962f;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================
   시간제 시간 선택 드롭다운
   ============================ */
.hourly-dropdown-wrap {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-top: 15px;
}
.hourly-dropdown-wrap .dropdown-item {
    flex: 1;
}
.hourly-select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-size: 0.95rem;
    color: #333;
    font-family: inherit;
    cursor: pointer;
    transition: 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}
.hourly-select:hover { border-color: var(--accent-gold); }
.hourly-select:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 0 2px rgba(212,175,55,0.1); }
.hourly-dropdown-wrap .dropdown-sep {
    padding-bottom: 12px;
    color: #888;
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .hourly-dropdown-wrap {
        gap: 10px;
    }
}

/* ============================
   시간제 요금 안내 가이드
   ============================ */
.hourly-price-guide {
    margin-top: 25px;
    background: #fdfbf4; /* 연한 베이지 톤 */
    border: 1px solid #e9e4d0;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.hourly-price-guide h4 {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
}
.hourly-price-guide h4 small {
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.75rem;
}
.price-guide-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pg-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}
.pg-time {
    font-size: 0.88rem;
    color: #666;
    font-weight: 500;
}
.pg-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
}
/* Prime 시간대 강조 */
.pg-prime {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}
.pg-prime .pg-time {
    color: var(--accent-gold);
    font-weight: 700;
}
.pg-prime .pg-price {
    color: var(--accent-gold);
}
.pg-note {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #999;
    text-align: right;
    letter-spacing: -0.2px;
}

@media (max-width: 600px) {
    .hourly-price-guide {
        padding: 14px;
        margin-top: 20px;
    }
    .pg-row {
        padding: 8px 12px;
    }
    .pg-time {
        font-size: 0.8rem;
    }
    .pg-price {
        font-size: 0.88rem;
    }
}

/* ============================
   리뷰 약속 할인 강조 텍스트
   ============================ */
.review-promo-text {
    white-space: nowrap;
    letter-spacing: -0.5px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: inline-block;
}

@media (max-width: 600px) {
    .review-promo-text {
        font-size: 13px; /* 모바일에서 한 줄 유지 */
        letter-spacing: -0.8px;
    }
}
