/* 새로운 현대적 스타일 - 강한 주황색 테마 */
:root {
    --primary-orange: #f97316;
    --light-orange: #fb923c;
    --pale-orange: #fed7aa;
    --dark-orange: #ea580c;
    --accent-orange: #dc2626;
    --bg-cream: #fff7ed;
    --bg-white: #ffffff;
    --text-dark: #1c1917;
    --text-gray: #57534e;
    --text-light: #78716c;
    --border-light: #f3f4f6;
    --shadow-light: 0 2px 12px rgba(249, 115, 22, 0.1);
    --shadow-medium: 0 4px 20px rgba(249, 115, 22, 0.15);
    --shadow-strong: 0 8px 32px rgba(249, 115, 22, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

.hidden {
    display: none !important;
}

/* 프리미엄 헤더 디자인 */
.premium-header {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 50%, #fed7aa 100%);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 3px solid var(--primary-orange);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
}

/* 브랜드 섹션 */
.brand-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-container {
    position: relative;
}

.brand-logo {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
    transition: transform 0.3s ease;
}

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

.logo-fallback {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.logo-icon {
    font-size: 2.5rem;
    color: white;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.site-tagline {
    font-size: 1rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
}

/* 네비게이션 메뉴 */
.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--primary-orange);
    border-radius: 25px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.nav-button:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.nav-button i {
    font-size: 1rem;
}

.button-text {
    font-weight: 600;
}

/* 모바일 토글 */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    gap: 4px;
}

.toggle-line {
    width: 28px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 모바일 메뉴 */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.mobile-nav-item:hover {
    background: var(--pale-orange);
    color: var(--primary-orange);
}

.mobile-nav-item i {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

/* 헤더 설명 */
.header-description {
    background: linear-gradient(135deg, var(--pale-orange) 0%, var(--bg-cream) 100%);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.description-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.description-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.highlight {
    color: var(--primary-orange);
    font-weight: 700;
}

/* 모바일 메뉴 토글 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary-orange);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 네비게이션 버튼들 */
.nav-buttons {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid var(--pale-orange);
    background: var(--bg-white);
    color: var(--primary-orange);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-btn i {
    font-size: 1.1rem;
}

/* 메인 콘텐츠 */
.main-content {
    padding: 2rem 0;
    min-height: calc(100vh - 80px);
}

/* 위치 알림 */
.location-alert {
    background: linear-gradient(135deg, var(--pale-orange), var(--light-orange));
    margin: 0 2rem 1rem;
    border-radius: 16px;
    padding: 1rem;
    display: none;
    animation: slideDown 0.3s ease;
}

.location-alert.show {
    display: block;
}

.location-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.location-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
    color: var(--text-gray);
    padding: 0 8px;
}

/* 컨트롤 섹션 */
.controls-section {
    margin: 0 2rem 1.5rem;
}

.controls-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    gap: 1rem;
}

.filter-section {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.category-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-filter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.category-filter-btn i {
    font-size: 1rem;
}

.view-toggle-section {
    flex-shrink: 0;
}

.view-toggle {
    display: flex;
    background: var(--pale-orange);
    border-radius: 20px;
    padding: 3px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: none;
    border-radius: 17px;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 70px;
}

.view-btn.active {
    background: var(--bg-white);
    color: var(--primary-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.view-btn:hover:not(.active) {
    color: var(--primary-orange);
}

.view-btn i {
    font-size: 1rem;
}

.view-btn-text {
    font-size: 0.9rem;
}

/* 레스토랑 컨테이너 */
.restaurants-container {
    margin: 0 2rem;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* PC에서 최대 3개 컬럼 제한 */
@media (min-width: 1200px) {
    .restaurants-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* 레스토랑 카드 */
.restaurant-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-light);
}

.restaurant-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--pale-orange);
}

.restaurant-card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--pale-orange), var(--light-orange));
    position: relative;
    overflow: hidden;
}

.restaurant-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.restaurant-card:hover .restaurant-card-image img {
    transform: scale(1.08);
}

.restaurant-card-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.8;
}

.restaurant-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-orange);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.restaurant-card-special {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.restaurant-card-content {
    padding: 2rem 1.5rem 1.5rem;
}

.restaurant-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.restaurant-card-address {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.restaurant-card-signature {
    background: var(--bg-cream);
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-orange);
    position: relative;
}

.restaurant-card-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 171, 145, 0.05) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.restaurant-card-signature-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 4px;
}

.restaurant-card-signature-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.restaurant-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.restaurant-card-recommender {
    background: var(--pale-orange);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

/* 특별 추천자 스타일 */
.restaurant-card-recommender.special-recommender {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.restaurant-card-recommender.special-recommender::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.special-badge {
    font-size: 0.7rem;
    margin-left: 2px;
    animation: sparkle 1.5s ease-in-out infinite alternate;
}

@keyframes sparkle {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* 리스트 뷰에서 특별 추천자 스타일 */
.restaurants-grid.list-view .restaurant-card-recommender.special-recommender {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    box-shadow: 0 2px 12px rgba(251, 191, 36, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* 모바일에서 특별 추천자 스타일 */
@media (max-width: 768px) {
    .restaurant-card-recommender.special-recommender {
        background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
        box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4) !important;
    }

    .restaurants-grid.list-view .restaurant-card-recommender.special-recommender {
        background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
        box-shadow: 0 1px 6px rgba(251, 191, 36, 0.4) !important;
    }
}

.restaurant-card-buttons {
    display: flex;
    gap: 8px;
}

.restaurant-card-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.restaurant-card-btn-primary {
    background: var(--primary-orange);
    color: white;
}

.restaurant-card-btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

.restaurant-card-btn-secondary {
    background: var(--pale-orange);
    color: var(--text-dark);
}

.restaurant-card-btn-secondary:hover {
    background: var(--light-orange);
    transform: translateY(-2px);
}

/* 리스트 뷰 */
.restaurants-grid.list-view {
    grid-template-columns: 1fr !important;
    gap: 24px;
}

.restaurants-grid.list-view .restaurant-card {
    display: flex;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.restaurants-grid.list-view .restaurant-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.restaurants-grid.list-view .restaurant-card-image {
    width: 240px;
    height: 180px;
    flex-shrink: 0;
    object-fit: cover;
}

.restaurants-grid.list-view .restaurant-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    background: var(--bg-white);
    min-width: 0;
}

.restaurants-grid.list-view .restaurant-card-header {
    margin-bottom: 0.75rem;
}

.restaurants-grid.list-view .restaurant-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.restaurants-grid.list-view .restaurant-card-address {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.restaurants-grid.list-view .restaurant-card-address i {
    color: var(--primary-orange);
    flex-shrink: 0;
}

.restaurants-grid.list-view .restaurant-card-body {
    flex: 1;
    margin-bottom: 0.75rem;
}

.restaurants-grid.list-view .restaurant-card-signature {
    background: var(--bg-cream);
    border-left: 3px solid var(--primary-orange);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.restaurants-grid.list-view .restaurant-card-signature-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.restaurants-grid.list-view .restaurant-card-signature-text {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.restaurants-grid.list-view .restaurant-card-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: auto;
}

.restaurants-grid.list-view .restaurant-card-recommender {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.restaurants-grid.list-view .restaurant-card-buttons {
    display: none;
}

.restaurants-grid.list-view .restaurant-card-btn {
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.restaurants-grid.list-view .restaurant-card-btn-primary {
    background: var(--primary-orange);
    color: white;
}

.restaurants-grid.list-view .restaurant-card-btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-1px);
}

.restaurants-grid.list-view .restaurant-card-btn-secondary {
    background: var(--pale-orange);
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
}

.restaurants-grid.list-view .restaurant-card-btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-1px);
}


/* 간단한 주황색 로딩 인디케이터 */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--pale-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-indicator.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--text-dark);
}

/* 간단한 스피너 */
.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--pale-orange);
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-orange);
}

.loading-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.loading-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    opacity: 0.8;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .restaurants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .modern-header .navbar {
        padding: 1rem;
    }

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

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

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

    .brand-subtitle {
        font-size: 0.9rem;
    }

    .brand-description {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }

    .brand-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .controls-section {
        margin: 0 1rem 1rem;
    }

    .controls-container {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        border-radius: 12px;
    }

    .filter-section {
        flex: 1;
    }

    .category-filter-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
        min-height: 40px;
        border-radius: 16px;
    }

    .category-filter-btn i {
        font-size: 0.9rem;
    }

    .view-toggle {
        padding: 2px;
        border-radius: 16px;
    }

    .view-btn {
        padding: 8px 10px;
        min-width: 40px;
        border-radius: 14px;
    }

    .view-btn-text {
        display: none;
    }

    .view-btn i {
        font-size: 1.1rem;
    }

    .location-alert {
        margin: 0 1rem 1rem;
        padding: 0.75rem 1rem;
    }

    .restaurants-container {
        margin: 0 1rem;
    }

    .restaurants-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .restaurants-grid.list-view {
        gap: 12px;
    }
}



/* 모바일 전용 리스트 뷰 디자인 */
.restaurants-grid.list-view .restaurant-card {
    flex-direction: row;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.restaurants-grid.list-view .restaurant-card-image {
    width: 120px;
    height: 150px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
}

.restaurants-grid.list-view .restaurant-card-content {
    flex: 1;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.restaurants-grid.list-view .restaurant-card-header {
    margin-bottom: 0.5rem;
}

.restaurants-grid.list-view .restaurant-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.restaurants-grid.list-view .restaurant-card-address {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
}

.restaurants-grid.list-view .restaurant-card-body {
    flex: 1;
    margin-bottom: 0.5rem;
}

.restaurants-grid.list-view .restaurant-card-signature {
    background: var(--bg-cream);
    border-left: 2px solid var(--primary-orange);
    padding: 0.4rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.restaurants-grid.list-view .restaurant-card-signature-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.restaurants-grid.list-view .restaurant-card-signature-text {
    font-size: 0.7rem;
    color: var(--text-dark);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.restaurants-grid.list-view .restaurant-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.restaurants-grid.list-view .restaurant-card-recommender {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
    box-shadow: 0 1px 4px rgba(249, 115, 22, 0.3);
}

.restaurants-grid.list-view .restaurant-card-recommender i {
    font-size: 0.6rem;
}

.restaurants-grid.list-view .restaurant-card-buttons {
    display: none;
}

.loading-cube-container {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.loading-cube {
    width: 100px;
    height: 100px;
}

.cube-face {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
}

.cube-face.front,
.cube-face.back {
    transform: rotateY(0deg) translateZ(50px);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(50px);
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(50px);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(50px);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(50px);
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(50px);
}

.loading-rings {
    width: 160px;
    height: 160px;
}

.ring-1 {
    width: 160px;
    height: 160px;
}

.ring-2 {
    width: 130px;
    height: 130px;
    top: 15px;
    left: 15px;
}

.ring-3 {
    width: 100px;
    height: 100px;
    top: 30px;
    left: 30px;
}

.loading-title {
    font-size: 1.8rem;
}

.loading-text {
    font-size: 1.1rem;
}

.loading-subtitle {
    font-size: 1rem;
}


@media (max-width: 480px) {
    .main-content {
        padding: 1rem 0;
    }

    .restaurants-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* 카테고리 모
달 스타일 */
.category-modal {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.category-modal-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.category-modal-body {
    padding: 2rem;
    background: var(--bg-white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.category-card {
    background: var(--bg-white);
    border: 2px solid var(--pale-orange);
    border-radius: 16px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-height: 110px;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-orange);
}

.category-card.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-medium);
}

.category-card.special {
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, #fff8f0, var(--pale-orange));
}

.category-card.special.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
}

.category-icon {
    font-size: 2.2rem;
    margin-bottom: 4px;
}

.category-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
    line-height: 1.2;
}

.category-count {
    font-size: 0.75rem;
    opacity: 0.8;
}

.category-card.active .category-count {
    opacity: 0.9;
}

/* 지도 컨테이너 스타일 */
.new-map-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.new-map-container.hidden {
    display: none;
}

.map-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-title-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-title-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.map-close-btn {
    background: var(--pale-orange);
    border: none;
    color: var(--text-dark);
    padding: 10px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.map-close-btn:hover {
    background: var(--light-orange);
    transform: translateY(-2px);
}

/* 모바일 반응형 - 카테고리 모달 */
@media (max-width: 768px) {
    .category-modal-header {
        padding: 1rem 1.5rem;
    }

    .category-modal-body {
        padding: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 100%;
    }

    .category-card {
        padding: 0.8rem 0.4rem;
        min-height: 90px;
        gap: 4px;
    }

    .category-icon {
        font-size: 1.8rem;
    }

    .category-name {
        font-size: 0.8rem;
    }

    .category-count {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        min-height: 85px;
        padding: 0.6rem 0.3rem;
        gap: 3px;
    }

    .category-icon {
        font-size: 1.6rem;
    }

    .category-name {
        font-size: 0.75rem;
    }

    .category-count {
        font-size: 0.65rem;
    }
}

/* 현
/* 현대적 상세보기 모달 스타일 */
.modern-restaurant-modal {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--bg-white);
    max-width: 700px;
    margin: 0 auto;
}

.modern-modal-header {
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal-image-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pale-orange), var(--light-orange));
    height: 250px;
}

.modern-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.modern-modal-emoji {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--pale-orange), var(--light-orange));
}

.modal-image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
}

.modern-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    z-index: 10;
}

.modern-close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-category-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-orange);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.modal-info-section {
    padding: 2rem;
    background: var(--bg-white);
}

.restaurant-title-area {
    text-align: left;
}

.modern-restaurant-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.restaurant-location {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.restaurant-location i {
    color: var(--primary-orange);
    font-size: 1.3rem;
}

.restaurant-distance {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1rem;
}

.modern-modal-body {
    padding: 2rem;
    background: #fafafa;
}

.info-cards-container {
    display: grid;
    gap: 1.5rem;
}

.modern-info-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(249, 115, 22, 0.1);
    transition: all 0.3s ease;
}

.modern-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.15);
}

.modern-info-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.signature-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
}

.description-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.recommender-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.card-title h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.card-title p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.card-content {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

.card-content p {
    margin: 0;
}

.recommender-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.modern-modal-footer {
    padding: 1.5rem 2rem 2rem;
    background: white;
    display: flex;
    gap: 1rem;
}

.modern-action-btn {
    flex: 1;
    padding: 1rem 2rem;
    border-radius: 16px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-btn {
    background: #f8f9fa;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.secondary-btn:hover {
    background: var(--pale-orange);
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.primary-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .modern-restaurant-modal {
        max-width: 95vw;
        margin: 1rem auto;
    }

    .modal-image-section {
        height: 200px;
    }

    .modal-info-section {
        padding: 1.5rem;
    }

    .modern-restaurant-name {
        font-size: 1.5rem;
    }

    .modern-modal-body {
        padding: 1.5rem;
    }

    .modern-info-card {
        padding: 1.25rem;
    }

    .card-header {
        margin-bottom: 1rem;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
        font-size: 1.1rem;
    }

    .card-title h3 {
        font-size: 1.1rem;
    }

    .modern-modal-footer {
        padding: 1.25rem 1.5rem 1.5rem;
        flex-direction: column;
    }
}

.recommender-badge {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.modal-footer-actions {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    gap: 1rem;
}

.modal-action-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-btn {
    background: var(--bg-white);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.secondary-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border: 2px solid transparent;
    color: white;
}

.primary-btn:hover {
    background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    color: white;
    text-decoration: none;
}

/* 모바일 반응형 - 모달 */
@media (max-width: 768px) {
    .modal-image-container {
        height: 220px;
    }

    .restaurant-modal-title {
        font-size: 1.6rem;
    }

    .modal-body-content {
        padding: 1.5rem;
    }

    .modal-footer-actions {
        padding: 1rem 1.5rem 1.5rem;
        flex-direction: column;
    }

    .modal-action-btn {
        padding: 12px 16px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .modal-info-card {
        padding: 1.2rem;
    }
}

/* 프리미엄 푸터 디자인 */
.premium-footer {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 30%, #fed7aa 70%, #ffedd5 100%);
    margin-top: 5rem;
    padding: 4rem 0;
    border-top: 4px solid var(--primary-orange);
    position: relative;
    box-shadow: 0 -8px 32px rgba(249, 115, 22, 0.1);
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), var(--light-orange), var(--primary-orange), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* 기존 푸터 스타일 제거됨 - 새로운 푸터 사용 */

.modern-community-link i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.community-link-text {
    flex: 1;
    line-height: 1.3;
    word-break: keep-all;
}

.footer-info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 179, 102, 0.2);
}

.footer-brand-info {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(255, 179, 102, 0.3);
}

.footer-logo-fallback {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.footer-brand-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.footer-brand-text p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1rem;
}

.footer-credits {
    text-align: right;
    flex: 1;
}

.footer-made-by {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-chat-name {
    color: var(--primary-orange);
    font-weight: 700;
    display: inline-block;
}

.footer-creator {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-disclaimer {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
    word-break: keep-all;
}

/* 제작자 정보 스타일 개선 */
.creator-title {
    display: block;
    font-weight: 600;
    color: var(--primary-orange);
    line-height: 1.3;
    margin-bottom: 0.25rem;
    word-break: keep-all;
}

.creator-role {
    display: block;
    font-weight: 500;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* 푸터 공지사항 스타일 개선 */
.footer-notice {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 146, 60, 0.05));
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-notice i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.notice-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.notice-text strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* 푸터 반응형 */
@media (max-width: 768px) {
    .modern-footer {
        padding: 2rem 0 1.5rem;
        margin-top: 2rem;
    }

    /* 기존 푸터 반응형 스타일 제거됨 */
}

@media (max-width: 480px) {
    .footer-logo {
        flex-direction: column;
        gap: 12px;
    }

    .footer-logo-img,
    .footer-logo-fallback {
        width: 48px;
        height: 48px;
    }

    .footer-brand-text h4 {
        font-size: 1.2rem;
    }

    .footer-brand-text p {
        font-size: 0.9rem;
    }
}

/* 
브랜드 섹션 */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(255, 138, 101, 0.3);
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 500;
    margin: 0;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* 커뮤니티 섹션 */
.footer-community-section .section-title,
.footer-info-section .section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.footer-community-section .section-title i,
.footer-info-section .section-title i {
    color: var(--primary-orange);
    font-size: 1rem;
}

.community-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.community-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border: 2px solid var(--pale-orange);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 138, 101, 0.1);
}

.community-link:hover {
    background: var(--pale-orange);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 101, 0.2);
    text-decoration: none;
    border-color: var(--primary-orange);
}

.link-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.link-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.link-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* 정보 섹션 */
.info-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.info-item.disclaimer {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 138, 101, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-orange);
}

.info-item.disclaimer i {
    color: var(--primary-orange);
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* 하단 카피라이트 */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 138, 101, 0.2);
    gap: 2rem;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-orange);
    text-decoration: none;
}

/* 푸터 반응형 */
@media (max-width: 768px) {
    .modern-footer {
        padding: 2rem 0 1.5rem;
        margin-top: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .brand-title {
        font-size: 1.2rem;
    }

    .community-link {
        padding: 0.8rem;
    }

    .link-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-main-content {
        gap: 1.5rem;
    }

    .footer-brand-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .brand-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .community-link {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .link-content {
        text-align: center;
    }
}

/* 헤더 반응형 
디자인 */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.75rem;
    }

    .nav-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .site-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .main-navbar {
        padding: 1rem 0;
    }

    .brand-section {
        gap: 1rem;
    }

    .brand-logo,
    .logo-fallback {
        width: 60px;
        height: 60px;
    }

    .logo-icon {
        font-size: 2rem;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .site-tagline {
        font-size: 0.9rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .description-text {
        font-size: 1rem;
        text-align: left;
    }

    .header-description {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.75rem;
    }

    .brand-section {
        gap: 0.75rem;
    }

    .brand-logo,
    .logo-fallback {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .logo-icon {
        font-size: 1.8rem;
    }

    .site-title {
        font-size: 1.3rem;
    }

    .site-tagline {
        font-size: 0.8rem;
    }

    .description-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .mobile-nav-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 푸터 브
랜드 섹션 */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.footer-logo-fallback {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.footer-logo-icon {
    font-size: 2rem;
    color: white;
}

.footer-brand-info {
    flex: 1;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.footer-subtitle {
    font-size: 1rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* 푸터 섹션 타이틀 */
.footer-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.footer-section-title i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

/* 커뮤니티 섹션 */
.community-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.community-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border: 2px solid var(--pale-orange);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.community-card:hover {
    background: var(--pale-orange);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
    text-decoration: none;
    border-color: var(--primary-orange);
}

.community-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.community-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.community-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

/* 정보 섹션 */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-card {
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
}

.info-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.footer-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.footer-notice i {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.footer-notice p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

/* 푸터 하단 */
.footer-bottom {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    margin: 0 -2rem;
    padding: 2rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.copyright p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.footer-actions {
    display: flex;
    gap: 1rem;
}

.footer-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-action-btn i {
    font-size: 1rem;
}

/* 푸터 반응형 */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-bottom {
        margin: 0 -1rem;
        padding: 1.5rem 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .premium-footer {
        padding: 3rem 0 0;
        margin-top: 3rem;
    }

    .footer-container {
        padding: 0 0.75rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-logo-img,
    .footer-logo-fallback {
        width: 50px;
        height: 50px;
    }

    .footer-logo-icon {
        font-size: 1.8rem;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .footer-subtitle {
        font-size: 0.9rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .community-card {
        padding: 0.8rem;
    }

    .community-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .community-info h5 {
        font-size: 0.9rem;
    }

    .community-info p {
        font-size: 0.8rem;
    }

    .footer-action-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* 내 주변 맛
집 패널 */
.nearby-restaurants-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 70vh;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nearby-restaurants-panel.show {
    transform: translateY(0);
}

.nearby-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-light);
}

.nearby-panel-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.nearby-panel-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.nearby-panel-close:hover {
    background: var(--pale-orange);
}

.nearby-restaurants-list {
    padding: 1rem;
    max-height: calc(70vh - 80px);
    overflow-y: auto;
}

.nearby-restaurant-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nearby-restaurant-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
    border-color: var(--pale-orange);
}

.nearby-restaurant-item:last-child {
    margin-bottom: 0;
}

.nearby-restaurant-image,
.nearby-restaurant-image-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.nearby-restaurant-image-placeholder {
    background: linear-gradient(135deg, var(--pale-orange), var(--light-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.nearby-restaurant-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.nearby-restaurant-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nearby-restaurant-address {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nearby-restaurant-signature {
    font-size: 0.8rem;
    color: var(--text-dark);
    background: var(--bg-cream);
    padding: 0.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-orange);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nearby-restaurant-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.nearby-restaurant-category {
    background: var(--pale-orange);
    color: var(--primary-orange);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.nearby-restaurant-distance {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
    white-space: nowrap;
}

/* 모바일에서 내 주변 맛집 패널 */
@media (max-width: 768px) {
    .nearby-restaurants-panel {
        max-height: 80vh;
    }

    .nearby-panel-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }

    .nearby-restaurants-list {
        padding: 0.75rem;
        max-height: calc(80vh - 70px);
    }

    .nearby-restaurant-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .nearby-restaurant-image,
    .nearby-restaurant-image-placeholder {
        width: 70px;
        height: 70px;
    }

    .nearby-restaurant-signature {
        padding: 0.4rem;
        font-size: 0.75rem;
    }
}

/*
 특별 추천 카드 스타일 */
.restaurant-card.special-recommendation {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #dc2626, #b91c1c) border-box;
    position: relative;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
}

.restaurant-card.special-recommendation::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.4;
    }
}

@keyframes sparkle {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* 특별 추천 배지 - ✨ 제거 */

/* 특별 추천자 배지 스타일 강화 */
.restaurant-card-recommender.special-recommender {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4) !important;
    position: relative;
    overflow: hidden;
}

.restaurant-card-recommender.special-recommender::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* 리스트 뷰에서 특별 추천 카드 */
.restaurants-grid.list-view .restaurant-card.special-recommendation {
    border: 1px solid rgba(220, 38, 38, 0.4);
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.1);
}

.restaurants-grid.list-view .restaurant-card-recommender.special-recommender {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    box-shadow: 0 1px 6px rgba(220, 38, 38, 0.4) !important;
}

/* 모바일에서 특별 추천 스타일 */
@media (max-width: 768px) {
    .restaurant-card.special-recommendation {
        border: 1px solid rgba(220, 38, 38, 0.3);
        box-shadow: 0 2px 12px rgba(220, 38, 38, 0.1);
    }

    .restaurant-card.special-recommendation::before {
        opacity: 0.2;
    }
}

/* 특별 추천 모달 스타일 */
.modal-dialog.special-recommendation-modal .modal-content {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #dc2626, #b91c1c) border-box;
    position: relative;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2);
}

.modal-dialog.special-recommendation-modal .modal-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.2;
    animation: modalGlow 3s ease-in-out infinite alternate;
}

@keyframes modalGlow {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 0.3;
    }
}

.modal-dialog.special-recommendation-modal .badge {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.modal-dialog.special-recommendation-modal .modal-header {
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.modal-dialog.special-recommendation-modal .modal-title {
    color: #dc2626;
    text-shadow: 0 1px 2px rgba(220, 38, 38, 0.1);
}