/* 공통 스타일 - 만두 전문 사이트 */

/* CSS 변수 - 전역 정의 */
:root {
    /* 브랜드 컬러 */
    --primary-color: #FF6B35;
    --primary-hover: #E85A2A;
    --secondary-color: #F7931E;
    --success-color: #03C75A;
    --danger-color: #E63946;

    /* 텍스트 컬러 */
    --text-dark: #2C3E50;
    --text-gray: #6C757D;

    /* 배경 컬러 */
    --bg-light: #F8F9FA;
    --bg-secondary: #FFFAF7;
    --bg-tertiary: #FFF5F0;

    /* 테두리 컬러 */
    --border-color: #DEE2E6;
    --border-light: #FFE5D9;

    /* 그림자 */
    --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.1);
    --shadow-md: 0 4px 12px rgba(255, 107, 53, 0.15);
    --shadow-lg: 0 8px 24px rgba(255, 107, 53, 0.2);
}

/* 컨테이너 */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

/* 헤더 */
.header {
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFAF7 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #FFE5D9;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-top: 3px;
    letter-spacing: -0.2px;
}

.nav-menu {
    display: flex;
    gap: 6px;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    cursor: pointer;
}

.nav-menu li.active a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.25);
}

.nav-menu li a:hover {
    background: #FFF5F0;
    color: var(--primary-color);
    font-weight: 700;
    transform: translateY(-1px);
}

.nav-menu li a:active {
    transform: translateY(0);
}

.nav-menu li.active a:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #D64920 100%);
    color: white;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-box form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 8px 14px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.search-box form:focus-within {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-input {
    border: none;
    background: transparent;
    padding: 6px 10px;
    outline: none;
    width: 200px;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.search-input::placeholder {
    color: var(--text-gray);
}

.search-btn {
    color: var(--text-gray);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.auth-menu, .user-menu {
    display: flex;
    gap: 8px;
}

.auth-menu a, .user-menu a {
    padding: 11px 22px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.25);
}

.auth-menu a:hover, .user-menu a:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #D64920 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 53, 0.35);
}

.auth-menu a:active, .user-menu a:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.user-menu a:first-child {
    background: #6c757d;
}

.user-menu a:first-child:hover {
    background: #5a6268;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 사이드바 추가 콘텐츠는 모바일에서만 표시 */
.nav-sidebar-section {
    display: none;
}

/* 모바일 전용 메뉴 요소 - 데스크톱에서 숨김 */
.mobile-menu-search,
.mobile-menu-auth,
.mobile-quick-links {
    display: none;
}

/* 메인 컨텐츠 */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 20px 0;
}

/* 푸터 */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 32px 0 20px;
    margin-top: 48px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
}

.footer-section p {
    color: #999;
    line-height: 1.6;
    font-size: 0.8125rem;
}

.footer-section ul {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-section ul li a {
    color: #999;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.75rem;
}

.footer-bottom p {
    margin-bottom: 4px;
}

/* 카드 스타일 */
.card {
    background: #fff;
    border-radius: 2px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
}

.card:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border-color: #ccc;
}

/* 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 700;
    text-align: center;
    cursor: pointer !important;
    transition: all 0.2s ease;
    border: none;
    font-size: 0.875rem;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-primary:hover {
    background: #222;
    border-color: #222;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
    border: 1px solid #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
    border-color: #545b62;
}

.btn-success {
    background: #2d7a2e;
    color: #fff;
    border: 1px solid #2d7a2e;
}

.btn-success:hover {
    background: #236620;
    border-color: #1d5219;
}

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

.btn-outline:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* 폼 스타일 */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
    font-size: 0.8125rem;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    font-size: 0.8125rem;
    transition: all 0.15s ease;
    background: #fff;
}

.form-control:hover {
    border-color: #999;
}

.form-control:focus {
    outline: none;
    border-color: #000;
    background: #fff;
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}

/* 테이블 스타일 */
.table {
    width: 100%;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.table thead {
    background: #fafafa;
}

.table th, .table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.8125rem;
}

.table th {
    font-weight: 600;
    color: #333;
}

.table tbody tr:hover {
    background: #f5f5f5;
}

/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 32px;
}

.pagination a {
    padding: 7px 12px;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    color: #333;
    transition: all 0.15s ease;
    font-weight: 500;
    font-size: 0.8125rem;
    min-width: 36px;
    text-align: center;
}

.pagination a:hover {
    background: #f5f5f5;
    border-color: #000;
    color: #000;
}

.pagination a.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* 배지 */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0;
}

.badge-primary {
    background: #e0e0e0;
    color: #333;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-info {
    background: #d1ecf1;
    color: #0c5460;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

/* 알림 메시지 */
.alert {
    padding: 12px 16px;
    border-radius: 2px;
    margin-bottom: 16px;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* 반응형 */
@media (max-width: 768px) {
    /* 헤더 - 슬림화 */
    .header {
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        border-bottom: 1px solid #FFE5D9;
    }

    .header-wrapper {
        padding: 6px 0;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo h1 {
        font-size: 1rem;
    }

    /* 모바일에서 태그라인 숨김 */
    .logo-tagline {
        display: none;
    }

    /* 헤더 오른쪽 영역 */
    .header-right {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-left: auto;
    }

    /* 네비게이션 - 상단 드롭다운 */
    .nav {
        position: fixed;
        top: 44px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 12px;
        display: none;
        z-index: 999;
        border-bottom: 1px solid #e0e0e0;
        max-height: calc(100vh - 44px);
        overflow-y: auto;
    }

    .nav.active {
        display: block;
    }

    /* 모바일에서 nav-menu 숨김 (하단 네비게이션으로 대체) */
    .nav-menu {
        display: none !important;
    }

    /* nav 내부 콘텐츠 섹션 - 숨김 (간소화된 메뉴로 대체) */
    .nav-sidebar-section {
        display: none !important;
    }

    .nav-sidebar-section:last-child {
        border-bottom: none;
    }

    .nav-sidebar-section-title {
        font-size: 0.875rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-sidebar-section-title i {
        color: #666;
        font-size: 0.875rem;
    }

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

    .nav-sidebar-list li {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-sidebar-list li:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .nav-sidebar-list li a {
        display: block;
        text-decoration: none;
        color: #333;
    }

    .nav-sidebar-list .item-title {
        font-size: 0.8125rem;
        color: #333;
        line-height: 1.4;
        margin-bottom: 4px;
        display: block;
    }

    .nav-sidebar-list .item-meta {
        font-size: 0.6875rem;
        color: #999;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-sidebar-list .item-meta i {
        font-size: 0.625rem;
    }

    .nav-sidebar-stats {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .nav-sidebar-stat-item {
        background: #f8f9fa;
        padding: 12px;
        border-radius: 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-sidebar-stat-label {
        font-size: 0.75rem;
        color: #666;
    }

    .nav-sidebar-stat-value {
        font-size: 1.125rem;
        font-weight: 700;
        color: #000;
    }

    /* 광고 영역 스타일 */
    .nav-sidebar-section .ad-space {
        margin: 10px 0 0 0;
        width: 100% !important;
    }

    .nav-sidebar-section .ad-placeholder {
        padding: 40px 10px;
        min-height: 150px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        cursor: pointer;
        background: #f5f5f5;
        border-radius: 2px;
        flex-shrink: 0;
        transition: all 0.2s ease;
    }

    .mobile-menu-toggle:hover {
        background: #e0e0e0;
    }

    .mobile-menu-toggle.active {
        background: #000;
        color: #fff;
    }

    /* 모바일 메뉴 - 검색 영역 */
    .mobile-menu-search {
        display: block;
        padding: 16px;
        background: #f8f9fa;
        border-bottom: 1px solid #e0e0e0;
    }

    .mobile-menu-search form {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 8px;
        border: 2px solid #e0e0e0;
        overflow: hidden;
    }

    .mobile-search-input {
        flex: 1;
        border: none;
        padding: 14px 16px;
        font-size: 1rem;
        outline: none;
    }

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

    .mobile-search-btn {
        padding: 14px 18px;
        background: var(--primary-color);
        color: #fff;
        border: none;
        font-size: 1rem;
        cursor: pointer;
    }

    .mobile-search-btn:hover {
        background: var(--primary-hover);
    }

    /* 모바일 메뉴 - 로그인/회원가입 */
    .mobile-menu-auth {
        display: flex;
        gap: 10px;
        padding: 16px;
        background: #fff;
        border-bottom: 1px solid #e0e0e0;
    }

    .mobile-auth-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 0.9375rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .mobile-auth-login,
    .mobile-auth-mypage {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
        color: #fff;
    }

    .mobile-auth-register,
    .mobile-auth-logout {
        background: #f0f0f0;
        color: #333;
    }

    .mobile-auth-login:hover,
    .mobile-auth-mypage:hover {
        background: linear-gradient(135deg, var(--primary-hover) 0%, #D64920 100%);
    }

    .mobile-auth-register:hover,
    .mobile-auth-logout:hover {
        background: #e0e0e0;
    }

    /* 모바일 메뉴 - 빠른 링크 */
    .mobile-quick-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: 16px;
        background: #fff;
    }

    .mobile-quick-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 16px 8px;
        background: #f8f9fa;
        border-radius: 8px;
        text-decoration: none;
        color: #333;
        transition: all 0.2s ease;
    }

    .mobile-quick-link i {
        font-size: 1.25rem;
        color: var(--primary-color);
    }

    .mobile-quick-link span {
        font-size: 0.75rem;
        font-weight: 600;
    }

    .mobile-quick-link:hover {
        background: #FFF5F0;
        transform: translateY(-2px);
    }

    /* 검색박스 */
    .search-box {
        display: none;
    }

    /* 인증 메뉴 - 슬림화 */
    .auth-menu, .user-menu {
        display: flex;
        flex-direction: row;
        gap: 4px;
    }

    .auth-menu a, .user-menu a {
        padding: 5px 8px;
        min-height: 28px;
        font-size: 0.6875rem;
        white-space: nowrap;
        border-radius: 4px;
    }

    /* 버튼 */
    .btn {
        padding: 12px 20px;
        min-height: 44px;
        font-size: 0.875rem;
    }

    /* 테이블 */
    .table {
        overflow-x: auto;
        display: block;
        -webkit-overflow-scrolling: touch;
    }

    .table thead,
    .table tbody,
    .table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .table th,
    .table td {
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    /* 폼 */
    .form-control {
        font-size: 0.875rem;
        padding: 10px 12px;
        min-height: 44px;
    }

    textarea.form-control {
        min-height: 100px;
    }

    /* 페이지네이션 */
    .pagination {
        gap: 6px;
        margin-top: 24px;
        flex-wrap: wrap;
    }

    .pagination a {
        padding: 10px 14px;
        min-width: 44px;
        min-height: 44px;
        font-size: 0.875rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 푸터 */
    .footer {
        padding: 24px 0 16px;
        margin-top: 32px;
    }

    .footer-content {
        gap: 32px;
        margin-bottom: 16px;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 0.875rem;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 0.75rem;
    }

    .footer-section ul {
        gap: 10px;
    }

    .footer-section ul li a {
        font-size: 0.75rem;
    }

    /* 컨테이너 */
    .container {
        padding: 0 14px;
    }

    /* 메인 컨텐츠 */
    .main-content {
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    /* 헤더 */
    .header-wrapper {
        padding: 8px 0;
        gap: 6px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    /* 네비게이션 - 480px */
    .nav {
        padding: 12px;
        top: 49px;
    }

    .nav-menu li a {
        padding: 14px 16px;
        font-size: 0.8125rem;
        min-height: 48px;
    }

    .nav-sidebar-section {
        padding: 12px;
        margin-top: 6px;
    }

    .nav-sidebar-section-title {
        font-size: 0.75rem;
    }

    .nav-sidebar-list .item-title {
        font-size: 0.6875rem;
    }

    .nav-sidebar-stats {
        gap: 8px;
    }

    .nav-sidebar-stat-item {
        padding: 10px;
    }

    .nav-sidebar-stat-label {
        font-size: 0.6875rem;
    }

    .nav-sidebar-stat-value {
        font-size: 1rem;
    }

    /* 모바일 토글 */
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .mobile-menu-toggle:hover {
        background: #e0e0e0;
    }

    .mobile-menu-toggle.active {
        background: #000;
        color: #fff;
    }

    /* 인증 메뉴 - 480px에서 더 슬림하게 */
    .auth-menu, .user-menu {
        display: flex;
        flex-direction: row;
        gap: 3px;
    }

    .auth-menu a, .user-menu a {
        font-size: 0.625rem;
        padding: 4px 6px;
        min-height: 24px;
    }

    /* 버튼 */
    .btn {
        padding: 10px 16px;
        min-height: 40px;
        font-size: 0.8125rem;
    }

    /* 폼 */
    .form-control {
        font-size: 0.8125rem;
        padding: 10px;
        min-height: 40px;
    }

    .form-label {
        font-size: 0.75rem;
    }

    /* 페이지네이션 */
    .pagination a {
        padding: 8px 12px;
        min-width: 40px;
        min-height: 40px;
        font-size: 0.8125rem;
    }

    /* 푸터 */
    .footer {
        padding: 24px 0 16px;
        margin-top: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .footer-section {
        width: 100%;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 0.875rem;
        margin-bottom: 10px;
        color: #fff;
    }

    .footer-section p {
        font-size: 0.75rem;
        color: #999;
        line-height: 1.5;
    }

    .footer-section ul {
        flex-direction: column;
        gap: 8px;
    }

    .footer-section ul li a {
        font-size: 0.75rem;
        display: block;
        padding: 4px 0;
    }

    .footer-bottom {
        padding-top: 16px;
        font-size: 0.6875rem;
        line-height: 1.6;
    }

    .footer-bottom p {
        margin-bottom: 8px;
    }

    .footer-bottom p:last-child {
        margin-bottom: 0;
    }

    /* 컨테이너 */
    .container {
        padding: 0 12px;
    }

    /* 메인 컨텐츠 */
    .main-content {
        padding: 12px 0;
        min-height: calc(100vh - 180px);
    }

    /* 카드 */
    .card {
        padding: 12px;
    }

    /* 배지/알림 */
    .badge {
        padding: 3px 8px;
        font-size: 0.6875rem;
    }

    .alert {
        padding: 10px 12px;
        font-size: 0.75rem;
        gap: 6px;
    }
}

/* ==================== 모바일 하단 고정 네비게이션 ==================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-bottom-nav .mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px 8px;
    color: #666;
    text-decoration: none;
    font-size: 0.625rem;
    font-weight: 600;
    transition: all 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-bottom-nav .mobile-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.mobile-bottom-nav .mobile-nav-item span {
    letter-spacing: -0.3px;
}

.mobile-bottom-nav .mobile-nav-item.active {
    color: var(--primary-color);
}

.mobile-bottom-nav .mobile-nav-item.active i {
    transform: scale(1.1);
}

.mobile-bottom-nav .mobile-nav-item:active {
    background: #f5f5f5;
}

/* 모바일에서만 하단 네비게이션 표시 */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    /* 하단 네비게이션 공간 확보 */
    body {
        padding-bottom: 60px;
    }

    .footer {
        margin-bottom: 60px;
    }

    /* 헤더의 햄버거 버튼 숨김 (하단 더보기로 대체) */
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* 더 작은 화면 */
@media (max-width: 480px) {
    .mobile-bottom-nav .mobile-nav-item {
        padding: 8px 2px 6px;
        font-size: 0.5625rem;
    }

    .mobile-bottom-nav .mobile-nav-item i {
        font-size: 1.125rem;
    }
}
