#mf-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 3px solid #007bff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.10);
    z-index: 99999;
    padding: 16px 28px;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

#mf-cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

#mf-cookie-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}

#mf-cookie-text {
    flex: 1;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.55;
}

#mf-cookie-text strong {
    display: block;
    font-size: 0.95rem;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 2px;
}

#mf-cookie-text a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

#mf-cookie-text a:hover {
    text-decoration: underline;
}

#mf-cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

#mf-cookie-decline {
    background: transparent;
    border: 1.5px solid #ccc;
    color: #666;
    padding: 9px 18px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

#mf-cookie-decline:hover {
    border-color: #888;
    color: #333;
}

#mf-cookie-accept {
    background: #007bff;
    border: none;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

#mf-cookie-accept:hover {
    background: #0056b3;
}

/* Tablet */
@media (max-width: 768px) {
    #mf-cookie-banner {
        bottom: 62px; /* clear the mobile bottom nav bar */
        padding: 14px 16px;
    }

    #mf-cookie-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    #mf-cookie-icon {
        display: none;
    }

    #mf-cookie-text {
        width: 100%;
    }

    #mf-cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    #mf-cookie-decline,
    #mf-cookie-accept {
        flex: 1;
        text-align: center;
        padding: 10px 10px;
    }
}
