/**
 * MNM Common Styles
 * 기본 레이아웃, 헤더, 푸터, 애니메이션, 컴포넌트 스타일
 */

/* ==================== BASE ==================== */
[x-cloak] { display: none !important; }
* { box-sizing: border-box; }

/* ==================== GATEWALL (비회원 블라인드) ==================== */
body.mnm-gated .mnm-blur-target {
    filter: blur(8px);
    -webkit-filter: blur(8px);
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    transition: filter 0.5s ease;
}
body.mnm-gated .mnm-blur-target::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.3);
    pointer-events: auto;
    cursor: pointer;
    z-index: 5;
}
body:not(.mnm-gated) .mnm-blur-target {
    filter: none;
    pointer-events: auto;
    transition: filter 0.5s ease;
}

/* Gatewall Modal Overlay */
.gw-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}
.gw-overlay.open { opacity: 1; }
.gw-modal {
    background: white;
    border-radius: 24px;
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    transform: translateY(20px);
    transition: transform 0.3s;
    position: relative;
}
.gw-overlay.open .gw-modal { transform: translateY(0); }
.gw-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.06);
    font-size: 18px;
    cursor: pointer;
    color: #999;
    z-index: 2;
    transition: background 0.2s;
}
.gw-close:hover { background: rgba(0,0,0,0.12); }
.gw-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 32px 28px 24px;
    text-align: center;
    color: white;
}
.gw-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}
.gw-subtitle {
    font-size: 13px;
    opacity: 0.85;
    line-height: 1.5;
}
.gw-body {
    padding: 24px 28px 28px;
}

/* 1-Click Banner */
.gw-oneclick-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 18px;
    animation: gw-pulse 2s ease-in-out infinite;
}
@keyframes gw-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0.3); }
    50% { box-shadow: 0 0 0 6px rgba(251,191,36,0); }
}
.gw-oneclick-icon {
    font-size: 24px;
    flex-shrink: 0;
}
.gw-oneclick-text {
    font-size: 14px;
    color: #92400e;
    line-height: 1.4;
}
.gw-oneclick-text strong {
    color: #d97706;
    font-weight: 800;
    font-size: 15px;
}

/* SNS Buttons */
.gw-sns-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 10px;
    border: 2px solid;
}
.gw-google {
    background: white;
    border-color: #e0e0e0;
    color: #333;
}
.gw-google:hover { border-color: #4285F4; background: #f8f9ff; }
.gw-apple {
    background: #000;
    border-color: #000;
    color: white;
}
.gw-apple:hover { background: #222; }
.gw-kakao {
    background: #FEE500;
    border-color: #FEE500;
    color: #3C1E1E;
}
.gw-kakao:hover { background: #fdd835; border-color: #fdd835; }

.gw-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    font-size: 12px;
    color: #bbb;
}
.gw-divider::before, .gw-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

.gw-email-row {
    display: flex;
    gap: 8px;
}
.gw-email-input {
    flex: 1;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    min-width: 0;
}
.gw-email-input:focus { border-color: #667eea; }
.gw-email-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.gw-email-btn:hover { opacity: 0.9; }

.gw-bonus {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #4CAF50;
    margin-top: 14px;
}
.gw-terms {
    text-align: center;
    font-size: 10px;
    color: #ccc;
    margin-top: 8px;
}
.gw-login-link {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

/* Success Animation */
.gw-success {
    text-align: center;
    padding: 48px 28px;
}
.gw-success-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: pop 0.4s ease-out;
}

/* ==================== BRAND COLORS (CSS Variables) ==================== */
:root {
    --mnm-primary: #667eea;
    --mnm-primary-dark: #5a6fd6;
    --mnm-secondary: #764ba2;
    --mnm-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --mnm-success: #4CAF50;
    --mnm-danger: #f44336;
    --mnm-warning: #FFC107;
    --mnm-star: #FFB800;
}

/* ==================== UNIFIED HEADER ==================== */
.mnm-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.mnm-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 12px;
}
.mnm-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.mnm-logo-img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}
.mnm-logo-text {
    font-size: 17px;
    font-weight: 800;
    color: #333;
}
.mnm-logo-m { font-size: 21px; font-weight: 900; color: #D32F2F; }
.mnm-logo-n { font-size: 21px; font-weight: 900; color: #F9A825; }
.mnm-logo-m2 { font-size: 21px; font-weight: 900; color: #2E7D32; }

.mnm-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.mnm-nav-link {
    font-size: 13px;
    color: #555;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.2s;
}
.mnm-nav-link:hover {
    color: var(--mnm-primary);
    background: #f0f1ff;
}
.mnm-nav-link.mnm-nav-active {
    color: var(--mnm-primary);
    background: #f0f1ff;
}

.mnm-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.mnm-nav-btn {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 10px;
    transition: all 0.2s;
    white-space: nowrap;
}
.mnm-nav-btn-outline {
    color: var(--mnm-primary);
    border: 1.5px solid var(--mnm-primary);
    background: transparent;
}
.mnm-nav-btn-outline:hover {
    background: #f0f1ff;
}
.mnm-nav-btn-primary {
    color: white;
    background: var(--mnm-gradient);
    border: none;
}
.mnm-nav-btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}
.mnm-nav-btn.mnm-nav-active {
    box-shadow: 0 0 0 2px rgba(102,126,234,0.3);
}

/* ==================== LOGOUT BUTTON ==================== */
.mnm-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: none;
    background: none;
    color: #bbb;
    cursor: pointer;
    transition: all 0.2s;
}
.mnm-logout-btn:hover {
    background: #fff0f0;
    color: #f44336;
}

/* ==================== LOGIN BUTTONS (User / Business) ==================== */
.mnm-nav-btn-user {
    color: var(--mnm-primary);
    border: 1.5px solid var(--mnm-primary);
    background: transparent;
    font-size: 12px;
}
.mnm-nav-btn-user:hover {
    background: #f0f1ff;
}
.mnm-nav-btn-biz {
    color: #fff;
    background: #1a1a2e;
    border: 1.5px solid #1a1a2e;
    font-size: 12px;
}
.mnm-nav-btn-biz:hover {
    background: #2d2d4a;
    border-color: #2d2d4a;
}

/* ==================== LANGUAGE SWITCHER (Dropdown) ==================== */
.mnm-lang-dropdown {
    position: relative;
    margin-left: 6px;
    padding-left: 10px;
    border-left: 1.5px solid #e0e0e0;
}
.mnm-lang-current {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    padding: 5px 8px;
    transition: all 0.2s;
}
.mnm-lang-current:hover {
    border-color: var(--mnm-primary);
    background: #f5f6ff;
}
.mnm-lang-current::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #888;
    margin-left: 4px;
}
.mnm-lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid #eee;
    z-index: 300;
    min-width: 140px;
    overflow: hidden;
    animation: fadeIn 0.15s ease-out;
}
.mnm-lang-menu.open {
    display: block;
}
.mnm-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    transition: background 0.15s;
    text-align: left;
}
.mnm-lang-option:hover {
    background: #f0f1ff;
    color: var(--mnm-primary);
}
.mnm-lang-option + .mnm-lang-option {
    border-top: 1px solid #f0f0f0;
}
.mnm-lang-flag {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mnm-lang-flag svg { width: 100%; height: 100%; }
@media (max-width: 768px) {
    .mnm-lang-dropdown { border-left: none; padding-left: 0; }
    .mnm-lang-flag { width: 24px; height: 17px; }
}

/* ==================== NOTIFICATION BELL & PANEL ==================== */
.mnm-notif-wrap {
    position: relative;
}
.mnm-notif-bell {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #555;
    transition: color 0.2s;
}
.mnm-notif-bell:hover { color: var(--mnm-primary); }
.mnm-notif-badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 16px;
    height: 16px;
    background: #f44336;
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.mnm-notif-panel {
    display: none;
    position: absolute;
    top: 44px;
    right: 0;
    width: 380px;
    max-height: 480px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    border: 1px solid #eee;
    z-index: 200;
    overflow: hidden;
}
.mnm-notif-panel.open { display: block; animation: fadeIn 0.2s ease-out; }
.mnm-notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}
.mnm-notif-list {
    max-height: 400px;
    overflow-y: auto;
}
.mnm-notif-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f8f8f8;
    cursor: pointer;
    transition: background 0.15s;
}
.mnm-notif-item:hover { background: #fafbff; }
.mnm-notif-item.mnm-notif-unread {
    background: #f0f4ff;
    border-left: 3px solid var(--mnm-primary);
}
.mnm-notif-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
    padding-top: 2px;
}
.mnm-notif-content { flex: 1; min-width: 0; }
.mnm-notif-title {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}
.mnm-notif-msg {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.mnm-notif-meta {
    font-size: 11px;
    color: #aaa;
    margin-top: 4px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.mnm-notif-channels {
    font-size: 10px;
    font-weight: 600;
    color: var(--mnm-primary);
    background: #f0f1ff;
    padding: 1px 6px;
    border-radius: 4px;
}
@media (max-width: 420px) {
    .mnm-notif-panel {
        width: calc(100vw - 20px);
        right: -40px;
    }
}

/* Mobile Toggle */
.mnm-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.mnm-mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #555;
    border-radius: 2px;
    transition: all 0.3s;
}
.mnm-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.mnm-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mnm-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* Mobile Menu */
.mnm-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 8px 16px 16px;
    border-top: 1px solid #f0f0f0;
    background: white;
}
.mnm-mobile-menu.open { display: flex; }
.mnm-mobile-link {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s;
}
.mnm-mobile-link:hover, .mnm-mobile-link.mnm-nav-active {
    background: #f0f1ff;
    color: var(--mnm-primary);
}
.mnm-mobile-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 6px 0;
}

@media (max-width: 768px) {
    .mnm-nav-links { display: none; }
    .mnm-nav-actions .mnm-nav-btn-user { display: none; }
    .mnm-nav-actions .mnm-nav-btn-biz { display: none; }
    .mnm-nav-actions .mnm-nav-btn-outline { display: none; }
    .mnm-nav-actions .mnm-nav-btn-primary { display: inline-block !important; font-size: 11px; padding: 6px 12px; }
    .mnm-mobile-toggle { display: flex; }
}

/* ==================== UNIFIED FOOTER ==================== */
.mnm-footer {
    background: #0f172a;
    color: white;
    padding: 0;
    margin-top: 40px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.mnm-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 20px;
}
.mnm-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 36px;
}
.mnm-footer-brand {
    display: flex;
    flex-direction: column;
}
.mnm-footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 16px;
}
.mnm-footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}
.mnm-footer-social a {
    transition: transform 0.2s;
}
.mnm-footer-social a:hover {
    transform: scale(1.15);
}
.mnm-footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mnm-footer-col a, .mnm-footer-col span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.mnm-footer-col a:hover {
    color: rgba(255,255,255,0.85);
}
.mnm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.mnm-footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}
.mnm-footer-badges {
    display: flex;
    gap: 16px;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
    .mnm-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .mnm-footer-grid {
        grid-template-columns: 1fr;
    }
    .mnm-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== CALENDAR BLINK (New Booking) ==================== */
.mnm-blink {
    animation: mnmBlink 1.2s ease-in-out infinite;
}
@keyframes mnmBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.mnm-blink-bg {
    animation: mnmBlinkBg 1.5s ease-in-out infinite;
}
@keyframes mnmBlinkBg {
    0%, 100% { background: white; }
    50% { background: #fff7ed; }
}

/* ==================== SR (Special Request) Buttons ==================== */
.sr-btn {
    padding: 7px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}
.sr-btn:hover { border-color: #b0b0b0; }
.sr-btn.sr-on {
    border-color: #667eea;
    background: #f0f1ff;
    color: #667eea;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pop {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
@keyframes womenPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,20,147,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(255,20,147,0); }
}

.fade-in { animation: fadeIn 0.25s ease-out; }

/* ==================== SPINNER ==================== */
.spinner {
    display: inline-block;
    width: 40px; height: 40px;
    border: 4px solid #e0e0e0;
    border-top-color: var(--mnm-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.spinner-sm {
    width: 18px; height: 18px;
    border-width: 3px;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar { width: 6px; height: 4px; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* ==================== HORIZONTAL SCROLL ==================== */
.hscroll-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* ==================== GRADIENT TEXT ==================== */
.gradient-text {
    background: var(--mnm-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==================== TOAST (Tailwind fallback) ==================== */
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ==================== PRINT ==================== */
@media print {
    header, footer, .no-print, .mnm-header, .mnm-footer { display: none !important; }
    body { background: white !important; }
}

/* ==================== PROSE (Blog Content) ==================== */
.prose h1 { font-size: 1.75rem; font-weight: 800; margin: 1.5rem 0 0.75rem; color: #1a1a1a; }
.prose h2 { font-size: 1.375rem; font-weight: 700; margin: 1.25rem 0 0.625rem; color: #222; border-bottom: 2px solid #f0f0f0; padding-bottom: 0.375rem; }
.prose h3 { font-size: 1.125rem; font-weight: 600; margin: 1rem 0 0.5rem; color: #333; }
.prose p { margin: 0.625rem 0; line-height: 1.8; color: #444; }
.prose ul, .prose ol { margin: 0.625rem 0; padding-left: 1.5rem; }
.prose li { margin: 0.375rem 0; line-height: 1.7; color: #444; }
.prose blockquote {
    border-left: 4px solid var(--mnm-primary);
    background: #f8f9ff;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
    color: #555;
    font-style: italic;
}
.prose img { max-width: 100%; border-radius: 0.75rem; margin: 1rem 0; }
.prose a { color: var(--mnm-primary); text-decoration: underline; }
.prose a:hover { color: var(--mnm-primary-dark); }
.prose code {
    background: #f3f4f6;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}
.prose table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.prose th, .prose td { border: 1px solid #e5e7eb; padding: 0.5rem 0.75rem; text-align: left; }
.prose th { background: #f9fafb; font-weight: 600; }

/* ==================== VALUE SECTIONS (Homepage) ==================== */
.mnm-value-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.mnm-value-section h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a2e;
}
.mnm-value-section .subtitle {
    text-align: center;
    color: #888;
    font-size: 15px;
    margin-bottom: 40px;
}
.mnm-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.mnm-value-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}
.mnm-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.mnm-value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.mnm-value-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.mnm-value-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
}
