/* MoveMate Cookie Consent Banner — shared across all landing pages */
#mmCookieBanner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: 640px;
    margin: 0 auto;
    background: #0f172a;
    color: #e2e8f0;
    border: 1px solid #1e293b;
    border-radius: 0.85rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04);
    padding: 1.15rem 1.25rem;
    z-index: 9999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    display: none;
    animation: mmCookieSlideUp 0.35s ease-out;
}
#mmCookieBanner.show { display: block; }

@keyframes mmCookieSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#mmCookieBanner .mm-cc-title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}
#mmCookieBanner .mm-cc-body {
    color: #cbd5e1;
    margin-bottom: 0.85rem;
}
#mmCookieBanner .mm-cc-body a {
    color: #67e8f9;
    text-decoration: underline;
}
#mmCookieBanner .mm-cc-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
#mmCookieBanner button {
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s ease;
}
#mmCookieBanner .mm-cc-accept {
    background: linear-gradient(135deg, #1A73E8, #00C4CC);
    color: white;
}
#mmCookieBanner .mm-cc-accept:hover { filter: brightness(1.08); }
#mmCookieBanner .mm-cc-reject {
    background: transparent;
    color: #cbd5e1;
    border-color: rgba(255, 255, 255, 0.18);
}
#mmCookieBanner .mm-cc-reject:hover {
    background: rgba(255, 255, 255, 0.06);
    color: white;
}

@media (max-width: 480px) {
    #mmCookieBanner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 1rem; }
    #mmCookieBanner .mm-cc-actions { flex-direction: column; }
    #mmCookieBanner button { width: 100%; }
}
