/* bundle Poppins so the nav renders the SAME font on every page (loads wherever this file loads) */
@font-face{font-family:'poppins-r';src:local('poppins-r'),url('../fonts/Poppins-Regular.ttf');font-display:swap}
@font-face{font-family:'poppins-m';src:local('poppins-m'),url('../fonts/Poppins-Medium.ttf');font-display:swap}
@font-face{font-family:'poppins-sb';src:local('poppins-sb'),url('../fonts/Poppins-SemiBold.ttf');font-display:swap}
:root {
    --lmh-primary: #2C6FB7;
    --lmh-primary-light: #4A90E2;
    --lmh-primary-dark: #1A4D8C;
    --lmh-accent: #20B2AA;
    --lmh-accent-light: #38D3C9;

    --lmh-bg-white: #FFFFFF;
    --lmh-bg-light: #F8FAFC;
    --lmh-bg-card: #FFFFFF;

    --lmh-text-dark: #1E293B;
    --lmh-text: #475569;
    --lmh-text-light: #64748B;

    --lmh-border: #E2E8F0;

    --lmh-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --lmh-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --lmh-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);

    --lmh-gradient-blue: linear-gradient(135deg, var(--lmh-primary), var(--lmh-primary-light));

    --lmh-radius: 16px;
    --lmh-transition: all 0.3s ease;
    --lmh-focus-ring: 0 0 0 4px rgba(74, 144, 226, 0.25);
}
#mobile-actions {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--lmh-bg-white);
    border-bottom: 1px solid var(--lmh-border);
    padding: 20px 0;
    box-shadow: var(--lmh-shadow-sm);
    z-index: 9;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--lmh-primary);
    text-decoration: none;
}
.logo img {
    max-width: 240px;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--lmh-gradient-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
}

.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-links a {
    color: var(--lmh-text);
    text-decoration: none;
    font-weight: 800;
    transition: var(--lmh-transition);
    padding: 8px 0;
    font-size: 0.98rem;
    white-space: nowrap;
}

.nav-links a:hover { color: var(--lmh-primary); }

.nav-links .btn-primary {
    padding: 12px 22px;
    font-size: 0.95rem;
    margin-left: 6px;
    color: #fff !important;
    font-weight: 650;
}

.mobile-actions { display: none; align-items: center; gap: 10px; }

.btn-cta-compact {
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #2C6FB7;
    background: var(--lmh-gradient-blue);
    color: #fff;
    box-shadow: var(--lmh-shadow-sm);
    max-width: 100%;
    white-space: normal;
}

.hamburger {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--lmh-border);
    background: var(--lmh-bg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--lmh-transition);
    box-shadow: var(--lmh-shadow-sm);
}

.hamburger:hover { transform: translateY(-1px); box-shadow: var(--lmh-shadow); }

.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: var(--lmh-transition);
}

.mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100vh;
    background: var(--lmh-bg-white);
    z-index: 1300;
    transform: translateX(100%);
    transition: var(--lmh-transition);
    box-shadow: var(--lmh-shadow-lg);
    border-left: 1px solid var(--lmh-border);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--lmh-border);
}

.drawer-title { font-weight: 900; color: var(--lmh-text-dark); }

.drawer-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--lmh-border);
    background: var(--lmh-bg-white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--lmh-shadow-sm);
}

.drawer-close:hover { box-shadow: var(--lmh-shadow); transform: translateY(-1px); }

.drawer-body { padding: 18px; overflow: auto; }

.drawer-links { display: grid; gap: 12px; }

.drawer-links a {
    padding: 14px;
    border: 1px solid var(--lmh-border);
    border-radius: 14px;
    text-decoration: none;
    color: var(--lmh-text-dark);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--lmh-transition);
}

.drawer-links a:hover {
    border-color: var(--lmh-primary-light);
    box-shadow: var(--lmh-shadow-sm);
    transform: translateY(-1px);
}

.drawer-cta { margin-top: 18px; display: grid; gap: 10px; }
.drawer-cta .btn { width: 100%; }


footer {
    background: var(--lmh-bg-white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--lmh-border);
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--lmh-text-dark);
    font-weight: 900;
}

.footer-links ul { list-style: none; padding-left: 0px}
.footer-links li { margin-bottom: 16px; }
.footer-links a { color: var(--lmh-text); text-decoration: none; transition: var(--lmh-transition); font-weight: 700; }
.footer-links a:hover { color: var(--lmh-primary); }

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--lmh-border);
    color: var(--lmh-text-light);
    font-size: 0.875rem;
    font-weight: 700;
}


.store-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--lmh-border);
    background: var(--lmh-bg-white);
    color: var(--lmh-text-dark);
    text-decoration: none;
    font-weight: 900;
    box-shadow: var(--lmh-shadow-sm);
    transition: var(--lmh-transition);
    white-space: nowrap;
}
.store-badge:hover {
    transform: translateY(-1px);
    box-shadow: var(--lmh-shadow);
    border-color: var(--lmh-primary-light);
}
.store-badge i { color: var(--lmh-primary); }

/* desktop vs mobile visibility (no h1/h2/.container globals) */
@media (min-width:901px){ .mobile-actions{display:none} .mobile-drawer, .mobile-drawer-backdrop{display:none} }
@media (max-width:900px){ #mobile-actions .nav-links{display:none} .mobile-actions{display:inline-flex} }
@media (max-width:768px){ .footer-grid{grid-template-columns:1fr;gap:40px} .footer-links ul{display:grid;grid-template-columns:1fr 1fr;gap:12px 20px} }

/* FORCED NAV FONT — one consistent brand font for the header nav across ALL pages */
#mobile-actions .nav-links a{font-family:'poppins-m','Poppins','Segoe UI',system-ui,sans-serif !important}
#mobile-actions .nav-links a.btn{font-family:'poppins-sb','poppins-m','Poppins','Segoe UI',system-ui,sans-serif !important}
.drawer-links a, .drawer-title, .drawer-cta .btn{font-family:'poppins-m','Poppins','Segoe UI',system-ui,sans-serif !important}
